]> Repos - mime-chat/commitdiff
init commit for Forge branch forge
authorAndrew Gundersen <gundersena@crimata.com>
Tue, 17 May 2022 21:03:40 +0000 (16:03 -0500)
committerAndrew Gundersen <gundersena@crimata.com>
Tue, 17 May 2022 21:03:40 +0000 (16:03 -0500)
63 files changed:
.gitignore [new file with mode: 0644]
.npmrc [new file with mode: 0644]
entitlements.plist [new file with mode: 0644]
icon.png [new file with mode: 0644]
main.js [new file with mode: 0644]
package-lock.json [new file with mode: 0644]
package.json [new file with mode: 0644]
src/account.js [new file with mode: 0644]
src/api.js [new file with mode: 0644]
src/assets/icon.icns [new file with mode: 0644]
src/assets/tray/000.png [new file with mode: 0644]
src/assets/tray/000@2x.png [new file with mode: 0644]
src/assets/tray/001.png [new file with mode: 0644]
src/assets/tray/001@2x.png [new file with mode: 0644]
src/assets/tray/010.png [new file with mode: 0644]
src/assets/tray/010@2x.png [new file with mode: 0644]
src/assets/tray/011.png [new file with mode: 0644]
src/assets/tray/011@2x.png [new file with mode: 0644]
src/assets/tray/100.png [new file with mode: 0644]
src/assets/tray/100@2x.png [new file with mode: 0644]
src/assets/tray/101.png [new file with mode: 0644]
src/assets/tray/101@2x.png [new file with mode: 0644]
src/assets/tray/110.png [new file with mode: 0644]
src/assets/tray/110@2x.png [new file with mode: 0644]
src/assets/tray/111.png [new file with mode: 0644]
src/assets/tray/111@2x.png [new file with mode: 0644]
src/audio.js [new file with mode: 0644]
src/codec.js [new file with mode: 0644]
src/config.js [new file with mode: 0644]
src/io.js [new file with mode: 0644]
src/main.js [new file with mode: 0644]
src/render/assets/connectLogo.svg [new file with mode: 0644]
src/render/assets/fonts/SF-Compact-Display-Bold.otf [new file with mode: 0755]
src/render/assets/fonts/SF-Compact-Rounded-Bold.otf [new file with mode: 0755]
src/render/assets/fonts/SF-Pro-Text-Regular.otf [new file with mode: 0755]
src/render/assets/settingsIcon.svg [new file with mode: 0644]
src/render/components/app.js [new file with mode: 0644]
src/render/components/bubble.js [new file with mode: 0644]
src/render/components/context.js [new file with mode: 0644]
src/render/components/control/draggify.js [new file with mode: 0644]
src/render/components/control/drop.js [new file with mode: 0644]
src/render/components/control/scroll.js [new file with mode: 0644]
src/render/components/control/text.js [new file with mode: 0644]
src/render/components/control/valid.js [new file with mode: 0644]
src/render/components/form.js [new file with mode: 0644]
src/render/components/header.js [new file with mode: 0644]
src/render/components/input.js [new file with mode: 0644]
src/render/components/login.js [new file with mode: 0644]
src/render/components/message.js [new file with mode: 0644]
src/render/components/messenger.js [new file with mode: 0644]
src/render/components/settings.js [new file with mode: 0644]
src/render/components/splash.js [new file with mode: 0644]
src/render/components/ws.js [new file with mode: 0644]
src/render/index.html [new file with mode: 0644]
src/render/index.js [new file with mode: 0644]
src/render/main.css [new file with mode: 0644]
src/render/preload.js [new file with mode: 0644]
src/render/vendor/vue.js [new file with mode: 0644]
src/session.js [new file with mode: 0644]
src/tray.js [new file with mode: 0644]
src/utils/emitter.js [new file with mode: 0644]
src/utils/store.js [new file with mode: 0644]
src/window.js [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..92f732b
--- /dev/null
@@ -0,0 +1,3 @@
+.DS_Store
+/node_modules
+/out
\ No newline at end of file
diff --git a/.npmrc b/.npmrc
new file mode 100644 (file)
index 0000000..932d41b
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1,2 @@
+@crimata:registry=https://gitlab.com/api/v4/projects/28849281/packages/npm/
+//gitlab.com/api/v4/projects/28849281/packages/npm
\ No newline at end of file
diff --git a/entitlements.plist b/entitlements.plist
new file mode 100644 (file)
index 0000000..0555172
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+  <dict>
+    <key>com.apple.security.cs.allow-jit</key>
+    <true/>
+    <key>com.apple.security.cs.debugger</key>
+    <true/>
+    <key>com.apple.security.device.audio-input</key>
+    <true/>
+  </dict>
+</plist>
+<!--<key>com.apple.security.cs.disable-library-validation</key>
+    <true/>-->
diff --git a/icon.png b/icon.png
new file mode 100644 (file)
index 0000000..2897b98
Binary files /dev/null and b/icon.png differ
diff --git a/main.js b/main.js
new file mode 100644 (file)
index 0000000..7a2bb74
--- /dev/null
+++ b/main.js
@@ -0,0 +1 @@
+console.log("Hello");
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644 (file)
index 0000000..bedb84b
--- /dev/null
@@ -0,0 +1,12662 @@
+{
+  "name": "crimata",
+  "version": "1.0.0",
+  "lockfileVersion": 2,
+  "requires": true,
+  "packages": {
+    "": {
+      "name": "crimata",
+      "version": "1.0.0",
+      "license": "ISC",
+      "dependencies": {
+        "electron-squirrel-startup": "^1.0.0"
+      },
+      "devDependencies": {
+        "@electron-forge/cli": "^6.0.0-beta.63",
+        "@electron-forge/maker-deb": "^6.0.0-beta.63",
+        "@electron-forge/maker-rpm": "^6.0.0-beta.63",
+        "@electron-forge/maker-squirrel": "^6.0.0-beta.63",
+        "@electron-forge/maker-zip": "^6.0.0-beta.63",
+        "electron": "^18.2.3"
+      }
+    },
+    "node_modules/@electron-forge/async-ora": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.63.tgz",
+      "integrity": "sha512-e1BbeUV20yWZWeRJ3LDLcloPPgHwTXV1wAJXpAdDbmTmcRyAGx9iVx2Qyh6t878c7zX36XXlqfCIOvODsgiuOQ==",
+      "dev": true,
+      "dependencies": {
+        "chalk": "^4.0.0",
+        "debug": "^4.3.1",
+        "log-symbols": "^4.0.0",
+        "ora": "^5.0.0",
+        "pretty-ms": "^7.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/cli": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.63.tgz",
+      "integrity": "sha512-I2B/hX16IDbuc2ip6JjAxrTF8XSQfuoIkb/EoqzEluPrdCx6VTzEahOQlUH+CvPohpwD/LDsH4Usd9/krKlkfg==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-.electron-forge-cli?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/core": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron/get": "^1.9.0",
+        "chalk": "^4.0.0",
+        "commander": "^4.1.1",
+        "debug": "^4.3.1",
+        "fs-extra": "^10.0.0",
+        "inquirer": "^8.0.0",
+        "semver": "^7.2.1"
+      },
+      "bin": {
+        "electron-forge": "dist/electron-forge.js",
+        "electron-forge-vscode-nix": "script/vscode.sh",
+        "electron-forge-vscode-win": "script/vscode.cmd"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/cli/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/cli/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/cli/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/@electron-forge/cli/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/core": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.63.tgz",
+      "integrity": "sha512-NuiWRXUfpv6/PwP8AgPxcmRPiWvQMfllTHz163wmBWz8UBclzhu7Brpu6dwmszAJG68erW15ym+cUlpvGDEltg==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-.electron-forge-core?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/installer-base": "6.0.0-beta.63",
+        "@electron-forge/installer-deb": "6.0.0-beta.63",
+        "@electron-forge/installer-dmg": "6.0.0-beta.63",
+        "@electron-forge/installer-exe": "6.0.0-beta.63",
+        "@electron-forge/installer-rpm": "6.0.0-beta.63",
+        "@electron-forge/installer-zip": "6.0.0-beta.63",
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/plugin-base": "6.0.0-beta.63",
+        "@electron-forge/publisher-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron-forge/template-base": "6.0.0-beta.63",
+        "@electron-forge/template-typescript": "6.0.0-beta.63",
+        "@electron-forge/template-typescript-webpack": "6.0.0-beta.63",
+        "@electron-forge/template-webpack": "6.0.0-beta.63",
+        "@electron/get": "^1.9.0",
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "chalk": "^4.0.0",
+        "debug": "^4.3.1",
+        "electron-packager": "^15.4.0",
+        "electron-rebuild": "^3.2.6",
+        "fast-glob": "^3.2.7",
+        "find-up": "^5.0.0",
+        "fs-extra": "^10.0.0",
+        "lodash": "^4.17.20",
+        "log-symbols": "^4.0.0",
+        "node-fetch": "^2.6.0",
+        "nugget": "^2.0.1",
+        "resolve-package": "^1.0.1",
+        "semver": "^7.2.1",
+        "source-map-support": "^0.5.13",
+        "sudo-prompt": "^9.1.1",
+        "username": "^5.1.0",
+        "yarn-or-npm": "^3.0.1"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/core/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/core/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/core/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/@electron-forge/core/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-y4SKJZaxE8lnfwicWuAiUZBpBY6UB/mE/dA+w6uigKEffZzRPbrbBUIuknII6wEaFnnScmCrQaBRjxy+zsEihQ==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-darwin": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.63.tgz",
+      "integrity": "sha512-LQE6UKPP7tJ+Ki3tPzYUIBRAAzEpalqkz8zYUh+2pS/nk9w2BgQeOJ84NzWUfoeLWZnsWtjp8kox8xTS8/BsSQ==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/installer-base": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0",
+        "sudo-prompt": "^9.1.1"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-darwin/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/installer-darwin/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/installer-darwin/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-deb": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.63.tgz",
+      "integrity": "sha512-gvjCXdGXBxC/O8QuwNHKsLIlfOwVc9y/e5pURcuFRvPf7Ibw7e53w3pfR2pquWHNzAccrw8P5WBEuPSeDPBlLw==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/installer-linux": "6.0.0-beta.63"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-dmg": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.63.tgz",
+      "integrity": "sha512-o+Zd2CmpoMQOk9SfuUPIoQ4GONVNHdlmI4mMIJ22OrLQnZJYAdsQUFO87jtxmJuippTpEbnqaKc9yl6mLh89TQ==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/installer-darwin": "6.0.0-beta.63",
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "debug": "^4.3.1",
+        "fs-extra": "^10.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-dmg/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/installer-dmg/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/installer-dmg/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-exe": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.63.tgz",
+      "integrity": "sha512-HhogUMTTgOXTEMQE+A20USamuAcnClSSWzlInzVQ2cGT5AdZio6zqNJ/et7zPx7Jz71gmJ/cfhNstzc/ew1IAA==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/installer-base": "6.0.0-beta.63",
+        "open": "^8.1.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-linux": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.63.tgz",
+      "integrity": "sha512-yC2wYQ3uXGnvWEG4AdjSmas5qaXXtXIoxO6/cXJrywMT9ujWlp2GB1i+I5xrFCusgbjdvdzJ3JhLRmIAKpW6ZA==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/installer-base": "6.0.0-beta.63",
+        "sudo-prompt": "^9.1.1"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-rpm": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.63.tgz",
+      "integrity": "sha512-4p+zDInl6sMnx1jdIcRSXgRAGFSwtcBPBStAlVuxPMefM8ElBPhskUyHrk33TqMZUdzbr+vYA+pQGj/6jlET4A==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/installer-linux": "6.0.0-beta.63"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-zip": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.63.tgz",
+      "integrity": "sha512-ZORm3jVvswvKSv+iuufTVXwIM/OOtBSQPeAay8hVubf6MudWBdntWv1Xg/BAUAcdRbAH/EIbMv83LZvmt7cufw==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/installer-darwin": "6.0.0-beta.63",
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "fs-extra": "^10.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/installer-zip/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/installer-zip/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/installer-zip/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/maker-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-0Fh6OOjS/1sXIGReKgU5NCMf8ZUyaCUSjd190oUNaX8OSxGDbHrbWO3CgIbsAOsxRnxzhYY1UtPo6VkexjCQBA==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0",
+        "which": "^2.0.2"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/maker-base/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/maker-base/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/maker-base/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/maker-deb": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-deb/-/maker-deb-6.0.0-beta.63.tgz",
+      "integrity": "sha512-6U4SQ9qFqd0UPCTfJU6358ifxnLvMxJmwyy3Z/4lZlYIfL2112gsQRyvlv7UcFXamw+1CZ9n9SY3f/K50susEQ==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      },
+      "optionalDependencies": {
+        "electron-installer-debian": "^3.0.0"
+      }
+    },
+    "node_modules/@electron-forge/maker-rpm": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-rpm/-/maker-rpm-6.0.0-beta.63.tgz",
+      "integrity": "sha512-htKNsA3/7nOd5PL6jjdrYCcSXrrIj43aJyOfIuFHswFpjFFmYEgsDCrN8lKZH5y1qdXQefaGOc9MapuBC0GO+w==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      },
+      "optionalDependencies": {
+        "electron-installer-redhat": "^3.2.0"
+      }
+    },
+    "node_modules/@electron-forge/maker-squirrel": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-squirrel/-/maker-squirrel-6.0.0-beta.63.tgz",
+      "integrity": "sha512-18eLRQmMZ6zBcI1Jhuqvhm50bmmatRCbyOUHTaIbhVf1M6ksq34xXXVWKUGlqDiCNLLLNzVw5MIb9O04eUdfIg==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      },
+      "optionalDependencies": {
+        "electron-winstaller": "^5.0.0"
+      }
+    },
+    "node_modules/@electron-forge/maker-squirrel/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/maker-squirrel/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/maker-squirrel/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/maker-zip": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-zip/-/maker-zip-6.0.0-beta.63.tgz",
+      "integrity": "sha512-tXNX58ly2TYj0Z7G9bKP3FbEHLfeNv+lJgmlDBwP5Uh4yG0d/dxIBUzP5Dv+pIjsH/l3K3dVfCCM3fc4q+u3Mg==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "cross-zip": "^4.0.0",
+        "fs-extra": "^10.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/maker-zip/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/maker-zip/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/maker-zip/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/plugin-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-K9nyGRI9NY2kax7aS/1eWxGrOSwNO3JnmbfvFQf5I0Yl/HKClrfGJq4o3q4N9lf55arPRJBROP8+rHJ115VCrA==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/shared-types": "6.0.0-beta.63"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/publisher-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-ag+/e6eqM6k1jxUhXg8618IbUa1IsF8OcbZtjcLSZSp/ZEGLAlZ3IpfIrk5C9cRUdibhDJyT6oFLfbG7KUhpRg==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/shared-types": "6.0.0-beta.63"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/shared-types": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.63.tgz",
+      "integrity": "sha512-ayw8IBtHKZ1oIN3y3t3Jm80TTvstvKrPASCXMEJ/fh4gHah8pUmDFZEvyAsGgy/XFHqsjlpTmD2hdOtQqCRpMQ==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "electron-packager": "^15.4.0",
+        "electron-rebuild": "^3.2.6",
+        "ora": "^5.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/template-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-u1rPlrc8bqajkiKe2tmGROL9/o0xx8OzMBHsT7i2+oAFPicSZoyrELCxx9htCeLgUf0iR0K0EzLsFjdyRjTBkg==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "debug": "^4.3.1",
+        "fs-extra": "^10.0.0",
+        "username": "^5.1.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/template-base/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/template-base/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/template-base/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/template-typescript": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.63.tgz",
+      "integrity": "sha512-npFOyak+F+p086GoSifCWwhBxRSJqzzvEwztnONpbjp7BasvtWUyOVpXyyzvt7GaawjRg5Gx/NUgVi5Oi9BIfg==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron-forge/template-base": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/template-typescript-webpack": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.63.tgz",
+      "integrity": "sha512-8S3GW2MRmYF6BsgozCm0CPqAuqaK48MZvJJ3v3XbO1tWPtz4vvw21XxQeOqRMpECdNbqnRBtil4QxVditEx3Kw==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron-forge/template-base": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/template-typescript-webpack/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/template-typescript-webpack/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/template-typescript-webpack/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/template-typescript/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/template-typescript/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/template-typescript/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron-forge/template-webpack": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.63.tgz",
+      "integrity": "sha512-CE5zjnyfmHlapwQSJ54kUeTNsvhx/7HAjvfMXpE689LxlFnr0VhiTxuc5kwEetPcxsXhei7IBy/PdJ41v4dswA==",
+      "dev": true,
+      "dependencies": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron-forge/template-base": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@electron-forge/template-webpack/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/@electron-forge/template-webpack/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron-forge/template-webpack/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@electron/get": {
+      "version": "1.14.1",
+      "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.14.1.tgz",
+      "integrity": "sha512-BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw==",
+      "dev": true,
+      "dependencies": {
+        "debug": "^4.1.1",
+        "env-paths": "^2.2.0",
+        "fs-extra": "^8.1.0",
+        "got": "^9.6.0",
+        "progress": "^2.0.3",
+        "semver": "^6.2.0",
+        "sumchecker": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=8.6"
+      },
+      "optionalDependencies": {
+        "global-agent": "^3.0.0",
+        "global-tunnel-ng": "^2.7.1"
+      }
+    },
+    "node_modules/@electron/universal": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.2.1.tgz",
+      "integrity": "sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ==",
+      "dev": true,
+      "dependencies": {
+        "@malept/cross-spawn-promise": "^1.1.0",
+        "asar": "^3.1.0",
+        "debug": "^4.3.1",
+        "dir-compare": "^2.4.0",
+        "fs-extra": "^9.0.1",
+        "minimatch": "^3.0.4",
+        "plist": "^3.0.4"
+      },
+      "engines": {
+        "node": ">=8.6"
+      }
+    },
+    "node_modules/@electron/universal/node_modules/@malept/cross-spawn-promise": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+      "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "dependencies": {
+        "cross-spawn": "^7.0.1"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/@electron/universal/node_modules/fs-extra": {
+      "version": "9.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+      "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+      "dev": true,
+      "dependencies": {
+        "at-least-node": "^1.0.0",
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/@electron/universal/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/@electron/universal/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/@gar/promisify": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
+      "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
+      "dev": true
+    },
+    "node_modules/@malept/cross-spawn-promise": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz",
+      "integrity": "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "dependencies": {
+        "cross-spawn": "^7.0.1"
+      },
+      "engines": {
+        "node": ">= 12.13.0"
+      }
+    },
+    "node_modules/@nodelib/fs.scandir": {
+      "version": "2.1.5",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+      "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+      "dev": true,
+      "dependencies": {
+        "@nodelib/fs.stat": "2.0.5",
+        "run-parallel": "^1.1.9"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/@nodelib/fs.stat": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+      "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+      "dev": true,
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/@nodelib/fs.walk": {
+      "version": "1.2.8",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+      "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+      "dev": true,
+      "dependencies": {
+        "@nodelib/fs.scandir": "2.1.5",
+        "fastq": "^1.6.0"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/@npmcli/fs": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz",
+      "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
+      "dev": true,
+      "dependencies": {
+        "@gar/promisify": "^1.0.1",
+        "semver": "^7.3.5"
+      }
+    },
+    "node_modules/@npmcli/fs/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/@npmcli/move-file": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
+      "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
+      "dev": true,
+      "dependencies": {
+        "mkdirp": "^1.0.4",
+        "rimraf": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/@npmcli/move-file/node_modules/mkdirp": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+      "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+      "dev": true,
+      "bin": {
+        "mkdirp": "bin/cmd.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/@sindresorhus/is": {
+      "version": "0.14.0",
+      "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
+      "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/@szmarczak/http-timer": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
+      "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
+      "dev": true,
+      "dependencies": {
+        "defer-to-connect": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/@tootallnate/once": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
+      "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
+      "dev": true,
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/@types/cacheable-request": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.2.tgz",
+      "integrity": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==",
+      "dev": true,
+      "dependencies": {
+        "@types/http-cache-semantics": "*",
+        "@types/keyv": "*",
+        "@types/node": "*",
+        "@types/responselike": "*"
+      }
+    },
+    "node_modules/@types/fs-extra": {
+      "version": "9.0.13",
+      "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz",
+      "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "@types/node": "*"
+      }
+    },
+    "node_modules/@types/glob": {
+      "version": "7.2.0",
+      "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
+      "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "@types/minimatch": "*",
+        "@types/node": "*"
+      }
+    },
+    "node_modules/@types/http-cache-semantics": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz",
+      "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==",
+      "dev": true
+    },
+    "node_modules/@types/json-buffer": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/@types/json-buffer/-/json-buffer-3.0.0.tgz",
+      "integrity": "sha512-3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ==",
+      "dev": true
+    },
+    "node_modules/@types/keyv": {
+      "version": "3.1.4",
+      "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz",
+      "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==",
+      "dev": true,
+      "dependencies": {
+        "@types/node": "*"
+      }
+    },
+    "node_modules/@types/minimatch": {
+      "version": "3.0.5",
+      "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz",
+      "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/@types/node": {
+      "version": "16.11.36",
+      "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.36.tgz",
+      "integrity": "sha512-FR5QJe+TaoZ2GsMHkjuwoNabr+UrJNRr2HNOo+r/7vhcuntM6Ee/pRPOnRhhL2XE9OOvX9VLEq+BcXl3VjNoWA==",
+      "dev": true
+    },
+    "node_modules/@types/responselike": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
+      "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
+      "dev": true,
+      "dependencies": {
+        "@types/node": "*"
+      }
+    },
+    "node_modules/@types/yauzl": {
+      "version": "2.10.0",
+      "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz",
+      "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "@types/node": "*"
+      }
+    },
+    "node_modules/abbrev": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+      "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
+      "dev": true
+    },
+    "node_modules/agent-base": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+      "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+      "dev": true,
+      "dependencies": {
+        "debug": "4"
+      },
+      "engines": {
+        "node": ">= 6.0.0"
+      }
+    },
+    "node_modules/agentkeepalive": {
+      "version": "4.2.1",
+      "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz",
+      "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==",
+      "dev": true,
+      "dependencies": {
+        "debug": "^4.1.0",
+        "depd": "^1.1.2",
+        "humanize-ms": "^1.2.1"
+      },
+      "engines": {
+        "node": ">= 8.0.0"
+      }
+    },
+    "node_modules/aggregate-error": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
+      "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
+      "dev": true,
+      "dependencies": {
+        "clean-stack": "^2.0.0",
+        "indent-string": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/ajv": {
+      "version": "6.12.6",
+      "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+      "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+      "dev": true,
+      "dependencies": {
+        "fast-deep-equal": "^3.1.1",
+        "fast-json-stable-stringify": "^2.0.0",
+        "json-schema-traverse": "^0.4.1",
+        "uri-js": "^4.2.2"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/epoberezkin"
+      }
+    },
+    "node_modules/ansi-escapes": {
+      "version": "4.3.2",
+      "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+      "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+      "dev": true,
+      "dependencies": {
+        "type-fest": "^0.21.3"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/ansi-escapes/node_modules/type-fest": {
+      "version": "0.21.3",
+      "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+      "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/ansi-regex": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+      "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/ansi-styles": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+      "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+      "dev": true,
+      "dependencies": {
+        "color-convert": "^2.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+      }
+    },
+    "node_modules/aproba": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+      "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
+      "dev": true
+    },
+    "node_modules/are-we-there-yet": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz",
+      "integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==",
+      "dev": true,
+      "dependencies": {
+        "delegates": "^1.0.0",
+        "readable-stream": "^3.6.0"
+      },
+      "engines": {
+        "node": "^12.13.0 || ^14.15.0 || >=16"
+      }
+    },
+    "node_modules/are-we-there-yet/node_modules/readable-stream": {
+      "version": "3.6.0",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+      "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+      "dev": true,
+      "dependencies": {
+        "inherits": "^2.0.3",
+        "string_decoder": "^1.1.1",
+        "util-deprecate": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/asar": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/asar/-/asar-3.1.0.tgz",
+      "integrity": "sha512-vyxPxP5arcAqN4F/ebHd/HhwnAiZtwhglvdmc7BR2f0ywbVNTOpSeyhLDbGXtE/y58hv1oC75TaNIXutnsOZsQ==",
+      "dev": true,
+      "dependencies": {
+        "chromium-pickle-js": "^0.2.0",
+        "commander": "^5.0.0",
+        "glob": "^7.1.6",
+        "minimatch": "^3.0.4"
+      },
+      "bin": {
+        "asar": "bin/asar.js"
+      },
+      "engines": {
+        "node": ">=10.12.0"
+      },
+      "optionalDependencies": {
+        "@types/glob": "^7.1.1"
+      }
+    },
+    "node_modules/asar/node_modules/commander": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
+      "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/asn1": {
+      "version": "0.2.6",
+      "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
+      "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
+      "dev": true,
+      "dependencies": {
+        "safer-buffer": "~2.1.0"
+      }
+    },
+    "node_modules/assert-plus": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+      "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8"
+      }
+    },
+    "node_modules/asynckit": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+      "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
+      "dev": true
+    },
+    "node_modules/at-least-node": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
+      "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 4.0.0"
+      }
+    },
+    "node_modules/author-regex": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/author-regex/-/author-regex-1.0.0.tgz",
+      "integrity": "sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8"
+      }
+    },
+    "node_modules/aws-sign2": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
+      "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/aws4": {
+      "version": "1.11.0",
+      "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz",
+      "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==",
+      "dev": true
+    },
+    "node_modules/balanced-match": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+      "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+      "dev": true
+    },
+    "node_modules/base64-js": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+      "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ]
+    },
+    "node_modules/bcrypt-pbkdf": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+      "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
+      "dev": true,
+      "dependencies": {
+        "tweetnacl": "^0.14.3"
+      }
+    },
+    "node_modules/bl": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
+      "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+      "dev": true,
+      "dependencies": {
+        "buffer": "^5.5.0",
+        "inherits": "^2.0.4",
+        "readable-stream": "^3.4.0"
+      }
+    },
+    "node_modules/bl/node_modules/readable-stream": {
+      "version": "3.6.0",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+      "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+      "dev": true,
+      "dependencies": {
+        "inherits": "^2.0.3",
+        "string_decoder": "^1.1.1",
+        "util-deprecate": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/bluebird": {
+      "version": "3.7.2",
+      "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+      "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
+      "dev": true
+    },
+    "node_modules/boolean": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz",
+      "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/brace-expansion": {
+      "version": "1.1.11",
+      "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+      "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+      "dev": true,
+      "dependencies": {
+        "balanced-match": "^1.0.0",
+        "concat-map": "0.0.1"
+      }
+    },
+    "node_modules/braces": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+      "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+      "dev": true,
+      "dependencies": {
+        "fill-range": "^7.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/buffer": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+      "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ],
+      "dependencies": {
+        "base64-js": "^1.3.1",
+        "ieee754": "^1.1.13"
+      }
+    },
+    "node_modules/buffer-alloc": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
+      "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
+      "dev": true,
+      "dependencies": {
+        "buffer-alloc-unsafe": "^1.1.0",
+        "buffer-fill": "^1.0.0"
+      }
+    },
+    "node_modules/buffer-alloc-unsafe": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
+      "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==",
+      "dev": true
+    },
+    "node_modules/buffer-crc32": {
+      "version": "0.2.13",
+      "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
+      "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/buffer-equal": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
+      "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.4.0"
+      }
+    },
+    "node_modules/buffer-fill": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
+      "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==",
+      "dev": true
+    },
+    "node_modules/buffer-from": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+      "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+      "dev": true
+    },
+    "node_modules/cacache": {
+      "version": "15.3.0",
+      "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
+      "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
+      "dev": true,
+      "dependencies": {
+        "@npmcli/fs": "^1.0.0",
+        "@npmcli/move-file": "^1.0.1",
+        "chownr": "^2.0.0",
+        "fs-minipass": "^2.0.0",
+        "glob": "^7.1.4",
+        "infer-owner": "^1.0.4",
+        "lru-cache": "^6.0.0",
+        "minipass": "^3.1.1",
+        "minipass-collect": "^1.0.2",
+        "minipass-flush": "^1.0.5",
+        "minipass-pipeline": "^1.2.2",
+        "mkdirp": "^1.0.3",
+        "p-map": "^4.0.0",
+        "promise-inflight": "^1.0.1",
+        "rimraf": "^3.0.2",
+        "ssri": "^8.0.1",
+        "tar": "^6.0.2",
+        "unique-filename": "^1.1.1"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/cacache/node_modules/mkdirp": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+      "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+      "dev": true,
+      "bin": {
+        "mkdirp": "bin/cmd.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/cacheable-lookup": {
+      "version": "5.0.4",
+      "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz",
+      "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==",
+      "dev": true,
+      "engines": {
+        "node": ">=10.6.0"
+      }
+    },
+    "node_modules/cacheable-request": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz",
+      "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==",
+      "dev": true,
+      "dependencies": {
+        "clone-response": "^1.0.2",
+        "get-stream": "^5.1.0",
+        "http-cache-semantics": "^4.0.0",
+        "keyv": "^3.0.0",
+        "lowercase-keys": "^2.0.0",
+        "normalize-url": "^4.1.0",
+        "responselike": "^1.0.2"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/cacheable-request/node_modules/get-stream": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+      "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+      "dev": true,
+      "dependencies": {
+        "pump": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/cacheable-request/node_modules/lowercase-keys": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
+      "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/camelcase": {
+      "version": "5.3.1",
+      "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+      "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/caseless": {
+      "version": "0.12.0",
+      "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
+      "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
+      "dev": true
+    },
+    "node_modules/chalk": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+      "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+      "dev": true,
+      "dependencies": {
+        "ansi-styles": "^4.1.0",
+        "supports-color": "^7.1.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/chalk/chalk?sponsor=1"
+      }
+    },
+    "node_modules/chardet": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
+      "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
+      "dev": true
+    },
+    "node_modules/chownr": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+      "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/chromium-pickle-js": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz",
+      "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==",
+      "dev": true
+    },
+    "node_modules/clean-stack": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+      "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/cli-cursor": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+      "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+      "dev": true,
+      "dependencies": {
+        "restore-cursor": "^3.1.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/cli-spinners": {
+      "version": "2.6.1",
+      "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz",
+      "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/cli-width": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
+      "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/cliui": {
+      "version": "7.0.4",
+      "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+      "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+      "dev": true,
+      "dependencies": {
+        "string-width": "^4.2.0",
+        "strip-ansi": "^6.0.0",
+        "wrap-ansi": "^7.0.0"
+      }
+    },
+    "node_modules/clone": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+      "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8"
+      }
+    },
+    "node_modules/clone-response": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
+      "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
+      "dev": true,
+      "dependencies": {
+        "mimic-response": "^1.0.0"
+      }
+    },
+    "node_modules/code-point-at": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
+      "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/color-convert": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+      "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+      "dev": true,
+      "dependencies": {
+        "color-name": "~1.1.4"
+      },
+      "engines": {
+        "node": ">=7.0.0"
+      }
+    },
+    "node_modules/color-name": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+      "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+      "dev": true
+    },
+    "node_modules/color-support": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+      "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
+      "dev": true,
+      "bin": {
+        "color-support": "bin.js"
+      }
+    },
+    "node_modules/colors": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
+      "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.1.90"
+      }
+    },
+    "node_modules/combined-stream": {
+      "version": "1.0.8",
+      "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+      "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+      "dev": true,
+      "dependencies": {
+        "delayed-stream": "~1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/commander": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
+      "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
+      "dev": true,
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/compare-version": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz",
+      "integrity": "sha1-AWLsLZNR9d3VmpICy6k1NmpyUIA=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/compress-brotli": {
+      "version": "1.3.8",
+      "resolved": "https://registry.npmjs.org/compress-brotli/-/compress-brotli-1.3.8.tgz",
+      "integrity": "sha512-lVcQsjhxhIXsuupfy9fmZUFtAIdBmXA7EGY6GBdgZ++qkM9zG4YFT8iU7FoBxzryNDMOpD1HIFHUSX4D87oqhQ==",
+      "dev": true,
+      "dependencies": {
+        "@types/json-buffer": "~3.0.0",
+        "json-buffer": "~3.0.1"
+      },
+      "engines": {
+        "node": ">= 12"
+      }
+    },
+    "node_modules/compress-brotli/node_modules/json-buffer": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+      "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+      "dev": true
+    },
+    "node_modules/concat-map": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
+      "dev": true
+    },
+    "node_modules/concat-stream": {
+      "version": "1.6.2",
+      "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+      "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+      "dev": true,
+      "engines": [
+        "node >= 0.8"
+      ],
+      "dependencies": {
+        "buffer-from": "^1.0.0",
+        "inherits": "^2.0.3",
+        "readable-stream": "^2.2.2",
+        "typedarray": "^0.0.6"
+      }
+    },
+    "node_modules/config-chain": {
+      "version": "1.1.13",
+      "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
+      "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "ini": "^1.3.4",
+        "proto-list": "~1.2.1"
+      }
+    },
+    "node_modules/console-control-strings": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+      "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
+      "dev": true
+    },
+    "node_modules/core-util-is": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+      "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
+      "dev": true
+    },
+    "node_modules/cross-spawn": {
+      "version": "7.0.3",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+      "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+      "dev": true,
+      "dependencies": {
+        "path-key": "^3.1.0",
+        "shebang-command": "^2.0.0",
+        "which": "^2.0.1"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/cross-spawn-windows-exe": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/cross-spawn-windows-exe/-/cross-spawn-windows-exe-1.2.0.tgz",
+      "integrity": "sha512-mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-cross-spawn-windows-exe?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "dependencies": {
+        "@malept/cross-spawn-promise": "^1.1.0",
+        "is-wsl": "^2.2.0",
+        "which": "^2.0.2"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/cross-spawn-windows-exe/node_modules/@malept/cross-spawn-promise": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+      "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "dependencies": {
+        "cross-spawn": "^7.0.1"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/cross-zip": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/cross-zip/-/cross-zip-4.0.0.tgz",
+      "integrity": "sha512-MEzGfZo0rqE10O/B+AEcCSJLZsrWuRUvmqJTqHNqBtALhaJc3E3ixLGLJNTRzEA2K34wbmOHC4fwYs9sVsdcCA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ],
+      "engines": {
+        "node": ">=12.10"
+      }
+    },
+    "node_modules/cuint": {
+      "version": "0.2.2",
+      "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz",
+      "integrity": "sha1-QICG1AlVDCYxFVYZ6fp7ytw7mRs=",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/dashdash": {
+      "version": "1.14.1",
+      "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
+      "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
+      "dev": true,
+      "dependencies": {
+        "assert-plus": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10"
+      }
+    },
+    "node_modules/debug": {
+      "version": "4.3.4",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+      "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.1.2"
+      },
+      "engines": {
+        "node": ">=6.0"
+      },
+      "peerDependenciesMeta": {
+        "supports-color": {
+          "optional": true
+        }
+      }
+    },
+    "node_modules/decamelize": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+      "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/decompress-response": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
+      "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
+      "dev": true,
+      "dependencies": {
+        "mimic-response": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/defaults": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
+      "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
+      "dev": true,
+      "dependencies": {
+        "clone": "^1.0.2"
+      }
+    },
+    "node_modules/defer-to-connect": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz",
+      "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==",
+      "dev": true
+    },
+    "node_modules/define-lazy-prop": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
+      "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/define-properties": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
+      "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "has-property-descriptors": "^1.0.0",
+        "object-keys": "^1.1.1"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/delayed-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+      "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.4.0"
+      }
+    },
+    "node_modules/delegates": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+      "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
+      "dev": true
+    },
+    "node_modules/depd": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+      "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/detect-libc": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
+      "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=",
+      "dev": true,
+      "bin": {
+        "detect-libc": "bin/detect-libc.js"
+      },
+      "engines": {
+        "node": ">=0.10"
+      }
+    },
+    "node_modules/detect-node": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz",
+      "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/dir-compare": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz",
+      "integrity": "sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==",
+      "dev": true,
+      "dependencies": {
+        "buffer-equal": "1.0.0",
+        "colors": "1.0.3",
+        "commander": "2.9.0",
+        "minimatch": "3.0.4"
+      },
+      "bin": {
+        "dircompare": "src/cli/dircompare.js"
+      }
+    },
+    "node_modules/dir-compare/node_modules/commander": {
+      "version": "2.9.0",
+      "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz",
+      "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=",
+      "dev": true,
+      "dependencies": {
+        "graceful-readlink": ">= 1.0.0"
+      },
+      "engines": {
+        "node": ">= 0.6.x"
+      }
+    },
+    "node_modules/dir-compare/node_modules/minimatch": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+      "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+      "dev": true,
+      "dependencies": {
+        "brace-expansion": "^1.1.7"
+      },
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/duplexer3": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
+      "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
+      "dev": true
+    },
+    "node_modules/ecc-jsbn": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
+      "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
+      "dev": true,
+      "dependencies": {
+        "jsbn": "~0.1.0",
+        "safer-buffer": "^2.1.0"
+      }
+    },
+    "node_modules/electron": {
+      "version": "18.2.3",
+      "resolved": "https://registry.npmjs.org/electron/-/electron-18.2.3.tgz",
+      "integrity": "sha512-DJWX03hCRKTscsfXxmW4gmgFuseop+g+m4ml7NfOMfankD8uYyr2Xyi3Ui02inL9qZOlbLMeLVCu6jKCKs8p/w==",
+      "dev": true,
+      "hasInstallScript": true,
+      "dependencies": {
+        "@electron/get": "^1.13.0",
+        "@types/node": "^16.11.26",
+        "extract-zip": "^1.0.3"
+      },
+      "bin": {
+        "electron": "cli.js"
+      },
+      "engines": {
+        "node": ">= 8.6"
+      }
+    },
+    "node_modules/electron-installer-common": {
+      "version": "0.10.3",
+      "resolved": "https://registry.npmjs.org/electron-installer-common/-/electron-installer-common-0.10.3.tgz",
+      "integrity": "sha512-mYbP+6i+nHMIm0WZHXgGdmmXMe+KXncl6jZYQNcCF9C1WsNA9C5SZ2VP4TLQMSIoFO+X4ugkMEA5uld1bmyEvA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "@malept/cross-spawn-promise": "^1.0.0",
+        "asar": "^3.0.0",
+        "debug": "^4.1.1",
+        "fs-extra": "^9.0.0",
+        "glob": "^7.1.4",
+        "lodash": "^4.17.15",
+        "parse-author": "^2.0.0",
+        "semver": "^7.1.1",
+        "tmp-promise": "^3.0.2"
+      },
+      "engines": {
+        "node": ">= 10.0.0"
+      },
+      "funding": {
+        "url": "https://github.com/electron-userland/electron-installer-common?sponsor=1"
+      },
+      "optionalDependencies": {
+        "@types/fs-extra": "^9.0.1"
+      }
+    },
+    "node_modules/electron-installer-common/node_modules/@malept/cross-spawn-promise": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+      "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "optional": true,
+      "dependencies": {
+        "cross-spawn": "^7.0.1"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/electron-installer-common/node_modules/fs-extra": {
+      "version": "9.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+      "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "at-least-node": "^1.0.0",
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-installer-common/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/electron-installer-common/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-installer-common/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-installer-debian": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/electron-installer-debian/-/electron-installer-debian-3.1.0.tgz",
+      "integrity": "sha512-k6KChvx0Fw8XTlCqwwbBfh19yGQaKjGdbugokmr1IpzINOm4QFyACKMTHAYFHW5LCBUZQShZD96hwxUZ+8Kx+w==",
+      "dev": true,
+      "optional": true,
+      "os": [
+        "darwin",
+        "linux"
+      ],
+      "dependencies": {
+        "@malept/cross-spawn-promise": "^1.0.0",
+        "debug": "^4.1.1",
+        "electron-installer-common": "^0.10.2",
+        "fs-extra": "^9.0.0",
+        "get-folder-size": "^2.0.1",
+        "lodash": "^4.17.4",
+        "word-wrap": "^1.2.3",
+        "yargs": "^15.0.1"
+      },
+      "bin": {
+        "electron-installer-debian": "src/cli.js"
+      },
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/@malept/cross-spawn-promise": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+      "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "optional": true,
+      "dependencies": {
+        "cross-spawn": "^7.0.1"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/cliui": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+      "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "string-width": "^4.2.0",
+        "strip-ansi": "^6.0.0",
+        "wrap-ansi": "^6.2.0"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/find-up": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+      "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "locate-path": "^5.0.0",
+        "path-exists": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/fs-extra": {
+      "version": "9.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+      "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "at-least-node": "^1.0.0",
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/locate-path": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+      "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "p-locate": "^4.1.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/p-limit": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+      "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "p-try": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/p-locate": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+      "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "p-limit": "^2.2.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/wrap-ansi": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+      "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "ansi-styles": "^4.0.0",
+        "string-width": "^4.1.0",
+        "strip-ansi": "^6.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/y18n": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+      "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/electron-installer-debian/node_modules/yargs": {
+      "version": "15.4.1",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
+      "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "cliui": "^6.0.0",
+        "decamelize": "^1.2.0",
+        "find-up": "^4.1.0",
+        "get-caller-file": "^2.0.1",
+        "require-directory": "^2.1.1",
+        "require-main-filename": "^2.0.0",
+        "set-blocking": "^2.0.0",
+        "string-width": "^4.2.0",
+        "which-module": "^2.0.0",
+        "y18n": "^4.0.0",
+        "yargs-parser": "^18.1.2"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/electron-installer-debian/node_modules/yargs-parser": {
+      "version": "18.1.3",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
+      "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "camelcase": "^5.0.0",
+        "decamelize": "^1.2.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/electron-installer-redhat": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/electron-installer-redhat/-/electron-installer-redhat-3.3.0.tgz",
+      "integrity": "sha512-hXIXB3uQXmXZy/v3MpbwWN4Of28ALpPt9ZyUDNEoSe0w7QZceL9IqI2K6Q6imiBJCLRC0hmT94WhlKj1RyGOWg==",
+      "dev": true,
+      "optional": true,
+      "os": [
+        "darwin",
+        "linux"
+      ],
+      "dependencies": {
+        "@malept/cross-spawn-promise": "^1.0.0",
+        "debug": "^4.1.1",
+        "electron-installer-common": "^0.10.2",
+        "fs-extra": "^9.0.0",
+        "lodash": "^4.17.15",
+        "word-wrap": "^1.2.3",
+        "yargs": "^16.0.2"
+      },
+      "bin": {
+        "electron-installer-redhat": "src/cli.js"
+      },
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-installer-redhat/node_modules/@malept/cross-spawn-promise": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+      "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "individual",
+          "url": "https://github.com/sponsors/malept"
+        },
+        {
+          "type": "tidelift",
+          "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
+        }
+      ],
+      "optional": true,
+      "dependencies": {
+        "cross-spawn": "^7.0.1"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/electron-installer-redhat/node_modules/fs-extra": {
+      "version": "9.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+      "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "at-least-node": "^1.0.0",
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-installer-redhat/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/electron-installer-redhat/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-installer-redhat/node_modules/yargs": {
+      "version": "16.2.0",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+      "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "cliui": "^7.0.2",
+        "escalade": "^3.1.1",
+        "get-caller-file": "^2.0.5",
+        "require-directory": "^2.1.1",
+        "string-width": "^4.2.0",
+        "y18n": "^5.0.5",
+        "yargs-parser": "^20.2.2"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-notarize": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.2.1.tgz",
+      "integrity": "sha512-u/ECWhIrhkSQpZM4cJzVZ5TsmkaqrRo5LDC/KMbGF0sPkm53Ng59+M0zp8QVaql0obfJy9vlVT+4iOkAi2UDlA==",
+      "dev": true,
+      "dependencies": {
+        "debug": "^4.1.1",
+        "fs-extra": "^9.0.1"
+      },
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-notarize/node_modules/fs-extra": {
+      "version": "9.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+      "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+      "dev": true,
+      "dependencies": {
+        "at-least-node": "^1.0.0",
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-notarize/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/electron-notarize/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-osx-sign": {
+      "version": "0.5.0",
+      "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz",
+      "integrity": "sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==",
+      "dev": true,
+      "dependencies": {
+        "bluebird": "^3.5.0",
+        "compare-version": "^0.1.2",
+        "debug": "^2.6.8",
+        "isbinaryfile": "^3.0.2",
+        "minimist": "^1.2.0",
+        "plist": "^3.0.1"
+      },
+      "bin": {
+        "electron-osx-flat": "bin/electron-osx-flat.js",
+        "electron-osx-sign": "bin/electron-osx-sign.js"
+      },
+      "engines": {
+        "node": ">=4.0.0"
+      }
+    },
+    "node_modules/electron-osx-sign/node_modules/debug": {
+      "version": "2.6.9",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/electron-osx-sign/node_modules/ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+      "dev": true
+    },
+    "node_modules/electron-packager": {
+      "version": "15.5.1",
+      "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-15.5.1.tgz",
+      "integrity": "sha512-9/fqF64GACZsLYLuFJ8vCqItMXbvsD0NMDLNfFmAv9mSqkqKWSZb5V3VE9CxT6CeXwZ6wN3YowEQuqBNyShEVg==",
+      "dev": true,
+      "dependencies": {
+        "@electron/get": "^1.6.0",
+        "@electron/universal": "^1.2.1",
+        "asar": "^3.1.0",
+        "cross-spawn-windows-exe": "^1.2.0",
+        "debug": "^4.0.1",
+        "electron-notarize": "^1.1.1",
+        "electron-osx-sign": "^0.5.0",
+        "extract-zip": "^2.0.0",
+        "filenamify": "^4.1.0",
+        "fs-extra": "^9.0.0",
+        "galactus": "^0.2.1",
+        "get-package-info": "^1.0.0",
+        "junk": "^3.1.0",
+        "parse-author": "^2.0.0",
+        "plist": "^3.0.0",
+        "rcedit": "^3.0.1",
+        "resolve": "^1.1.6",
+        "semver": "^7.1.3",
+        "yargs-parser": "^20.0.0"
+      },
+      "bin": {
+        "electron-packager": "bin/electron-packager.js"
+      },
+      "engines": {
+        "node": ">= 10.12.0"
+      },
+      "funding": {
+        "url": "https://github.com/electron/electron-packager?sponsor=1"
+      }
+    },
+    "node_modules/electron-packager/node_modules/extract-zip": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
+      "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
+      "dev": true,
+      "dependencies": {
+        "debug": "^4.1.1",
+        "get-stream": "^5.1.0",
+        "yauzl": "^2.10.0"
+      },
+      "bin": {
+        "extract-zip": "cli.js"
+      },
+      "engines": {
+        "node": ">= 10.17.0"
+      },
+      "optionalDependencies": {
+        "@types/yauzl": "^2.9.1"
+      }
+    },
+    "node_modules/electron-packager/node_modules/fs-extra": {
+      "version": "9.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+      "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+      "dev": true,
+      "dependencies": {
+        "at-least-node": "^1.0.0",
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-packager/node_modules/get-stream": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+      "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+      "dev": true,
+      "dependencies": {
+        "pump": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/electron-packager/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/electron-packager/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-packager/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-rebuild": {
+      "version": "3.2.7",
+      "resolved": "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-3.2.7.tgz",
+      "integrity": "sha512-WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw==",
+      "dev": true,
+      "dependencies": {
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "chalk": "^4.0.0",
+        "debug": "^4.1.1",
+        "detect-libc": "^1.0.3",
+        "fs-extra": "^10.0.0",
+        "got": "^11.7.0",
+        "lzma-native": "^8.0.5",
+        "node-abi": "^3.0.0",
+        "node-api-version": "^0.1.4",
+        "node-gyp": "^8.4.0",
+        "ora": "^5.1.0",
+        "semver": "^7.3.5",
+        "tar": "^6.0.5",
+        "yargs": "^17.0.1"
+      },
+      "bin": {
+        "electron-rebuild": "lib/src/cli.js"
+      },
+      "engines": {
+        "node": ">=12.13.0"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/@sindresorhus/is": {
+      "version": "4.6.0",
+      "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
+      "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sindresorhus/is?sponsor=1"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/@szmarczak/http-timer": {
+      "version": "4.0.6",
+      "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz",
+      "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==",
+      "dev": true,
+      "dependencies": {
+        "defer-to-connect": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/cacheable-request": {
+      "version": "7.0.2",
+      "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz",
+      "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==",
+      "dev": true,
+      "dependencies": {
+        "clone-response": "^1.0.2",
+        "get-stream": "^5.1.0",
+        "http-cache-semantics": "^4.0.0",
+        "keyv": "^4.0.0",
+        "lowercase-keys": "^2.0.0",
+        "normalize-url": "^6.0.1",
+        "responselike": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/decompress-response": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
+      "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
+      "dev": true,
+      "dependencies": {
+        "mimic-response": "^3.1.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/defer-to-connect": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
+      "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/fs-extra": {
+      "version": "10.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+      "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^6.0.1",
+        "universalify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/get-stream": {
+      "version": "5.2.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+      "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+      "dev": true,
+      "dependencies": {
+        "pump": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/got": {
+      "version": "11.8.3",
+      "resolved": "https://registry.npmjs.org/got/-/got-11.8.3.tgz",
+      "integrity": "sha512-7gtQ5KiPh1RtGS9/Jbv1ofDpBFuq42gyfEib+ejaRBJuj/3tQFeR5+gw57e4ipaU8c/rCjvX6fkQz2lyDlGAOg==",
+      "dev": true,
+      "dependencies": {
+        "@sindresorhus/is": "^4.0.0",
+        "@szmarczak/http-timer": "^4.0.5",
+        "@types/cacheable-request": "^6.0.1",
+        "@types/responselike": "^1.0.0",
+        "cacheable-lookup": "^5.0.3",
+        "cacheable-request": "^7.0.2",
+        "decompress-response": "^6.0.0",
+        "http2-wrapper": "^1.0.0-beta.5.2",
+        "lowercase-keys": "^2.0.0",
+        "p-cancelable": "^2.0.0",
+        "responselike": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=10.19.0"
+      },
+      "funding": {
+        "url": "https://github.com/sindresorhus/got?sponsor=1"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/json-buffer": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+      "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+      "dev": true
+    },
+    "node_modules/electron-rebuild/node_modules/jsonfile": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+      "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+      "dev": true,
+      "dependencies": {
+        "universalify": "^2.0.0"
+      },
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/keyv": {
+      "version": "4.2.8",
+      "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.2.8.tgz",
+      "integrity": "sha512-IZZo6krhHWPhgsP5mBkEdPopVPN/stgCnBVuqi6dda/Nm5mDTOSVTrFMkWqlJsDum+B0YSe887tNxdjDWkO7aQ==",
+      "dev": true,
+      "dependencies": {
+        "compress-brotli": "^1.3.8",
+        "json-buffer": "3.0.1"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/lowercase-keys": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
+      "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/mimic-response": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
+      "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/normalize-url": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz",
+      "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/p-cancelable": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz",
+      "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/responselike": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz",
+      "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==",
+      "dev": true,
+      "dependencies": {
+        "lowercase-keys": "^2.0.0"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/electron-rebuild/node_modules/universalify": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+      "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+      "dev": true,
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/electron-squirrel-startup": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/electron-squirrel-startup/-/electron-squirrel-startup-1.0.0.tgz",
+      "integrity": "sha1-GbTlWTP6Dvj1VnhLnGYPdyVGoLg=",
+      "dependencies": {
+        "debug": "^2.2.0"
+      }
+    },
+    "node_modules/electron-squirrel-startup/node_modules/debug": {
+      "version": "2.6.9",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/electron-squirrel-startup/node_modules/ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+    },
+    "node_modules/electron-winstaller": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.0.0.tgz",
+      "integrity": "sha512-V+jFda7aVAm0htCG8Q95buPUpmXZW9ujh1HdhSlWY6y4QnJnw4TfrmxTlQWV4p2ioF/71JMI/1YF+/qbSICogA==",
+      "dev": true,
+      "hasInstallScript": true,
+      "optional": true,
+      "dependencies": {
+        "asar": "^2.0.1",
+        "debug": "^4.1.1",
+        "fs-extra": "^7.0.1",
+        "lodash.template": "^4.2.2",
+        "temp": "^0.9.0"
+      },
+      "engines": {
+        "node": ">=8.0.0"
+      }
+    },
+    "node_modules/electron-winstaller/node_modules/asar": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/asar/-/asar-2.1.0.tgz",
+      "integrity": "sha512-d2Ovma+bfqNpvBzY/KU8oPY67ZworixTpkjSx0PCXnQi67c2cXmssaTxpFDUM0ttopXoGx/KRxNg/GDThYbXQA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "chromium-pickle-js": "^0.2.0",
+        "commander": "^2.20.0",
+        "cuint": "^0.2.2",
+        "glob": "^7.1.3",
+        "minimatch": "^3.0.4",
+        "mkdirp": "^0.5.1",
+        "tmp-promise": "^1.0.5"
+      },
+      "bin": {
+        "asar": "bin/asar.js"
+      },
+      "engines": {
+        "node": ">=8.0"
+      },
+      "optionalDependencies": {
+        "@types/glob": "^7.1.1"
+      }
+    },
+    "node_modules/electron-winstaller/node_modules/commander": {
+      "version": "2.20.3",
+      "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+      "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/electron-winstaller/node_modules/fs-extra": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
+      "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "graceful-fs": "^4.1.2",
+        "jsonfile": "^4.0.0",
+        "universalify": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=6 <7 || >=8"
+      }
+    },
+    "node_modules/electron-winstaller/node_modules/rimraf": {
+      "version": "2.7.1",
+      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+      "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "glob": "^7.1.3"
+      },
+      "bin": {
+        "rimraf": "bin.js"
+      }
+    },
+    "node_modules/electron-winstaller/node_modules/tmp": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz",
+      "integrity": "sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "rimraf": "^2.6.3"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/electron-winstaller/node_modules/tmp-promise": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-1.1.0.tgz",
+      "integrity": "sha512-8+Ah9aB1IRXCnIOxXZ0uFozV1nMU5xiu7hhFVUSxZ3bYu+psD4TzagCzVbexUCgNNGJnsmNDQlS4nG3mTyoNkw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "bluebird": "^3.5.0",
+        "tmp": "0.1.0"
+      }
+    },
+    "node_modules/emoji-regex": {
+      "version": "8.0.0",
+      "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+      "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+      "dev": true
+    },
+    "node_modules/encodeurl": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+      "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">= 0.8"
+      }
+    },
+    "node_modules/encoding": {
+      "version": "0.1.13",
+      "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
+      "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "iconv-lite": "^0.6.2"
+      }
+    },
+    "node_modules/encoding/node_modules/iconv-lite": {
+      "version": "0.6.3",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+      "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "safer-buffer": ">= 2.1.2 < 3.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/end-of-stream": {
+      "version": "1.4.4",
+      "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+      "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+      "dev": true,
+      "dependencies": {
+        "once": "^1.4.0"
+      }
+    },
+    "node_modules/env-paths": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
+      "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/err-code": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
+      "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
+      "dev": true
+    },
+    "node_modules/error-ex": {
+      "version": "1.3.2",
+      "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+      "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+      "dev": true,
+      "dependencies": {
+        "is-arrayish": "^0.2.1"
+      }
+    },
+    "node_modules/es6-error": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
+      "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/escalade": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+      "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/escape-string-regexp": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+      "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/execa": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+      "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+      "dev": true,
+      "dependencies": {
+        "cross-spawn": "^6.0.0",
+        "get-stream": "^4.0.0",
+        "is-stream": "^1.1.0",
+        "npm-run-path": "^2.0.0",
+        "p-finally": "^1.0.0",
+        "signal-exit": "^3.0.0",
+        "strip-eof": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/execa/node_modules/cross-spawn": {
+      "version": "6.0.5",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+      "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+      "dev": true,
+      "dependencies": {
+        "nice-try": "^1.0.4",
+        "path-key": "^2.0.1",
+        "semver": "^5.5.0",
+        "shebang-command": "^1.2.0",
+        "which": "^1.2.9"
+      },
+      "engines": {
+        "node": ">=4.8"
+      }
+    },
+    "node_modules/execa/node_modules/path-key": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+      "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/execa/node_modules/semver": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+      "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+      "dev": true,
+      "bin": {
+        "semver": "bin/semver"
+      }
+    },
+    "node_modules/execa/node_modules/shebang-command": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+      "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+      "dev": true,
+      "dependencies": {
+        "shebang-regex": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/execa/node_modules/shebang-regex": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+      "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/execa/node_modules/which": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+      "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+      "dev": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "which": "bin/which"
+      }
+    },
+    "node_modules/expand-tilde": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
+      "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
+      "dev": true,
+      "dependencies": {
+        "homedir-polyfill": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/extend": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+      "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+      "dev": true
+    },
+    "node_modules/external-editor": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
+      "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
+      "dev": true,
+      "dependencies": {
+        "chardet": "^0.7.0",
+        "iconv-lite": "^0.4.24",
+        "tmp": "^0.0.33"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/extract-zip": {
+      "version": "1.7.0",
+      "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
+      "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==",
+      "dev": true,
+      "dependencies": {
+        "concat-stream": "^1.6.2",
+        "debug": "^2.6.9",
+        "mkdirp": "^0.5.4",
+        "yauzl": "^2.10.0"
+      },
+      "bin": {
+        "extract-zip": "cli.js"
+      }
+    },
+    "node_modules/extract-zip/node_modules/debug": {
+      "version": "2.6.9",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/extract-zip/node_modules/ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+      "dev": true
+    },
+    "node_modules/extsprintf": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
+      "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
+      "dev": true,
+      "engines": [
+        "node >=0.6.0"
+      ]
+    },
+    "node_modules/fast-deep-equal": {
+      "version": "3.1.3",
+      "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+      "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+      "dev": true
+    },
+    "node_modules/fast-glob": {
+      "version": "3.2.11",
+      "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz",
+      "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==",
+      "dev": true,
+      "dependencies": {
+        "@nodelib/fs.stat": "^2.0.2",
+        "@nodelib/fs.walk": "^1.2.3",
+        "glob-parent": "^5.1.2",
+        "merge2": "^1.3.0",
+        "micromatch": "^4.0.4"
+      },
+      "engines": {
+        "node": ">=8.6.0"
+      }
+    },
+    "node_modules/fast-json-stable-stringify": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+      "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+      "dev": true
+    },
+    "node_modules/fastq": {
+      "version": "1.13.0",
+      "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
+      "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
+      "dev": true,
+      "dependencies": {
+        "reusify": "^1.0.4"
+      }
+    },
+    "node_modules/fd-slicer": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
+      "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=",
+      "dev": true,
+      "dependencies": {
+        "pend": "~1.2.0"
+      }
+    },
+    "node_modules/figures": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
+      "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
+      "dev": true,
+      "dependencies": {
+        "escape-string-regexp": "^1.0.5"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/figures/node_modules/escape-string-regexp": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/filename-reserved-regex": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
+      "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/filenamify": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz",
+      "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==",
+      "dev": true,
+      "dependencies": {
+        "filename-reserved-regex": "^2.0.0",
+        "strip-outer": "^1.0.1",
+        "trim-repeated": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/fill-range": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+      "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+      "dev": true,
+      "dependencies": {
+        "to-regex-range": "^5.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/find-up": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+      "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+      "dev": true,
+      "dependencies": {
+        "locate-path": "^6.0.0",
+        "path-exists": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/flora-colossus": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/flora-colossus/-/flora-colossus-1.0.1.tgz",
+      "integrity": "sha512-d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==",
+      "dev": true,
+      "dependencies": {
+        "debug": "^4.1.1",
+        "fs-extra": "^7.0.0"
+      },
+      "engines": {
+        "node": ">= 6.0.0"
+      }
+    },
+    "node_modules/flora-colossus/node_modules/fs-extra": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
+      "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.1.2",
+        "jsonfile": "^4.0.0",
+        "universalify": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=6 <7 || >=8"
+      }
+    },
+    "node_modules/forever-agent": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
+      "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/form-data": {
+      "version": "2.3.3",
+      "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
+      "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
+      "dev": true,
+      "dependencies": {
+        "asynckit": "^0.4.0",
+        "combined-stream": "^1.0.6",
+        "mime-types": "^2.1.12"
+      },
+      "engines": {
+        "node": ">= 0.12"
+      }
+    },
+    "node_modules/fs-extra": {
+      "version": "8.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+      "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^4.0.0",
+        "universalify": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=6 <7 || >=8"
+      }
+    },
+    "node_modules/fs-minipass": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+      "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+      "dev": true,
+      "dependencies": {
+        "minipass": "^3.0.0"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/fs.realpath": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
+      "dev": true
+    },
+    "node_modules/function-bind": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+      "dev": true
+    },
+    "node_modules/galactus": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/galactus/-/galactus-0.2.1.tgz",
+      "integrity": "sha1-y+0tIKQMH1Z5o1kI4rlBVzPnjbk=",
+      "dev": true,
+      "dependencies": {
+        "debug": "^3.1.0",
+        "flora-colossus": "^1.0.0",
+        "fs-extra": "^4.0.0"
+      }
+    },
+    "node_modules/galactus/node_modules/debug": {
+      "version": "3.2.7",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+      "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+      "dev": true,
+      "dependencies": {
+        "ms": "^2.1.1"
+      }
+    },
+    "node_modules/galactus/node_modules/fs-extra": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz",
+      "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.1.2",
+        "jsonfile": "^4.0.0",
+        "universalify": "^0.1.0"
+      }
+    },
+    "node_modules/gar": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz",
+      "integrity": "sha512-w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/gauge": {
+      "version": "4.0.4",
+      "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
+      "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
+      "dev": true,
+      "dependencies": {
+        "aproba": "^1.0.3 || ^2.0.0",
+        "color-support": "^1.1.3",
+        "console-control-strings": "^1.1.0",
+        "has-unicode": "^2.0.1",
+        "signal-exit": "^3.0.7",
+        "string-width": "^4.2.3",
+        "strip-ansi": "^6.0.1",
+        "wide-align": "^1.1.5"
+      },
+      "engines": {
+        "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+      }
+    },
+    "node_modules/get-caller-file": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+      "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+      "dev": true,
+      "engines": {
+        "node": "6.* || 8.* || >= 10.*"
+      }
+    },
+    "node_modules/get-folder-size": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz",
+      "integrity": "sha512-+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "gar": "^1.0.4",
+        "tiny-each-async": "2.0.3"
+      },
+      "bin": {
+        "get-folder-size": "bin/get-folder-size"
+      }
+    },
+    "node_modules/get-installed-path": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz",
+      "integrity": "sha512-Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==",
+      "dev": true,
+      "dependencies": {
+        "global-modules": "1.0.0"
+      }
+    },
+    "node_modules/get-intrinsic": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
+      "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "function-bind": "^1.1.1",
+        "has": "^1.0.3",
+        "has-symbols": "^1.0.1"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/get-package-info": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/get-package-info/-/get-package-info-1.0.0.tgz",
+      "integrity": "sha1-ZDJ5ZWPigRPNlHTbvQAFKYWkmZw=",
+      "dev": true,
+      "dependencies": {
+        "bluebird": "^3.1.1",
+        "debug": "^2.2.0",
+        "lodash.get": "^4.0.0",
+        "read-pkg-up": "^2.0.0"
+      },
+      "engines": {
+        "node": ">= 4.0"
+      }
+    },
+    "node_modules/get-package-info/node_modules/debug": {
+      "version": "2.6.9",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/get-package-info/node_modules/ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+      "dev": true
+    },
+    "node_modules/get-stream": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
+      "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+      "dev": true,
+      "dependencies": {
+        "pump": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/getpass": {
+      "version": "0.1.7",
+      "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
+      "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
+      "dev": true,
+      "dependencies": {
+        "assert-plus": "^1.0.0"
+      }
+    },
+    "node_modules/glob": {
+      "version": "7.2.3",
+      "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+      "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+      "dev": true,
+      "dependencies": {
+        "fs.realpath": "^1.0.0",
+        "inflight": "^1.0.4",
+        "inherits": "2",
+        "minimatch": "^3.1.1",
+        "once": "^1.3.0",
+        "path-is-absolute": "^1.0.0"
+      },
+      "engines": {
+        "node": "*"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/isaacs"
+      }
+    },
+    "node_modules/glob-parent": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+      "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+      "dev": true,
+      "dependencies": {
+        "is-glob": "^4.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/global-agent": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz",
+      "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "boolean": "^3.0.1",
+        "es6-error": "^4.1.1",
+        "matcher": "^3.0.0",
+        "roarr": "^2.15.3",
+        "semver": "^7.3.2",
+        "serialize-error": "^7.0.1"
+      },
+      "engines": {
+        "node": ">=10.0"
+      }
+    },
+    "node_modules/global-agent/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/global-modules": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
+      "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
+      "dev": true,
+      "dependencies": {
+        "global-prefix": "^1.0.1",
+        "is-windows": "^1.0.1",
+        "resolve-dir": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/global-prefix": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz",
+      "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=",
+      "dev": true,
+      "dependencies": {
+        "expand-tilde": "^2.0.2",
+        "homedir-polyfill": "^1.0.1",
+        "ini": "^1.3.4",
+        "is-windows": "^1.0.1",
+        "which": "^1.2.14"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/global-prefix/node_modules/which": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+      "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+      "dev": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "which": "bin/which"
+      }
+    },
+    "node_modules/global-tunnel-ng": {
+      "version": "2.7.1",
+      "resolved": "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz",
+      "integrity": "sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "encodeurl": "^1.0.2",
+        "lodash": "^4.17.10",
+        "npm-conf": "^1.1.3",
+        "tunnel": "^0.0.6"
+      },
+      "engines": {
+        "node": ">=0.10"
+      }
+    },
+    "node_modules/globalthis": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
+      "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "define-properties": "^1.1.3"
+      },
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/got": {
+      "version": "9.6.0",
+      "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz",
+      "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==",
+      "dev": true,
+      "dependencies": {
+        "@sindresorhus/is": "^0.14.0",
+        "@szmarczak/http-timer": "^1.1.2",
+        "cacheable-request": "^6.0.0",
+        "decompress-response": "^3.3.0",
+        "duplexer3": "^0.1.4",
+        "get-stream": "^4.1.0",
+        "lowercase-keys": "^1.0.1",
+        "mimic-response": "^1.0.1",
+        "p-cancelable": "^1.0.0",
+        "to-readable-stream": "^1.0.0",
+        "url-parse-lax": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8.6"
+      }
+    },
+    "node_modules/graceful-fs": {
+      "version": "4.2.10",
+      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
+      "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==",
+      "dev": true
+    },
+    "node_modules/graceful-readlink": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
+      "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
+      "dev": true
+    },
+    "node_modules/har-schema": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
+      "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/har-validator": {
+      "version": "5.1.5",
+      "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
+      "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
+      "deprecated": "this library is no longer supported",
+      "dev": true,
+      "dependencies": {
+        "ajv": "^6.12.3",
+        "har-schema": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/has": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+      "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+      "dev": true,
+      "dependencies": {
+        "function-bind": "^1.1.1"
+      },
+      "engines": {
+        "node": ">= 0.4.0"
+      }
+    },
+    "node_modules/has-flag": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+      "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/has-property-descriptors": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
+      "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "get-intrinsic": "^1.1.1"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/has-symbols": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
+      "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/has-unicode": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+      "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
+      "dev": true
+    },
+    "node_modules/homedir-polyfill": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
+      "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
+      "dev": true,
+      "dependencies": {
+        "parse-passwd": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/hosted-git-info": {
+      "version": "2.8.9",
+      "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+      "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+      "dev": true
+    },
+    "node_modules/http-cache-semantics": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
+      "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==",
+      "dev": true
+    },
+    "node_modules/http-proxy-agent": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
+      "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
+      "dev": true,
+      "dependencies": {
+        "@tootallnate/once": "1",
+        "agent-base": "6",
+        "debug": "4"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/http-signature": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
+      "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
+      "dev": true,
+      "dependencies": {
+        "assert-plus": "^1.0.0",
+        "jsprim": "^1.2.2",
+        "sshpk": "^1.7.0"
+      },
+      "engines": {
+        "node": ">=0.8",
+        "npm": ">=1.3.7"
+      }
+    },
+    "node_modules/http2-wrapper": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz",
+      "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==",
+      "dev": true,
+      "dependencies": {
+        "quick-lru": "^5.1.1",
+        "resolve-alpn": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=10.19.0"
+      }
+    },
+    "node_modules/https-proxy-agent": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+      "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+      "dev": true,
+      "dependencies": {
+        "agent-base": "6",
+        "debug": "4"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/humanize-ms": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
+      "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=",
+      "dev": true,
+      "dependencies": {
+        "ms": "^2.0.0"
+      }
+    },
+    "node_modules/iconv-lite": {
+      "version": "0.4.24",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+      "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+      "dev": true,
+      "dependencies": {
+        "safer-buffer": ">= 2.1.2 < 3"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ieee754": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+      "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ]
+    },
+    "node_modules/imurmurhash": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+      "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.19"
+      }
+    },
+    "node_modules/indent-string": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+      "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/infer-owner": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
+      "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
+      "dev": true
+    },
+    "node_modules/inflight": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+      "dev": true,
+      "dependencies": {
+        "once": "^1.3.0",
+        "wrappy": "1"
+      }
+    },
+    "node_modules/inherits": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+      "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+      "dev": true
+    },
+    "node_modules/ini": {
+      "version": "1.3.8",
+      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+      "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
+      "dev": true
+    },
+    "node_modules/inquirer": {
+      "version": "8.2.4",
+      "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz",
+      "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==",
+      "dev": true,
+      "dependencies": {
+        "ansi-escapes": "^4.2.1",
+        "chalk": "^4.1.1",
+        "cli-cursor": "^3.1.0",
+        "cli-width": "^3.0.0",
+        "external-editor": "^3.0.3",
+        "figures": "^3.0.0",
+        "lodash": "^4.17.21",
+        "mute-stream": "0.0.8",
+        "ora": "^5.4.1",
+        "run-async": "^2.4.0",
+        "rxjs": "^7.5.5",
+        "string-width": "^4.1.0",
+        "strip-ansi": "^6.0.0",
+        "through": "^2.3.6",
+        "wrap-ansi": "^7.0.0"
+      },
+      "engines": {
+        "node": ">=12.0.0"
+      }
+    },
+    "node_modules/ip": {
+      "version": "1.1.8",
+      "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz",
+      "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==",
+      "dev": true
+    },
+    "node_modules/is-arrayish": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+      "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+      "dev": true
+    },
+    "node_modules/is-core-module": {
+      "version": "2.9.0",
+      "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz",
+      "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==",
+      "dev": true,
+      "dependencies": {
+        "has": "^1.0.3"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/is-docker": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+      "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
+      "dev": true,
+      "bin": {
+        "is-docker": "cli.js"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/is-extglob": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+      "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-fullwidth-code-point": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+      "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/is-glob": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+      "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+      "dev": true,
+      "dependencies": {
+        "is-extglob": "^2.1.1"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-interactive": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
+      "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/is-lambda": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
+      "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=",
+      "dev": true
+    },
+    "node_modules/is-number": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+      "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.12.0"
+      }
+    },
+    "node_modules/is-stream": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+      "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-typedarray": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+      "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
+      "dev": true
+    },
+    "node_modules/is-unicode-supported": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
+      "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/is-windows": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+      "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/is-wsl": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+      "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
+      "dev": true,
+      "dependencies": {
+        "is-docker": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/isarray": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+      "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+      "dev": true
+    },
+    "node_modules/isbinaryfile": {
+      "version": "3.0.3",
+      "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz",
+      "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==",
+      "dev": true,
+      "dependencies": {
+        "buffer-alloc": "^1.2.0"
+      },
+      "engines": {
+        "node": ">=0.6.0"
+      }
+    },
+    "node_modules/isexe": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+      "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
+      "dev": true
+    },
+    "node_modules/isstream": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
+      "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
+      "dev": true
+    },
+    "node_modules/jsbn": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
+      "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
+      "dev": true
+    },
+    "node_modules/json-buffer": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
+      "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=",
+      "dev": true
+    },
+    "node_modules/json-schema": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
+      "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
+      "dev": true
+    },
+    "node_modules/json-schema-traverse": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+      "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+      "dev": true
+    },
+    "node_modules/json-stringify-safe": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
+      "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
+      "dev": true
+    },
+    "node_modules/jsonfile": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+      "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
+      "dev": true,
+      "optionalDependencies": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "node_modules/jsprim": {
+      "version": "1.4.2",
+      "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz",
+      "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==",
+      "dev": true,
+      "dependencies": {
+        "assert-plus": "1.0.0",
+        "extsprintf": "1.3.0",
+        "json-schema": "0.4.0",
+        "verror": "1.10.0"
+      },
+      "engines": {
+        "node": ">=0.6.0"
+      }
+    },
+    "node_modules/junk": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz",
+      "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/keyv": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz",
+      "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==",
+      "dev": true,
+      "dependencies": {
+        "json-buffer": "3.0.0"
+      }
+    },
+    "node_modules/load-json-file": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
+      "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
+      "dev": true,
+      "dependencies": {
+        "graceful-fs": "^4.1.2",
+        "parse-json": "^2.2.0",
+        "pify": "^2.0.0",
+        "strip-bom": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/load-json-file/node_modules/pify": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+      "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/locate-path": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+      "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+      "dev": true,
+      "dependencies": {
+        "p-locate": "^5.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/lodash": {
+      "version": "4.17.21",
+      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+      "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+      "dev": true
+    },
+    "node_modules/lodash._reinterpolate": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
+      "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/lodash.get": {
+      "version": "4.4.2",
+      "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+      "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=",
+      "dev": true
+    },
+    "node_modules/lodash.template": {
+      "version": "4.5.0",
+      "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
+      "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "lodash._reinterpolate": "^3.0.0",
+        "lodash.templatesettings": "^4.0.0"
+      }
+    },
+    "node_modules/lodash.templatesettings": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
+      "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "lodash._reinterpolate": "^3.0.0"
+      }
+    },
+    "node_modules/log-symbols": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
+      "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
+      "dev": true,
+      "dependencies": {
+        "chalk": "^4.1.0",
+        "is-unicode-supported": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/lowercase-keys": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
+      "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/lru-cache": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+      "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+      "dev": true,
+      "dependencies": {
+        "yallist": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/lzma-native": {
+      "version": "8.0.6",
+      "resolved": "https://registry.npmjs.org/lzma-native/-/lzma-native-8.0.6.tgz",
+      "integrity": "sha512-09xfg67mkL2Lz20PrrDeNYZxzeW7ADtpYFbwSQh9U8+76RIzx5QsJBMy8qikv3hbUPfpy6hqwxt6FcGK81g9AA==",
+      "dev": true,
+      "hasInstallScript": true,
+      "dependencies": {
+        "node-addon-api": "^3.1.0",
+        "node-gyp-build": "^4.2.1",
+        "readable-stream": "^3.6.0"
+      },
+      "bin": {
+        "lzmajs": "bin/lzmajs"
+      },
+      "engines": {
+        "node": ">=10.0.0"
+      }
+    },
+    "node_modules/lzma-native/node_modules/readable-stream": {
+      "version": "3.6.0",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+      "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+      "dev": true,
+      "dependencies": {
+        "inherits": "^2.0.3",
+        "string_decoder": "^1.1.1",
+        "util-deprecate": "^1.0.1"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/make-fetch-happen": {
+      "version": "9.1.0",
+      "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz",
+      "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==",
+      "dev": true,
+      "dependencies": {
+        "agentkeepalive": "^4.1.3",
+        "cacache": "^15.2.0",
+        "http-cache-semantics": "^4.1.0",
+        "http-proxy-agent": "^4.0.1",
+        "https-proxy-agent": "^5.0.0",
+        "is-lambda": "^1.0.1",
+        "lru-cache": "^6.0.0",
+        "minipass": "^3.1.3",
+        "minipass-collect": "^1.0.2",
+        "minipass-fetch": "^1.3.2",
+        "minipass-flush": "^1.0.5",
+        "minipass-pipeline": "^1.2.4",
+        "negotiator": "^0.6.2",
+        "promise-retry": "^2.0.1",
+        "socks-proxy-agent": "^6.0.0",
+        "ssri": "^8.0.0"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/map-age-cleaner": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz",
+      "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==",
+      "dev": true,
+      "dependencies": {
+        "p-defer": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/matcher": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz",
+      "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "escape-string-regexp": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/mem": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz",
+      "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==",
+      "dev": true,
+      "dependencies": {
+        "map-age-cleaner": "^0.1.1",
+        "mimic-fn": "^2.0.0",
+        "p-is-promise": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/merge2": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+      "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/micromatch": {
+      "version": "4.0.5",
+      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
+      "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+      "dev": true,
+      "dependencies": {
+        "braces": "^3.0.2",
+        "picomatch": "^2.3.1"
+      },
+      "engines": {
+        "node": ">=8.6"
+      }
+    },
+    "node_modules/mime-db": {
+      "version": "1.52.0",
+      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+      "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/mime-types": {
+      "version": "2.1.35",
+      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+      "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+      "dev": true,
+      "dependencies": {
+        "mime-db": "1.52.0"
+      },
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/mimic-fn": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+      "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/mimic-response": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
+      "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/minimatch": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+      "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+      "dev": true,
+      "dependencies": {
+        "brace-expansion": "^1.1.7"
+      },
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/minimist": {
+      "version": "1.2.6",
+      "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
+      "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==",
+      "dev": true
+    },
+    "node_modules/minipass": {
+      "version": "3.1.6",
+      "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz",
+      "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==",
+      "dev": true,
+      "dependencies": {
+        "yallist": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/minipass-collect": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
+      "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
+      "dev": true,
+      "dependencies": {
+        "minipass": "^3.0.0"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/minipass-fetch": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
+      "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
+      "dev": true,
+      "dependencies": {
+        "minipass": "^3.1.0",
+        "minipass-sized": "^1.0.3",
+        "minizlib": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      },
+      "optionalDependencies": {
+        "encoding": "^0.1.12"
+      }
+    },
+    "node_modules/minipass-flush": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
+      "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
+      "dev": true,
+      "dependencies": {
+        "minipass": "^3.0.0"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/minipass-pipeline": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
+      "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
+      "dev": true,
+      "dependencies": {
+        "minipass": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/minipass-sized": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
+      "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
+      "dev": true,
+      "dependencies": {
+        "minipass": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/minizlib": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+      "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+      "dev": true,
+      "dependencies": {
+        "minipass": "^3.0.0",
+        "yallist": "^4.0.0"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/mkdirp": {
+      "version": "0.5.6",
+      "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
+      "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
+      "dev": true,
+      "dependencies": {
+        "minimist": "^1.2.6"
+      },
+      "bin": {
+        "mkdirp": "bin/cmd.js"
+      }
+    },
+    "node_modules/ms": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+      "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+      "dev": true
+    },
+    "node_modules/mute-stream": {
+      "version": "0.0.8",
+      "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
+      "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
+      "dev": true
+    },
+    "node_modules/negotiator": {
+      "version": "0.6.3",
+      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+      "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.6"
+      }
+    },
+    "node_modules/nice-try": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+      "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
+      "dev": true
+    },
+    "node_modules/node-abi": {
+      "version": "3.15.0",
+      "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.15.0.tgz",
+      "integrity": "sha512-Ic6z/j6I9RLm4ov7npo1I48UQr2BEyFCqh6p7S1dhEx9jPO0GPGq/e2Rb7x7DroQrmiVMz/Bw1vJm9sPAl2nxA==",
+      "dev": true,
+      "dependencies": {
+        "semver": "^7.3.5"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/node-abi/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/node-addon-api": {
+      "version": "3.2.1",
+      "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz",
+      "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==",
+      "dev": true
+    },
+    "node_modules/node-api-version": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/node-api-version/-/node-api-version-0.1.4.tgz",
+      "integrity": "sha512-KGXihXdUChwJAOHO53bv9/vXcLmdUsZ6jIptbvYvkpKfth+r7jw44JkVxQFA3kX5nQjzjmGu1uAu/xNNLNlI5g==",
+      "dev": true,
+      "dependencies": {
+        "semver": "^7.3.5"
+      }
+    },
+    "node_modules/node-api-version/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/node-fetch": {
+      "version": "2.6.7",
+      "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
+      "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
+      "dev": true,
+      "dependencies": {
+        "whatwg-url": "^5.0.0"
+      },
+      "engines": {
+        "node": "4.x || >=6.0.0"
+      },
+      "peerDependencies": {
+        "encoding": "^0.1.0"
+      },
+      "peerDependenciesMeta": {
+        "encoding": {
+          "optional": true
+        }
+      }
+    },
+    "node_modules/node-gyp": {
+      "version": "8.4.1",
+      "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz",
+      "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==",
+      "dev": true,
+      "dependencies": {
+        "env-paths": "^2.2.0",
+        "glob": "^7.1.4",
+        "graceful-fs": "^4.2.6",
+        "make-fetch-happen": "^9.1.0",
+        "nopt": "^5.0.0",
+        "npmlog": "^6.0.0",
+        "rimraf": "^3.0.2",
+        "semver": "^7.3.5",
+        "tar": "^6.1.2",
+        "which": "^2.0.2"
+      },
+      "bin": {
+        "node-gyp": "bin/node-gyp.js"
+      },
+      "engines": {
+        "node": ">= 10.12.0"
+      }
+    },
+    "node_modules/node-gyp-build": {
+      "version": "4.4.0",
+      "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz",
+      "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==",
+      "dev": true,
+      "bin": {
+        "node-gyp-build": "bin.js",
+        "node-gyp-build-optional": "optional.js",
+        "node-gyp-build-test": "build-test.js"
+      }
+    },
+    "node_modules/node-gyp/node_modules/semver": {
+      "version": "7.3.7",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+      "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+      "dev": true,
+      "dependencies": {
+        "lru-cache": "^6.0.0"
+      },
+      "bin": {
+        "semver": "bin/semver.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/nopt": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
+      "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
+      "dev": true,
+      "dependencies": {
+        "abbrev": "1"
+      },
+      "bin": {
+        "nopt": "bin/nopt.js"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/normalize-package-data": {
+      "version": "2.5.0",
+      "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+      "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+      "dev": true,
+      "dependencies": {
+        "hosted-git-info": "^2.1.4",
+        "resolve": "^1.10.0",
+        "semver": "2 || 3 || 4 || 5",
+        "validate-npm-package-license": "^3.0.1"
+      }
+    },
+    "node_modules/normalize-package-data/node_modules/semver": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+      "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+      "dev": true,
+      "bin": {
+        "semver": "bin/semver"
+      }
+    },
+    "node_modules/normalize-url": {
+      "version": "4.5.1",
+      "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz",
+      "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/npm-conf": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz",
+      "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "config-chain": "^1.1.11",
+        "pify": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/npm-run-path": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+      "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+      "dev": true,
+      "dependencies": {
+        "path-key": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/npm-run-path/node_modules/path-key": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+      "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/npmlog": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
+      "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
+      "dev": true,
+      "dependencies": {
+        "are-we-there-yet": "^3.0.0",
+        "console-control-strings": "^1.1.0",
+        "gauge": "^4.0.3",
+        "set-blocking": "^2.0.0"
+      },
+      "engines": {
+        "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+      }
+    },
+    "node_modules/nugget": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/nugget/-/nugget-2.0.2.tgz",
+      "integrity": "sha512-A8A8+PtlH937KWXJnfct6ubGPfgHOe3lwFkkmrT5xW8+aRBnDWqSiW5NRuiVuh/k/auLGsZdu+WrIU2epL/FHg==",
+      "dev": true,
+      "dependencies": {
+        "debug": "^2.1.3",
+        "minimist": "^1.1.0",
+        "pretty-bytes": "^4.0.2",
+        "progress-stream": "^1.1.0",
+        "request": "^2.45.0",
+        "single-line-log": "^1.1.2",
+        "throttleit": "0.0.2"
+      },
+      "bin": {
+        "nugget": "bin.js"
+      }
+    },
+    "node_modules/nugget/node_modules/debug": {
+      "version": "2.6.9",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+      "dev": true,
+      "dependencies": {
+        "ms": "2.0.0"
+      }
+    },
+    "node_modules/nugget/node_modules/ms": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+      "dev": true
+    },
+    "node_modules/number-is-nan": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
+      "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/oauth-sign": {
+      "version": "0.9.0",
+      "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
+      "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
+      "dev": true,
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/object-keys": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+      "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">= 0.4"
+      }
+    },
+    "node_modules/once": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+      "dev": true,
+      "dependencies": {
+        "wrappy": "1"
+      }
+    },
+    "node_modules/onetime": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+      "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+      "dev": true,
+      "dependencies": {
+        "mimic-fn": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/open": {
+      "version": "8.4.0",
+      "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz",
+      "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==",
+      "dev": true,
+      "dependencies": {
+        "define-lazy-prop": "^2.0.0",
+        "is-docker": "^2.1.1",
+        "is-wsl": "^2.2.0"
+      },
+      "engines": {
+        "node": ">=12"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/ora": {
+      "version": "5.4.1",
+      "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz",
+      "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
+      "dev": true,
+      "dependencies": {
+        "bl": "^4.1.0",
+        "chalk": "^4.1.0",
+        "cli-cursor": "^3.1.0",
+        "cli-spinners": "^2.5.0",
+        "is-interactive": "^1.0.0",
+        "is-unicode-supported": "^0.1.0",
+        "log-symbols": "^4.1.0",
+        "strip-ansi": "^6.0.0",
+        "wcwidth": "^1.0.1"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/os-tmpdir": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
+      "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/p-cancelable": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz",
+      "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/p-defer": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz",
+      "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/p-finally": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+      "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/p-is-promise": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz",
+      "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/p-limit": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+      "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+      "dev": true,
+      "dependencies": {
+        "yocto-queue": "^0.1.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/p-locate": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+      "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+      "dev": true,
+      "dependencies": {
+        "p-limit": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/p-map": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+      "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+      "dev": true,
+      "dependencies": {
+        "aggregate-error": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/p-try": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+      "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/parse-author": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz",
+      "integrity": "sha1-00YL8d3Q367tQtp1QkLmX7aEqB8=",
+      "dev": true,
+      "dependencies": {
+        "author-regex": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/parse-json": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
+      "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
+      "dev": true,
+      "dependencies": {
+        "error-ex": "^1.2.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/parse-ms": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz",
+      "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/parse-passwd": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
+      "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/path-exists": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+      "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/path-is-absolute": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+      "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/path-key": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+      "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/path-parse": {
+      "version": "1.0.7",
+      "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+      "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+      "dev": true
+    },
+    "node_modules/path-type": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
+      "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
+      "dev": true,
+      "dependencies": {
+        "pify": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/path-type/node_modules/pify": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+      "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/pend": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
+      "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=",
+      "dev": true
+    },
+    "node_modules/performance-now": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
+      "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
+      "dev": true
+    },
+    "node_modules/picomatch": {
+      "version": "2.3.1",
+      "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+      "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+      "dev": true,
+      "engines": {
+        "node": ">=8.6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/jonschlinkert"
+      }
+    },
+    "node_modules/pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/pkg-dir": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+      "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+      "dev": true,
+      "dependencies": {
+        "find-up": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/pkg-dir/node_modules/find-up": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+      "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+      "dev": true,
+      "dependencies": {
+        "locate-path": "^5.0.0",
+        "path-exists": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/pkg-dir/node_modules/locate-path": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+      "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+      "dev": true,
+      "dependencies": {
+        "p-locate": "^4.1.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/pkg-dir/node_modules/p-limit": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+      "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+      "dev": true,
+      "dependencies": {
+        "p-try": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/pkg-dir/node_modules/p-locate": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+      "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+      "dev": true,
+      "dependencies": {
+        "p-limit": "^2.2.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/plist": {
+      "version": "3.0.5",
+      "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.5.tgz",
+      "integrity": "sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA==",
+      "dev": true,
+      "dependencies": {
+        "base64-js": "^1.5.1",
+        "xmlbuilder": "^9.0.7"
+      },
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/prepend-http": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
+      "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/pretty-bytes": {
+      "version": "4.0.2",
+      "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz",
+      "integrity": "sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/pretty-ms": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz",
+      "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==",
+      "dev": true,
+      "dependencies": {
+        "parse-ms": "^2.1.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/process-nextick-args": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+      "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+      "dev": true
+    },
+    "node_modules/progress": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+      "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.4.0"
+      }
+    },
+    "node_modules/progress-stream": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-1.2.0.tgz",
+      "integrity": "sha1-LNPP6jO6OonJwSHsM0er6asSX3c=",
+      "dev": true,
+      "dependencies": {
+        "speedometer": "~0.1.2",
+        "through2": "~0.2.3"
+      }
+    },
+    "node_modules/promise-inflight": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+      "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
+      "dev": true
+    },
+    "node_modules/promise-retry": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
+      "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
+      "dev": true,
+      "dependencies": {
+        "err-code": "^2.0.2",
+        "retry": "^0.12.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/proto-list": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
+      "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/psl": {
+      "version": "1.8.0",
+      "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
+      "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
+      "dev": true
+    },
+    "node_modules/pump": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
+      "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
+      "dev": true,
+      "dependencies": {
+        "end-of-stream": "^1.1.0",
+        "once": "^1.3.1"
+      }
+    },
+    "node_modules/punycode": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+      "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/qs": {
+      "version": "6.5.3",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz",
+      "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.6"
+      }
+    },
+    "node_modules/queue-microtask": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+      "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ]
+    },
+    "node_modules/quick-lru": {
+      "version": "5.1.1",
+      "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
+      "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/rcedit": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/rcedit/-/rcedit-3.0.1.tgz",
+      "integrity": "sha512-XM0Jv40/y4hVAqj/MO70o/IWs4uOsaSoo2mLyk3klFDW+SStLnCtzuQu+1OBTIMGlM8CvaK9ftlYCp6DJ+cMsw==",
+      "dev": true,
+      "dependencies": {
+        "cross-spawn-windows-exe": "^1.1.0"
+      },
+      "engines": {
+        "node": ">= 10.0.0"
+      }
+    },
+    "node_modules/read-pkg": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
+      "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
+      "dev": true,
+      "dependencies": {
+        "load-json-file": "^2.0.0",
+        "normalize-package-data": "^2.3.2",
+        "path-type": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/read-pkg-up": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
+      "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
+      "dev": true,
+      "dependencies": {
+        "find-up": "^2.0.0",
+        "read-pkg": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/read-pkg-up/node_modules/find-up": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+      "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+      "dev": true,
+      "dependencies": {
+        "locate-path": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/read-pkg-up/node_modules/locate-path": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+      "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+      "dev": true,
+      "dependencies": {
+        "p-locate": "^2.0.0",
+        "path-exists": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/read-pkg-up/node_modules/p-limit": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+      "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+      "dev": true,
+      "dependencies": {
+        "p-try": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/read-pkg-up/node_modules/p-locate": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+      "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+      "dev": true,
+      "dependencies": {
+        "p-limit": "^1.1.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/read-pkg-up/node_modules/p-try": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+      "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/read-pkg-up/node_modules/path-exists": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+      "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/readable-stream": {
+      "version": "2.3.7",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+      "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+      "dev": true,
+      "dependencies": {
+        "core-util-is": "~1.0.0",
+        "inherits": "~2.0.3",
+        "isarray": "~1.0.0",
+        "process-nextick-args": "~2.0.0",
+        "safe-buffer": "~5.1.1",
+        "string_decoder": "~1.1.1",
+        "util-deprecate": "~1.0.1"
+      }
+    },
+    "node_modules/request": {
+      "version": "2.88.2",
+      "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
+      "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
+      "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142",
+      "dev": true,
+      "dependencies": {
+        "aws-sign2": "~0.7.0",
+        "aws4": "^1.8.0",
+        "caseless": "~0.12.0",
+        "combined-stream": "~1.0.6",
+        "extend": "~3.0.2",
+        "forever-agent": "~0.6.1",
+        "form-data": "~2.3.2",
+        "har-validator": "~5.1.3",
+        "http-signature": "~1.2.0",
+        "is-typedarray": "~1.0.0",
+        "isstream": "~0.1.2",
+        "json-stringify-safe": "~5.0.1",
+        "mime-types": "~2.1.19",
+        "oauth-sign": "~0.9.0",
+        "performance-now": "^2.1.0",
+        "qs": "~6.5.2",
+        "safe-buffer": "^5.1.2",
+        "tough-cookie": "~2.5.0",
+        "tunnel-agent": "^0.6.0",
+        "uuid": "^3.3.2"
+      },
+      "engines": {
+        "node": ">= 6"
+      }
+    },
+    "node_modules/require-directory": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+      "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/require-main-filename": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+      "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/resolve": {
+      "version": "1.22.0",
+      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz",
+      "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==",
+      "dev": true,
+      "dependencies": {
+        "is-core-module": "^2.8.1",
+        "path-parse": "^1.0.7",
+        "supports-preserve-symlinks-flag": "^1.0.0"
+      },
+      "bin": {
+        "resolve": "bin/resolve"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/resolve-alpn": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
+      "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==",
+      "dev": true
+    },
+    "node_modules/resolve-dir": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz",
+      "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=",
+      "dev": true,
+      "dependencies": {
+        "expand-tilde": "^2.0.0",
+        "global-modules": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/resolve-package": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/resolve-package/-/resolve-package-1.0.1.tgz",
+      "integrity": "sha1-aG9wsYi9fWdfW7xCgszaBgq7nSc=",
+      "dev": true,
+      "dependencies": {
+        "get-installed-path": "^2.0.3"
+      },
+      "engines": {
+        "node": ">=4",
+        "npm": ">=2"
+      }
+    },
+    "node_modules/responselike": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz",
+      "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=",
+      "dev": true,
+      "dependencies": {
+        "lowercase-keys": "^1.0.0"
+      }
+    },
+    "node_modules/restore-cursor": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+      "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
+      "dev": true,
+      "dependencies": {
+        "onetime": "^5.1.0",
+        "signal-exit": "^3.0.2"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/retry": {
+      "version": "0.12.0",
+      "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
+      "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=",
+      "dev": true,
+      "engines": {
+        "node": ">= 4"
+      }
+    },
+    "node_modules/reusify": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+      "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+      "dev": true,
+      "engines": {
+        "iojs": ">=1.0.0",
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/rimraf": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+      "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+      "dev": true,
+      "dependencies": {
+        "glob": "^7.1.3"
+      },
+      "bin": {
+        "rimraf": "bin.js"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/isaacs"
+      }
+    },
+    "node_modules/roarr": {
+      "version": "2.15.4",
+      "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz",
+      "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "boolean": "^3.0.1",
+        "detect-node": "^2.0.4",
+        "globalthis": "^1.0.1",
+        "json-stringify-safe": "^5.0.1",
+        "semver-compare": "^1.0.0",
+        "sprintf-js": "^1.1.2"
+      },
+      "engines": {
+        "node": ">=8.0"
+      }
+    },
+    "node_modules/run-async": {
+      "version": "2.4.1",
+      "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
+      "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.12.0"
+      }
+    },
+    "node_modules/run-parallel": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+      "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+      "dev": true,
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/feross"
+        },
+        {
+          "type": "patreon",
+          "url": "https://www.patreon.com/feross"
+        },
+        {
+          "type": "consulting",
+          "url": "https://feross.org/support"
+        }
+      ],
+      "dependencies": {
+        "queue-microtask": "^1.2.2"
+      }
+    },
+    "node_modules/rxjs": {
+      "version": "7.5.5",
+      "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz",
+      "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==",
+      "dev": true,
+      "dependencies": {
+        "tslib": "^2.1.0"
+      }
+    },
+    "node_modules/safe-buffer": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+      "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+      "dev": true
+    },
+    "node_modules/safer-buffer": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+      "dev": true
+    },
+    "node_modules/semver": {
+      "version": "6.3.0",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+      "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+      "dev": true,
+      "bin": {
+        "semver": "bin/semver.js"
+      }
+    },
+    "node_modules/semver-compare": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz",
+      "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/serialize-error": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz",
+      "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "type-fest": "^0.13.1"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/set-blocking": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+      "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
+      "dev": true
+    },
+    "node_modules/shebang-command": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+      "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+      "dev": true,
+      "dependencies": {
+        "shebang-regex": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/shebang-regex": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+      "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+      "dev": true,
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/signal-exit": {
+      "version": "3.0.7",
+      "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+      "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
+      "dev": true
+    },
+    "node_modules/single-line-log": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/single-line-log/-/single-line-log-1.1.2.tgz",
+      "integrity": "sha1-wvg/Jzo+GhbtsJlWYdoO1e8DM2Q=",
+      "dev": true,
+      "dependencies": {
+        "string-width": "^1.0.1"
+      }
+    },
+    "node_modules/single-line-log/node_modules/ansi-regex": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+      "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/single-line-log/node_modules/is-fullwidth-code-point": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+      "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+      "dev": true,
+      "dependencies": {
+        "number-is-nan": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/single-line-log/node_modules/string-width": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+      "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+      "dev": true,
+      "dependencies": {
+        "code-point-at": "^1.0.0",
+        "is-fullwidth-code-point": "^1.0.0",
+        "strip-ansi": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/single-line-log/node_modules/strip-ansi": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+      "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+      "dev": true,
+      "dependencies": {
+        "ansi-regex": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/smart-buffer": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
+      "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 6.0.0",
+        "npm": ">= 3.0.0"
+      }
+    },
+    "node_modules/socks": {
+      "version": "2.6.2",
+      "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.2.tgz",
+      "integrity": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==",
+      "dev": true,
+      "dependencies": {
+        "ip": "^1.1.5",
+        "smart-buffer": "^4.2.0"
+      },
+      "engines": {
+        "node": ">= 10.13.0",
+        "npm": ">= 3.0.0"
+      }
+    },
+    "node_modules/socks-proxy-agent": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.0.tgz",
+      "integrity": "sha512-wWqJhjb32Q6GsrUqzuFkukxb/zzide5quXYcMVpIjxalDBBYy2nqKCFQ/9+Ie4dvOYSQdOk3hUlZSdzZOd3zMQ==",
+      "dev": true,
+      "dependencies": {
+        "agent-base": "^6.0.2",
+        "debug": "^4.3.3",
+        "socks": "^2.6.2"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/source-map": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+      "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/source-map-support": {
+      "version": "0.5.21",
+      "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+      "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+      "dev": true,
+      "dependencies": {
+        "buffer-from": "^1.0.0",
+        "source-map": "^0.6.0"
+      }
+    },
+    "node_modules/spdx-correct": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
+      "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
+      "dev": true,
+      "dependencies": {
+        "spdx-expression-parse": "^3.0.0",
+        "spdx-license-ids": "^3.0.0"
+      }
+    },
+    "node_modules/spdx-exceptions": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+      "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
+      "dev": true
+    },
+    "node_modules/spdx-expression-parse": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+      "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+      "dev": true,
+      "dependencies": {
+        "spdx-exceptions": "^2.1.0",
+        "spdx-license-ids": "^3.0.0"
+      }
+    },
+    "node_modules/spdx-license-ids": {
+      "version": "3.0.11",
+      "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz",
+      "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==",
+      "dev": true
+    },
+    "node_modules/speedometer": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz",
+      "integrity": "sha1-mHbb0qFp0xFUAtSObqYynIgWpQ0=",
+      "dev": true
+    },
+    "node_modules/sprintf-js": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz",
+      "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/sshpk": {
+      "version": "1.17.0",
+      "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz",
+      "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==",
+      "dev": true,
+      "dependencies": {
+        "asn1": "~0.2.3",
+        "assert-plus": "^1.0.0",
+        "bcrypt-pbkdf": "^1.0.0",
+        "dashdash": "^1.12.0",
+        "ecc-jsbn": "~0.1.1",
+        "getpass": "^0.1.1",
+        "jsbn": "~0.1.0",
+        "safer-buffer": "^2.0.2",
+        "tweetnacl": "~0.14.0"
+      },
+      "bin": {
+        "sshpk-conv": "bin/sshpk-conv",
+        "sshpk-sign": "bin/sshpk-sign",
+        "sshpk-verify": "bin/sshpk-verify"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/ssri": {
+      "version": "8.0.1",
+      "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
+      "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
+      "dev": true,
+      "dependencies": {
+        "minipass": "^3.1.1"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/string_decoder": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+      "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+      "dev": true,
+      "dependencies": {
+        "safe-buffer": "~5.1.0"
+      }
+    },
+    "node_modules/string-width": {
+      "version": "4.2.3",
+      "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+      "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+      "dev": true,
+      "dependencies": {
+        "emoji-regex": "^8.0.0",
+        "is-fullwidth-code-point": "^3.0.0",
+        "strip-ansi": "^6.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/strip-ansi": {
+      "version": "6.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+      "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+      "dev": true,
+      "dependencies": {
+        "ansi-regex": "^5.0.1"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/strip-bom": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+      "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/strip-eof": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
+      "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/strip-outer": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz",
+      "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==",
+      "dev": true,
+      "dependencies": {
+        "escape-string-regexp": "^1.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/strip-outer/node_modules/escape-string-regexp": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/sudo-prompt": {
+      "version": "9.2.1",
+      "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz",
+      "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==",
+      "dev": true
+    },
+    "node_modules/sumchecker": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz",
+      "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==",
+      "dev": true,
+      "dependencies": {
+        "debug": "^4.1.0"
+      },
+      "engines": {
+        "node": ">= 8.0"
+      }
+    },
+    "node_modules/supports-color": {
+      "version": "7.2.0",
+      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+      "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+      "dev": true,
+      "dependencies": {
+        "has-flag": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/supports-preserve-symlinks-flag": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+      "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+      "dev": true,
+      "engines": {
+        "node": ">= 0.4"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/ljharb"
+      }
+    },
+    "node_modules/tar": {
+      "version": "6.1.11",
+      "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz",
+      "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==",
+      "dev": true,
+      "dependencies": {
+        "chownr": "^2.0.0",
+        "fs-minipass": "^2.0.0",
+        "minipass": "^3.0.0",
+        "minizlib": "^2.1.1",
+        "mkdirp": "^1.0.3",
+        "yallist": "^4.0.0"
+      },
+      "engines": {
+        "node": ">= 10"
+      }
+    },
+    "node_modules/tar/node_modules/mkdirp": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+      "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+      "dev": true,
+      "bin": {
+        "mkdirp": "bin/cmd.js"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/temp": {
+      "version": "0.9.4",
+      "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz",
+      "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "mkdirp": "^0.5.1",
+        "rimraf": "~2.6.2"
+      },
+      "engines": {
+        "node": ">=6.0.0"
+      }
+    },
+    "node_modules/temp/node_modules/rimraf": {
+      "version": "2.6.3",
+      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+      "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "glob": "^7.1.3"
+      },
+      "bin": {
+        "rimraf": "bin.js"
+      }
+    },
+    "node_modules/throttleit": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-0.0.2.tgz",
+      "integrity": "sha1-z+34jmDADdlpe2H90qg0OptoDq8=",
+      "dev": true
+    },
+    "node_modules/through": {
+      "version": "2.3.8",
+      "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+      "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
+      "dev": true
+    },
+    "node_modules/through2": {
+      "version": "0.2.3",
+      "resolved": "https://registry.npmjs.org/through2/-/through2-0.2.3.tgz",
+      "integrity": "sha1-6zKE2k6jEbbMis42U3SKUqvyWj8=",
+      "dev": true,
+      "dependencies": {
+        "readable-stream": "~1.1.9",
+        "xtend": "~2.1.1"
+      }
+    },
+    "node_modules/through2/node_modules/isarray": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+      "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
+      "dev": true
+    },
+    "node_modules/through2/node_modules/readable-stream": {
+      "version": "1.1.14",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
+      "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
+      "dev": true,
+      "dependencies": {
+        "core-util-is": "~1.0.0",
+        "inherits": "~2.0.1",
+        "isarray": "0.0.1",
+        "string_decoder": "~0.10.x"
+      }
+    },
+    "node_modules/through2/node_modules/string_decoder": {
+      "version": "0.10.31",
+      "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+      "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
+      "dev": true
+    },
+    "node_modules/tiny-each-async": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/tiny-each-async/-/tiny-each-async-2.0.3.tgz",
+      "integrity": "sha1-jru/1tYpXxNwAD+7NxYq/loKUdE=",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/tmp": {
+      "version": "0.0.33",
+      "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+      "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+      "dev": true,
+      "dependencies": {
+        "os-tmpdir": "~1.0.2"
+      },
+      "engines": {
+        "node": ">=0.6.0"
+      }
+    },
+    "node_modules/tmp-promise": {
+      "version": "3.0.3",
+      "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz",
+      "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "tmp": "^0.2.0"
+      }
+    },
+    "node_modules/tmp-promise/node_modules/tmp": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz",
+      "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==",
+      "dev": true,
+      "optional": true,
+      "dependencies": {
+        "rimraf": "^3.0.0"
+      },
+      "engines": {
+        "node": ">=8.17.0"
+      }
+    },
+    "node_modules/to-readable-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz",
+      "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==",
+      "dev": true,
+      "engines": {
+        "node": ">=6"
+      }
+    },
+    "node_modules/to-regex-range": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+      "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+      "dev": true,
+      "dependencies": {
+        "is-number": "^7.0.0"
+      },
+      "engines": {
+        "node": ">=8.0"
+      }
+    },
+    "node_modules/tough-cookie": {
+      "version": "2.5.0",
+      "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
+      "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
+      "dev": true,
+      "dependencies": {
+        "psl": "^1.1.28",
+        "punycode": "^2.1.1"
+      },
+      "engines": {
+        "node": ">=0.8"
+      }
+    },
+    "node_modules/tr46": {
+      "version": "0.0.3",
+      "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+      "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=",
+      "dev": true
+    },
+    "node_modules/trim-repeated": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
+      "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=",
+      "dev": true,
+      "dependencies": {
+        "escape-string-regexp": "^1.0.2"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/trim-repeated/node_modules/escape-string-regexp": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.8.0"
+      }
+    },
+    "node_modules/tslib": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
+      "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==",
+      "dev": true
+    },
+    "node_modules/tunnel": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
+      "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=0.6.11 <=0.7.0 || >=0.7.3"
+      }
+    },
+    "node_modules/tunnel-agent": {
+      "version": "0.6.0",
+      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+      "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+      "dev": true,
+      "dependencies": {
+        "safe-buffer": "^5.0.1"
+      },
+      "engines": {
+        "node": "*"
+      }
+    },
+    "node_modules/tweetnacl": {
+      "version": "0.14.5",
+      "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
+      "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
+      "dev": true
+    },
+    "node_modules/type-fest": {
+      "version": "0.13.1",
+      "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz",
+      "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/typedarray": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+      "dev": true
+    },
+    "node_modules/unique-filename": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
+      "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
+      "dev": true,
+      "dependencies": {
+        "unique-slug": "^2.0.0"
+      }
+    },
+    "node_modules/unique-slug": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
+      "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
+      "dev": true,
+      "dependencies": {
+        "imurmurhash": "^0.1.4"
+      }
+    },
+    "node_modules/universalify": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+      "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+      "dev": true,
+      "engines": {
+        "node": ">= 4.0.0"
+      }
+    },
+    "node_modules/uri-js": {
+      "version": "4.4.1",
+      "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+      "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+      "dev": true,
+      "dependencies": {
+        "punycode": "^2.1.0"
+      }
+    },
+    "node_modules/url-parse-lax": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz",
+      "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=",
+      "dev": true,
+      "dependencies": {
+        "prepend-http": "^2.0.0"
+      },
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/username": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/username/-/username-5.1.0.tgz",
+      "integrity": "sha512-PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg==",
+      "dev": true,
+      "dependencies": {
+        "execa": "^1.0.0",
+        "mem": "^4.3.0"
+      },
+      "engines": {
+        "node": ">=8"
+      }
+    },
+    "node_modules/util-deprecate": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
+      "dev": true
+    },
+    "node_modules/uuid": {
+      "version": "3.4.0",
+      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+      "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+      "deprecated": "Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.",
+      "dev": true,
+      "bin": {
+        "uuid": "bin/uuid"
+      }
+    },
+    "node_modules/validate-npm-package-license": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+      "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+      "dev": true,
+      "dependencies": {
+        "spdx-correct": "^3.0.0",
+        "spdx-expression-parse": "^3.0.0"
+      }
+    },
+    "node_modules/verror": {
+      "version": "1.10.0",
+      "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
+      "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
+      "dev": true,
+      "engines": [
+        "node >=0.6.0"
+      ],
+      "dependencies": {
+        "assert-plus": "^1.0.0",
+        "core-util-is": "1.0.2",
+        "extsprintf": "^1.2.0"
+      }
+    },
+    "node_modules/verror/node_modules/core-util-is": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+      "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
+      "dev": true
+    },
+    "node_modules/wcwidth": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+      "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
+      "dev": true,
+      "dependencies": {
+        "defaults": "^1.0.3"
+      }
+    },
+    "node_modules/webidl-conversions": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+      "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=",
+      "dev": true
+    },
+    "node_modules/whatwg-url": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+      "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=",
+      "dev": true,
+      "dependencies": {
+        "tr46": "~0.0.3",
+        "webidl-conversions": "^3.0.0"
+      }
+    },
+    "node_modules/which": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+      "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+      "dev": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "node-which": "bin/node-which"
+      },
+      "engines": {
+        "node": ">= 8"
+      }
+    },
+    "node_modules/which-module": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+      "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
+      "dev": true,
+      "optional": true
+    },
+    "node_modules/wide-align": {
+      "version": "1.1.5",
+      "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+      "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
+      "dev": true,
+      "dependencies": {
+        "string-width": "^1.0.2 || 2 || 3 || 4"
+      }
+    },
+    "node_modules/word-wrap": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+      "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+      "dev": true,
+      "optional": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/wrap-ansi": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+      "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+      "dev": true,
+      "dependencies": {
+        "ansi-styles": "^4.0.0",
+        "string-width": "^4.1.0",
+        "strip-ansi": "^6.0.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+      }
+    },
+    "node_modules/wrappy": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
+      "dev": true
+    },
+    "node_modules/xmlbuilder": {
+      "version": "9.0.7",
+      "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz",
+      "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=",
+      "dev": true,
+      "engines": {
+        "node": ">=4.0"
+      }
+    },
+    "node_modules/xtend": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz",
+      "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=",
+      "dev": true,
+      "dependencies": {
+        "object-keys": "~0.4.0"
+      },
+      "engines": {
+        "node": ">=0.4"
+      }
+    },
+    "node_modules/xtend/node_modules/object-keys": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz",
+      "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=",
+      "dev": true
+    },
+    "node_modules/y18n": {
+      "version": "5.0.8",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+      "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/yallist": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+      "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+      "dev": true
+    },
+    "node_modules/yargs": {
+      "version": "17.5.1",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz",
+      "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==",
+      "dev": true,
+      "dependencies": {
+        "cliui": "^7.0.2",
+        "escalade": "^3.1.1",
+        "get-caller-file": "^2.0.5",
+        "require-directory": "^2.1.1",
+        "string-width": "^4.2.3",
+        "y18n": "^5.0.5",
+        "yargs-parser": "^21.0.0"
+      },
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/yargs-parser": {
+      "version": "20.2.9",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+      "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/yargs/node_modules/yargs-parser": {
+      "version": "21.0.1",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz",
+      "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==",
+      "dev": true,
+      "engines": {
+        "node": ">=12"
+      }
+    },
+    "node_modules/yarn-or-npm": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/yarn-or-npm/-/yarn-or-npm-3.0.1.tgz",
+      "integrity": "sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ==",
+      "dev": true,
+      "dependencies": {
+        "cross-spawn": "^6.0.5",
+        "pkg-dir": "^4.2.0"
+      },
+      "bin": {
+        "yarn-or-npm": "bin/index.js",
+        "yon": "bin/index.js"
+      },
+      "engines": {
+        "node": ">=8.6.0"
+      }
+    },
+    "node_modules/yarn-or-npm/node_modules/cross-spawn": {
+      "version": "6.0.5",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+      "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+      "dev": true,
+      "dependencies": {
+        "nice-try": "^1.0.4",
+        "path-key": "^2.0.1",
+        "semver": "^5.5.0",
+        "shebang-command": "^1.2.0",
+        "which": "^1.2.9"
+      },
+      "engines": {
+        "node": ">=4.8"
+      }
+    },
+    "node_modules/yarn-or-npm/node_modules/path-key": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+      "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+      "dev": true,
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/yarn-or-npm/node_modules/semver": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+      "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+      "dev": true,
+      "bin": {
+        "semver": "bin/semver"
+      }
+    },
+    "node_modules/yarn-or-npm/node_modules/shebang-command": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+      "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+      "dev": true,
+      "dependencies": {
+        "shebang-regex": "^1.0.0"
+      },
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/yarn-or-npm/node_modules/shebang-regex": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+      "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+      "dev": true,
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/yarn-or-npm/node_modules/which": {
+      "version": "1.3.1",
+      "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+      "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+      "dev": true,
+      "dependencies": {
+        "isexe": "^2.0.0"
+      },
+      "bin": {
+        "which": "bin/which"
+      }
+    },
+    "node_modules/yauzl": {
+      "version": "2.10.0",
+      "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
+      "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=",
+      "dev": true,
+      "dependencies": {
+        "buffer-crc32": "~0.2.3",
+        "fd-slicer": "~1.1.0"
+      }
+    },
+    "node_modules/yocto-queue": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+      "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+      "dev": true,
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    }
+  },
+  "dependencies": {
+    "@electron-forge/async-ora": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.63.tgz",
+      "integrity": "sha512-e1BbeUV20yWZWeRJ3LDLcloPPgHwTXV1wAJXpAdDbmTmcRyAGx9iVx2Qyh6t878c7zX36XXlqfCIOvODsgiuOQ==",
+      "dev": true,
+      "requires": {
+        "chalk": "^4.0.0",
+        "debug": "^4.3.1",
+        "log-symbols": "^4.0.0",
+        "ora": "^5.0.0",
+        "pretty-ms": "^7.0.0"
+      }
+    },
+    "@electron-forge/cli": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.63.tgz",
+      "integrity": "sha512-I2B/hX16IDbuc2ip6JjAxrTF8XSQfuoIkb/EoqzEluPrdCx6VTzEahOQlUH+CvPohpwD/LDsH4Usd9/krKlkfg==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/core": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron/get": "^1.9.0",
+        "chalk": "^4.0.0",
+        "commander": "^4.1.1",
+        "debug": "^4.3.1",
+        "fs-extra": "^10.0.0",
+        "inquirer": "^8.0.0",
+        "semver": "^7.2.1"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/core": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.63.tgz",
+      "integrity": "sha512-NuiWRXUfpv6/PwP8AgPxcmRPiWvQMfllTHz163wmBWz8UBclzhu7Brpu6dwmszAJG68erW15ym+cUlpvGDEltg==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/installer-base": "6.0.0-beta.63",
+        "@electron-forge/installer-deb": "6.0.0-beta.63",
+        "@electron-forge/installer-dmg": "6.0.0-beta.63",
+        "@electron-forge/installer-exe": "6.0.0-beta.63",
+        "@electron-forge/installer-rpm": "6.0.0-beta.63",
+        "@electron-forge/installer-zip": "6.0.0-beta.63",
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/plugin-base": "6.0.0-beta.63",
+        "@electron-forge/publisher-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron-forge/template-base": "6.0.0-beta.63",
+        "@electron-forge/template-typescript": "6.0.0-beta.63",
+        "@electron-forge/template-typescript-webpack": "6.0.0-beta.63",
+        "@electron-forge/template-webpack": "6.0.0-beta.63",
+        "@electron/get": "^1.9.0",
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "chalk": "^4.0.0",
+        "debug": "^4.3.1",
+        "electron-packager": "^15.4.0",
+        "electron-rebuild": "^3.2.6",
+        "fast-glob": "^3.2.7",
+        "find-up": "^5.0.0",
+        "fs-extra": "^10.0.0",
+        "lodash": "^4.17.20",
+        "log-symbols": "^4.0.0",
+        "node-fetch": "^2.6.0",
+        "nugget": "^2.0.1",
+        "resolve-package": "^1.0.1",
+        "semver": "^7.2.1",
+        "source-map-support": "^0.5.13",
+        "sudo-prompt": "^9.1.1",
+        "username": "^5.1.0",
+        "yarn-or-npm": "^3.0.1"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/installer-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-y4SKJZaxE8lnfwicWuAiUZBpBY6UB/mE/dA+w6uigKEffZzRPbrbBUIuknII6wEaFnnScmCrQaBRjxy+zsEihQ==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63"
+      }
+    },
+    "@electron-forge/installer-darwin": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.63.tgz",
+      "integrity": "sha512-LQE6UKPP7tJ+Ki3tPzYUIBRAAzEpalqkz8zYUh+2pS/nk9w2BgQeOJ84NzWUfoeLWZnsWtjp8kox8xTS8/BsSQ==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/installer-base": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0",
+        "sudo-prompt": "^9.1.1"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/installer-deb": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.63.tgz",
+      "integrity": "sha512-gvjCXdGXBxC/O8QuwNHKsLIlfOwVc9y/e5pURcuFRvPf7Ibw7e53w3pfR2pquWHNzAccrw8P5WBEuPSeDPBlLw==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/installer-linux": "6.0.0-beta.63"
+      }
+    },
+    "@electron-forge/installer-dmg": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.63.tgz",
+      "integrity": "sha512-o+Zd2CmpoMQOk9SfuUPIoQ4GONVNHdlmI4mMIJ22OrLQnZJYAdsQUFO87jtxmJuippTpEbnqaKc9yl6mLh89TQ==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/installer-darwin": "6.0.0-beta.63",
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "debug": "^4.3.1",
+        "fs-extra": "^10.0.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/installer-exe": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.63.tgz",
+      "integrity": "sha512-HhogUMTTgOXTEMQE+A20USamuAcnClSSWzlInzVQ2cGT5AdZio6zqNJ/et7zPx7Jz71gmJ/cfhNstzc/ew1IAA==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/installer-base": "6.0.0-beta.63",
+        "open": "^8.1.0"
+      }
+    },
+    "@electron-forge/installer-linux": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.63.tgz",
+      "integrity": "sha512-yC2wYQ3uXGnvWEG4AdjSmas5qaXXtXIoxO6/cXJrywMT9ujWlp2GB1i+I5xrFCusgbjdvdzJ3JhLRmIAKpW6ZA==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/installer-base": "6.0.0-beta.63",
+        "sudo-prompt": "^9.1.1"
+      }
+    },
+    "@electron-forge/installer-rpm": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.63.tgz",
+      "integrity": "sha512-4p+zDInl6sMnx1jdIcRSXgRAGFSwtcBPBStAlVuxPMefM8ElBPhskUyHrk33TqMZUdzbr+vYA+pQGj/6jlET4A==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/installer-linux": "6.0.0-beta.63"
+      }
+    },
+    "@electron-forge/installer-zip": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.63.tgz",
+      "integrity": "sha512-ZORm3jVvswvKSv+iuufTVXwIM/OOtBSQPeAay8hVubf6MudWBdntWv1Xg/BAUAcdRbAH/EIbMv83LZvmt7cufw==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/installer-darwin": "6.0.0-beta.63",
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "fs-extra": "^10.0.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/maker-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-0Fh6OOjS/1sXIGReKgU5NCMf8ZUyaCUSjd190oUNaX8OSxGDbHrbWO3CgIbsAOsxRnxzhYY1UtPo6VkexjCQBA==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0",
+        "which": "^2.0.2"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/maker-deb": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-deb/-/maker-deb-6.0.0-beta.63.tgz",
+      "integrity": "sha512-6U4SQ9qFqd0UPCTfJU6358ifxnLvMxJmwyy3Z/4lZlYIfL2112gsQRyvlv7UcFXamw+1CZ9n9SY3f/K50susEQ==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "electron-installer-debian": "^3.0.0"
+      }
+    },
+    "@electron-forge/maker-rpm": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-rpm/-/maker-rpm-6.0.0-beta.63.tgz",
+      "integrity": "sha512-htKNsA3/7nOd5PL6jjdrYCcSXrrIj43aJyOfIuFHswFpjFFmYEgsDCrN8lKZH5y1qdXQefaGOc9MapuBC0GO+w==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "electron-installer-redhat": "^3.2.0"
+      }
+    },
+    "@electron-forge/maker-squirrel": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-squirrel/-/maker-squirrel-6.0.0-beta.63.tgz",
+      "integrity": "sha512-18eLRQmMZ6zBcI1Jhuqvhm50bmmatRCbyOUHTaIbhVf1M6ksq34xXXVWKUGlqDiCNLLLNzVw5MIb9O04eUdfIg==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "electron-winstaller": "^5.0.0",
+        "fs-extra": "^10.0.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/maker-zip": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/maker-zip/-/maker-zip-6.0.0-beta.63.tgz",
+      "integrity": "sha512-tXNX58ly2TYj0Z7G9bKP3FbEHLfeNv+lJgmlDBwP5Uh4yG0d/dxIBUzP5Dv+pIjsH/l3K3dVfCCM3fc4q+u3Mg==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/maker-base": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "cross-zip": "^4.0.0",
+        "fs-extra": "^10.0.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/plugin-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-K9nyGRI9NY2kax7aS/1eWxGrOSwNO3JnmbfvFQf5I0Yl/HKClrfGJq4o3q4N9lf55arPRJBROP8+rHJ115VCrA==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/shared-types": "6.0.0-beta.63"
+      }
+    },
+    "@electron-forge/publisher-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-ag+/e6eqM6k1jxUhXg8618IbUa1IsF8OcbZtjcLSZSp/ZEGLAlZ3IpfIrk5C9cRUdibhDJyT6oFLfbG7KUhpRg==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/shared-types": "6.0.0-beta.63"
+      }
+    },
+    "@electron-forge/shared-types": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.63.tgz",
+      "integrity": "sha512-ayw8IBtHKZ1oIN3y3t3Jm80TTvstvKrPASCXMEJ/fh4gHah8pUmDFZEvyAsGgy/XFHqsjlpTmD2hdOtQqCRpMQ==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "electron-packager": "^15.4.0",
+        "electron-rebuild": "^3.2.6",
+        "ora": "^5.0.0"
+      }
+    },
+    "@electron-forge/template-base": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.63.tgz",
+      "integrity": "sha512-u1rPlrc8bqajkiKe2tmGROL9/o0xx8OzMBHsT7i2+oAFPicSZoyrELCxx9htCeLgUf0iR0K0EzLsFjdyRjTBkg==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "debug": "^4.3.1",
+        "fs-extra": "^10.0.0",
+        "username": "^5.1.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/template-typescript": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.63.tgz",
+      "integrity": "sha512-npFOyak+F+p086GoSifCWwhBxRSJqzzvEwztnONpbjp7BasvtWUyOVpXyyzvt7GaawjRg5Gx/NUgVi5Oi9BIfg==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron-forge/template-base": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/template-typescript-webpack": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.63.tgz",
+      "integrity": "sha512-8S3GW2MRmYF6BsgozCm0CPqAuqaK48MZvJJ3v3XbO1tWPtz4vvw21XxQeOqRMpECdNbqnRBtil4QxVditEx3Kw==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron-forge/template-base": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron-forge/template-webpack": {
+      "version": "6.0.0-beta.63",
+      "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.63.tgz",
+      "integrity": "sha512-CE5zjnyfmHlapwQSJ54kUeTNsvhx/7HAjvfMXpE689LxlFnr0VhiTxuc5kwEetPcxsXhei7IBy/PdJ41v4dswA==",
+      "dev": true,
+      "requires": {
+        "@electron-forge/async-ora": "6.0.0-beta.63",
+        "@electron-forge/shared-types": "6.0.0-beta.63",
+        "@electron-forge/template-base": "6.0.0-beta.63",
+        "fs-extra": "^10.0.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@electron/get": {
+      "version": "1.14.1",
+      "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.14.1.tgz",
+      "integrity": "sha512-BrZYyL/6m0ZXz/lDxy/nlVhQz+WF+iPS6qXolEU8atw7h6v1aYkjwJZ63m+bJMBTxDE66X+r2tPS4a/8C82sZw==",
+      "dev": true,
+      "requires": {
+        "debug": "^4.1.1",
+        "env-paths": "^2.2.0",
+        "fs-extra": "^8.1.0",
+        "global-agent": "^3.0.0",
+        "global-tunnel-ng": "^2.7.1",
+        "got": "^9.6.0",
+        "progress": "^2.0.3",
+        "semver": "^6.2.0",
+        "sumchecker": "^3.0.1"
+      }
+    },
+    "@electron/universal": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.2.1.tgz",
+      "integrity": "sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ==",
+      "dev": true,
+      "requires": {
+        "@malept/cross-spawn-promise": "^1.1.0",
+        "asar": "^3.1.0",
+        "debug": "^4.3.1",
+        "dir-compare": "^2.4.0",
+        "fs-extra": "^9.0.1",
+        "minimatch": "^3.0.4",
+        "plist": "^3.0.4"
+      },
+      "dependencies": {
+        "@malept/cross-spawn-promise": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+          "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+          "dev": true,
+          "requires": {
+            "cross-spawn": "^7.0.1"
+          }
+        },
+        "fs-extra": {
+          "version": "9.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+          "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+          "dev": true,
+          "requires": {
+            "at-least-node": "^1.0.0",
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "@gar/promisify": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
+      "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
+      "dev": true
+    },
+    "@malept/cross-spawn-promise": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz",
+      "integrity": "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==",
+      "dev": true,
+      "requires": {
+        "cross-spawn": "^7.0.1"
+      }
+    },
+    "@nodelib/fs.scandir": {
+      "version": "2.1.5",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+      "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+      "dev": true,
+      "requires": {
+        "@nodelib/fs.stat": "2.0.5",
+        "run-parallel": "^1.1.9"
+      }
+    },
+    "@nodelib/fs.stat": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+      "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+      "dev": true
+    },
+    "@nodelib/fs.walk": {
+      "version": "1.2.8",
+      "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+      "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+      "dev": true,
+      "requires": {
+        "@nodelib/fs.scandir": "2.1.5",
+        "fastq": "^1.6.0"
+      }
+    },
+    "@npmcli/fs": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz",
+      "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
+      "dev": true,
+      "requires": {
+        "@gar/promisify": "^1.0.1",
+        "semver": "^7.3.5"
+      },
+      "dependencies": {
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        }
+      }
+    },
+    "@npmcli/move-file": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
+      "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
+      "dev": true,
+      "requires": {
+        "mkdirp": "^1.0.4",
+        "rimraf": "^3.0.2"
+      },
+      "dependencies": {
+        "mkdirp": {
+          "version": "1.0.4",
+          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+          "dev": true
+        }
+      }
+    },
+    "@sindresorhus/is": {
+      "version": "0.14.0",
+      "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
+      "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==",
+      "dev": true
+    },
+    "@szmarczak/http-timer": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
+      "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
+      "dev": true,
+      "requires": {
+        "defer-to-connect": "^1.0.1"
+      }
+    },
+    "@tootallnate/once": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
+      "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
+      "dev": true
+    },
+    "@types/cacheable-request": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.2.tgz",
+      "integrity": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==",
+      "dev": true,
+      "requires": {
+        "@types/http-cache-semantics": "*",
+        "@types/keyv": "*",
+        "@types/node": "*",
+        "@types/responselike": "*"
+      }
+    },
+    "@types/fs-extra": {
+      "version": "9.0.13",
+      "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz",
+      "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "@types/node": "*"
+      }
+    },
+    "@types/glob": {
+      "version": "7.2.0",
+      "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
+      "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "@types/minimatch": "*",
+        "@types/node": "*"
+      }
+    },
+    "@types/http-cache-semantics": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz",
+      "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==",
+      "dev": true
+    },
+    "@types/json-buffer": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/@types/json-buffer/-/json-buffer-3.0.0.tgz",
+      "integrity": "sha512-3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ==",
+      "dev": true
+    },
+    "@types/keyv": {
+      "version": "3.1.4",
+      "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz",
+      "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==",
+      "dev": true,
+      "requires": {
+        "@types/node": "*"
+      }
+    },
+    "@types/minimatch": {
+      "version": "3.0.5",
+      "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz",
+      "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==",
+      "dev": true,
+      "optional": true
+    },
+    "@types/node": {
+      "version": "16.11.36",
+      "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.36.tgz",
+      "integrity": "sha512-FR5QJe+TaoZ2GsMHkjuwoNabr+UrJNRr2HNOo+r/7vhcuntM6Ee/pRPOnRhhL2XE9OOvX9VLEq+BcXl3VjNoWA==",
+      "dev": true
+    },
+    "@types/responselike": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
+      "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
+      "dev": true,
+      "requires": {
+        "@types/node": "*"
+      }
+    },
+    "@types/yauzl": {
+      "version": "2.10.0",
+      "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz",
+      "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "@types/node": "*"
+      }
+    },
+    "abbrev": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+      "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
+      "dev": true
+    },
+    "agent-base": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+      "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+      "dev": true,
+      "requires": {
+        "debug": "4"
+      }
+    },
+    "agentkeepalive": {
+      "version": "4.2.1",
+      "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz",
+      "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==",
+      "dev": true,
+      "requires": {
+        "debug": "^4.1.0",
+        "depd": "^1.1.2",
+        "humanize-ms": "^1.2.1"
+      }
+    },
+    "aggregate-error": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
+      "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
+      "dev": true,
+      "requires": {
+        "clean-stack": "^2.0.0",
+        "indent-string": "^4.0.0"
+      }
+    },
+    "ajv": {
+      "version": "6.12.6",
+      "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+      "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+      "dev": true,
+      "requires": {
+        "fast-deep-equal": "^3.1.1",
+        "fast-json-stable-stringify": "^2.0.0",
+        "json-schema-traverse": "^0.4.1",
+        "uri-js": "^4.2.2"
+      }
+    },
+    "ansi-escapes": {
+      "version": "4.3.2",
+      "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+      "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+      "dev": true,
+      "requires": {
+        "type-fest": "^0.21.3"
+      },
+      "dependencies": {
+        "type-fest": {
+          "version": "0.21.3",
+          "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+          "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+          "dev": true
+        }
+      }
+    },
+    "ansi-regex": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+      "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+      "dev": true
+    },
+    "ansi-styles": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+      "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+      "dev": true,
+      "requires": {
+        "color-convert": "^2.0.1"
+      }
+    },
+    "aproba": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+      "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
+      "dev": true
+    },
+    "are-we-there-yet": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.0.tgz",
+      "integrity": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==",
+      "dev": true,
+      "requires": {
+        "delegates": "^1.0.0",
+        "readable-stream": "^3.6.0"
+      },
+      "dependencies": {
+        "readable-stream": {
+          "version": "3.6.0",
+          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+          "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+          "dev": true,
+          "requires": {
+            "inherits": "^2.0.3",
+            "string_decoder": "^1.1.1",
+            "util-deprecate": "^1.0.1"
+          }
+        }
+      }
+    },
+    "asar": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/asar/-/asar-3.1.0.tgz",
+      "integrity": "sha512-vyxPxP5arcAqN4F/ebHd/HhwnAiZtwhglvdmc7BR2f0ywbVNTOpSeyhLDbGXtE/y58hv1oC75TaNIXutnsOZsQ==",
+      "dev": true,
+      "requires": {
+        "@types/glob": "^7.1.1",
+        "chromium-pickle-js": "^0.2.0",
+        "commander": "^5.0.0",
+        "glob": "^7.1.6",
+        "minimatch": "^3.0.4"
+      },
+      "dependencies": {
+        "commander": {
+          "version": "5.1.0",
+          "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
+          "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
+          "dev": true
+        }
+      }
+    },
+    "asn1": {
+      "version": "0.2.6",
+      "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
+      "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
+      "dev": true,
+      "requires": {
+        "safer-buffer": "~2.1.0"
+      }
+    },
+    "assert-plus": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+      "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
+      "dev": true
+    },
+    "asynckit": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+      "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
+      "dev": true
+    },
+    "at-least-node": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
+      "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
+      "dev": true
+    },
+    "author-regex": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/author-regex/-/author-regex-1.0.0.tgz",
+      "integrity": "sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==",
+      "dev": true
+    },
+    "aws-sign2": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
+      "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
+      "dev": true
+    },
+    "aws4": {
+      "version": "1.11.0",
+      "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz",
+      "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==",
+      "dev": true
+    },
+    "balanced-match": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+      "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+      "dev": true
+    },
+    "base64-js": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+      "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+      "dev": true
+    },
+    "bcrypt-pbkdf": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+      "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
+      "dev": true,
+      "requires": {
+        "tweetnacl": "^0.14.3"
+      }
+    },
+    "bl": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
+      "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+      "dev": true,
+      "requires": {
+        "buffer": "^5.5.0",
+        "inherits": "^2.0.4",
+        "readable-stream": "^3.4.0"
+      },
+      "dependencies": {
+        "readable-stream": {
+          "version": "3.6.0",
+          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+          "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+          "dev": true,
+          "requires": {
+            "inherits": "^2.0.3",
+            "string_decoder": "^1.1.1",
+            "util-deprecate": "^1.0.1"
+          }
+        }
+      }
+    },
+    "bluebird": {
+      "version": "3.7.2",
+      "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
+      "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
+      "dev": true
+    },
+    "boolean": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz",
+      "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==",
+      "dev": true,
+      "optional": true
+    },
+    "brace-expansion": {
+      "version": "1.1.11",
+      "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+      "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+      "dev": true,
+      "requires": {
+        "balanced-match": "^1.0.0",
+        "concat-map": "0.0.1"
+      }
+    },
+    "braces": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+      "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+      "dev": true,
+      "requires": {
+        "fill-range": "^7.0.1"
+      }
+    },
+    "buffer": {
+      "version": "5.7.1",
+      "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+      "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+      "dev": true,
+      "requires": {
+        "base64-js": "^1.3.1",
+        "ieee754": "^1.1.13"
+      }
+    },
+    "buffer-alloc": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
+      "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==",
+      "dev": true,
+      "requires": {
+        "buffer-alloc-unsafe": "^1.1.0",
+        "buffer-fill": "^1.0.0"
+      }
+    },
+    "buffer-alloc-unsafe": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz",
+      "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==",
+      "dev": true
+    },
+    "buffer-crc32": {
+      "version": "0.2.13",
+      "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
+      "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
+      "dev": true
+    },
+    "buffer-equal": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
+      "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==",
+      "dev": true
+    },
+    "buffer-fill": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
+      "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==",
+      "dev": true
+    },
+    "buffer-from": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+      "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+      "dev": true
+    },
+    "cacache": {
+      "version": "15.3.0",
+      "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz",
+      "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==",
+      "dev": true,
+      "requires": {
+        "@npmcli/fs": "^1.0.0",
+        "@npmcli/move-file": "^1.0.1",
+        "chownr": "^2.0.0",
+        "fs-minipass": "^2.0.0",
+        "glob": "^7.1.4",
+        "infer-owner": "^1.0.4",
+        "lru-cache": "^6.0.0",
+        "minipass": "^3.1.1",
+        "minipass-collect": "^1.0.2",
+        "minipass-flush": "^1.0.5",
+        "minipass-pipeline": "^1.2.2",
+        "mkdirp": "^1.0.3",
+        "p-map": "^4.0.0",
+        "promise-inflight": "^1.0.1",
+        "rimraf": "^3.0.2",
+        "ssri": "^8.0.1",
+        "tar": "^6.0.2",
+        "unique-filename": "^1.1.1"
+      },
+      "dependencies": {
+        "mkdirp": {
+          "version": "1.0.4",
+          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+          "dev": true
+        }
+      }
+    },
+    "cacheable-lookup": {
+      "version": "5.0.4",
+      "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz",
+      "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==",
+      "dev": true
+    },
+    "cacheable-request": {
+      "version": "6.1.0",
+      "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz",
+      "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==",
+      "dev": true,
+      "requires": {
+        "clone-response": "^1.0.2",
+        "get-stream": "^5.1.0",
+        "http-cache-semantics": "^4.0.0",
+        "keyv": "^3.0.0",
+        "lowercase-keys": "^2.0.0",
+        "normalize-url": "^4.1.0",
+        "responselike": "^1.0.2"
+      },
+      "dependencies": {
+        "get-stream": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+          "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+          "dev": true,
+          "requires": {
+            "pump": "^3.0.0"
+          }
+        },
+        "lowercase-keys": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
+          "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==",
+          "dev": true
+        }
+      }
+    },
+    "camelcase": {
+      "version": "5.3.1",
+      "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+      "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+      "dev": true,
+      "optional": true
+    },
+    "caseless": {
+      "version": "0.12.0",
+      "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
+      "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
+      "dev": true
+    },
+    "chalk": {
+      "version": "4.1.2",
+      "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+      "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+      "dev": true,
+      "requires": {
+        "ansi-styles": "^4.1.0",
+        "supports-color": "^7.1.0"
+      }
+    },
+    "chardet": {
+      "version": "0.7.0",
+      "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
+      "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
+      "dev": true
+    },
+    "chownr": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+      "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+      "dev": true
+    },
+    "chromium-pickle-js": {
+      "version": "0.2.0",
+      "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz",
+      "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==",
+      "dev": true
+    },
+    "clean-stack": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
+      "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
+      "dev": true
+    },
+    "cli-cursor": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+      "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+      "dev": true,
+      "requires": {
+        "restore-cursor": "^3.1.0"
+      }
+    },
+    "cli-spinners": {
+      "version": "2.6.1",
+      "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz",
+      "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==",
+      "dev": true
+    },
+    "cli-width": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
+      "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
+      "dev": true
+    },
+    "cliui": {
+      "version": "7.0.4",
+      "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+      "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+      "dev": true,
+      "requires": {
+        "string-width": "^4.2.0",
+        "strip-ansi": "^6.0.0",
+        "wrap-ansi": "^7.0.0"
+      }
+    },
+    "clone": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+      "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
+      "dev": true
+    },
+    "clone-response": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
+      "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=",
+      "dev": true,
+      "requires": {
+        "mimic-response": "^1.0.0"
+      }
+    },
+    "code-point-at": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
+      "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
+      "dev": true
+    },
+    "color-convert": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+      "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+      "dev": true,
+      "requires": {
+        "color-name": "~1.1.4"
+      }
+    },
+    "color-name": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+      "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+      "dev": true
+    },
+    "color-support": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+      "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
+      "dev": true
+    },
+    "colors": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz",
+      "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=",
+      "dev": true
+    },
+    "combined-stream": {
+      "version": "1.0.8",
+      "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+      "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+      "dev": true,
+      "requires": {
+        "delayed-stream": "~1.0.0"
+      }
+    },
+    "commander": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
+      "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
+      "dev": true
+    },
+    "compare-version": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz",
+      "integrity": "sha1-AWLsLZNR9d3VmpICy6k1NmpyUIA=",
+      "dev": true
+    },
+    "compress-brotli": {
+      "version": "1.3.8",
+      "resolved": "https://registry.npmjs.org/compress-brotli/-/compress-brotli-1.3.8.tgz",
+      "integrity": "sha512-lVcQsjhxhIXsuupfy9fmZUFtAIdBmXA7EGY6GBdgZ++qkM9zG4YFT8iU7FoBxzryNDMOpD1HIFHUSX4D87oqhQ==",
+      "dev": true,
+      "requires": {
+        "@types/json-buffer": "~3.0.0",
+        "json-buffer": "~3.0.1"
+      },
+      "dependencies": {
+        "json-buffer": {
+          "version": "3.0.1",
+          "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+          "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+          "dev": true
+        }
+      }
+    },
+    "concat-map": {
+      "version": "0.0.1",
+      "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
+      "dev": true
+    },
+    "concat-stream": {
+      "version": "1.6.2",
+      "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+      "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
+      "dev": true,
+      "requires": {
+        "buffer-from": "^1.0.0",
+        "inherits": "^2.0.3",
+        "readable-stream": "^2.2.2",
+        "typedarray": "^0.0.6"
+      }
+    },
+    "config-chain": {
+      "version": "1.1.13",
+      "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
+      "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "ini": "^1.3.4",
+        "proto-list": "~1.2.1"
+      }
+    },
+    "console-control-strings": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+      "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
+      "dev": true
+    },
+    "core-util-is": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+      "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
+      "dev": true
+    },
+    "cross-spawn": {
+      "version": "7.0.3",
+      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+      "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+      "dev": true,
+      "requires": {
+        "path-key": "^3.1.0",
+        "shebang-command": "^2.0.0",
+        "which": "^2.0.1"
+      }
+    },
+    "cross-spawn-windows-exe": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/cross-spawn-windows-exe/-/cross-spawn-windows-exe-1.2.0.tgz",
+      "integrity": "sha512-mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw==",
+      "dev": true,
+      "requires": {
+        "@malept/cross-spawn-promise": "^1.1.0",
+        "is-wsl": "^2.2.0",
+        "which": "^2.0.2"
+      },
+      "dependencies": {
+        "@malept/cross-spawn-promise": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+          "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+          "dev": true,
+          "requires": {
+            "cross-spawn": "^7.0.1"
+          }
+        }
+      }
+    },
+    "cross-zip": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/cross-zip/-/cross-zip-4.0.0.tgz",
+      "integrity": "sha512-MEzGfZo0rqE10O/B+AEcCSJLZsrWuRUvmqJTqHNqBtALhaJc3E3ixLGLJNTRzEA2K34wbmOHC4fwYs9sVsdcCA==",
+      "dev": true
+    },
+    "cuint": {
+      "version": "0.2.2",
+      "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz",
+      "integrity": "sha1-QICG1AlVDCYxFVYZ6fp7ytw7mRs=",
+      "dev": true,
+      "optional": true
+    },
+    "dashdash": {
+      "version": "1.14.1",
+      "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
+      "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
+      "dev": true,
+      "requires": {
+        "assert-plus": "^1.0.0"
+      }
+    },
+    "debug": {
+      "version": "4.3.4",
+      "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+      "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+      "dev": true,
+      "requires": {
+        "ms": "2.1.2"
+      }
+    },
+    "decamelize": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
+      "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
+      "dev": true,
+      "optional": true
+    },
+    "decompress-response": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz",
+      "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=",
+      "dev": true,
+      "requires": {
+        "mimic-response": "^1.0.0"
+      }
+    },
+    "defaults": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
+      "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
+      "dev": true,
+      "requires": {
+        "clone": "^1.0.2"
+      }
+    },
+    "defer-to-connect": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz",
+      "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==",
+      "dev": true
+    },
+    "define-lazy-prop": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
+      "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
+      "dev": true
+    },
+    "define-properties": {
+      "version": "1.1.4",
+      "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
+      "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "has-property-descriptors": "^1.0.0",
+        "object-keys": "^1.1.1"
+      }
+    },
+    "delayed-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+      "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
+      "dev": true
+    },
+    "delegates": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+      "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
+      "dev": true
+    },
+    "depd": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
+      "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
+      "dev": true
+    },
+    "detect-libc": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
+      "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=",
+      "dev": true
+    },
+    "detect-node": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz",
+      "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==",
+      "dev": true,
+      "optional": true
+    },
+    "dir-compare": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz",
+      "integrity": "sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==",
+      "dev": true,
+      "requires": {
+        "buffer-equal": "1.0.0",
+        "colors": "1.0.3",
+        "commander": "2.9.0",
+        "minimatch": "3.0.4"
+      },
+      "dependencies": {
+        "commander": {
+          "version": "2.9.0",
+          "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz",
+          "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=",
+          "dev": true,
+          "requires": {
+            "graceful-readlink": ">= 1.0.0"
+          }
+        },
+        "minimatch": {
+          "version": "3.0.4",
+          "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+          "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+          "dev": true,
+          "requires": {
+            "brace-expansion": "^1.1.7"
+          }
+        }
+      }
+    },
+    "duplexer3": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
+      "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
+      "dev": true
+    },
+    "ecc-jsbn": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
+      "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
+      "dev": true,
+      "requires": {
+        "jsbn": "~0.1.0",
+        "safer-buffer": "^2.1.0"
+      }
+    },
+    "electron": {
+      "version": "18.2.3",
+      "resolved": "https://registry.npmjs.org/electron/-/electron-18.2.3.tgz",
+      "integrity": "sha512-DJWX03hCRKTscsfXxmW4gmgFuseop+g+m4ml7NfOMfankD8uYyr2Xyi3Ui02inL9qZOlbLMeLVCu6jKCKs8p/w==",
+      "dev": true,
+      "requires": {
+        "@electron/get": "^1.13.0",
+        "@types/node": "^16.11.26",
+        "extract-zip": "^1.0.3"
+      }
+    },
+    "electron-installer-common": {
+      "version": "0.10.3",
+      "resolved": "https://registry.npmjs.org/electron-installer-common/-/electron-installer-common-0.10.3.tgz",
+      "integrity": "sha512-mYbP+6i+nHMIm0WZHXgGdmmXMe+KXncl6jZYQNcCF9C1WsNA9C5SZ2VP4TLQMSIoFO+X4ugkMEA5uld1bmyEvA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "@malept/cross-spawn-promise": "^1.0.0",
+        "@types/fs-extra": "^9.0.1",
+        "asar": "^3.0.0",
+        "debug": "^4.1.1",
+        "fs-extra": "^9.0.0",
+        "glob": "^7.1.4",
+        "lodash": "^4.17.15",
+        "parse-author": "^2.0.0",
+        "semver": "^7.1.1",
+        "tmp-promise": "^3.0.2"
+      },
+      "dependencies": {
+        "@malept/cross-spawn-promise": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+          "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "cross-spawn": "^7.0.1"
+          }
+        },
+        "fs-extra": {
+          "version": "9.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+          "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "at-least-node": "^1.0.0",
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true,
+          "optional": true
+        }
+      }
+    },
+    "electron-installer-debian": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/electron-installer-debian/-/electron-installer-debian-3.1.0.tgz",
+      "integrity": "sha512-k6KChvx0Fw8XTlCqwwbBfh19yGQaKjGdbugokmr1IpzINOm4QFyACKMTHAYFHW5LCBUZQShZD96hwxUZ+8Kx+w==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "@malept/cross-spawn-promise": "^1.0.0",
+        "debug": "^4.1.1",
+        "electron-installer-common": "^0.10.2",
+        "fs-extra": "^9.0.0",
+        "get-folder-size": "^2.0.1",
+        "lodash": "^4.17.4",
+        "word-wrap": "^1.2.3",
+        "yargs": "^15.0.1"
+      },
+      "dependencies": {
+        "@malept/cross-spawn-promise": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+          "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "cross-spawn": "^7.0.1"
+          }
+        },
+        "cliui": {
+          "version": "6.0.0",
+          "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
+          "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "string-width": "^4.2.0",
+            "strip-ansi": "^6.0.0",
+            "wrap-ansi": "^6.2.0"
+          }
+        },
+        "find-up": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "locate-path": "^5.0.0",
+            "path-exists": "^4.0.0"
+          }
+        },
+        "fs-extra": {
+          "version": "9.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+          "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "at-least-node": "^1.0.0",
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "locate-path": {
+          "version": "5.0.0",
+          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "p-locate": "^4.1.0"
+          }
+        },
+        "p-limit": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "p-try": "^2.0.0"
+          }
+        },
+        "p-locate": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "p-limit": "^2.2.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true,
+          "optional": true
+        },
+        "wrap-ansi": {
+          "version": "6.2.0",
+          "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+          "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "ansi-styles": "^4.0.0",
+            "string-width": "^4.1.0",
+            "strip-ansi": "^6.0.0"
+          }
+        },
+        "y18n": {
+          "version": "4.0.3",
+          "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+          "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
+          "dev": true,
+          "optional": true
+        },
+        "yargs": {
+          "version": "15.4.1",
+          "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
+          "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "cliui": "^6.0.0",
+            "decamelize": "^1.2.0",
+            "find-up": "^4.1.0",
+            "get-caller-file": "^2.0.1",
+            "require-directory": "^2.1.1",
+            "require-main-filename": "^2.0.0",
+            "set-blocking": "^2.0.0",
+            "string-width": "^4.2.0",
+            "which-module": "^2.0.0",
+            "y18n": "^4.0.0",
+            "yargs-parser": "^18.1.2"
+          }
+        },
+        "yargs-parser": {
+          "version": "18.1.3",
+          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
+          "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "camelcase": "^5.0.0",
+            "decamelize": "^1.2.0"
+          }
+        }
+      }
+    },
+    "electron-installer-redhat": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/electron-installer-redhat/-/electron-installer-redhat-3.3.0.tgz",
+      "integrity": "sha512-hXIXB3uQXmXZy/v3MpbwWN4Of28ALpPt9ZyUDNEoSe0w7QZceL9IqI2K6Q6imiBJCLRC0hmT94WhlKj1RyGOWg==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "@malept/cross-spawn-promise": "^1.0.0",
+        "debug": "^4.1.1",
+        "electron-installer-common": "^0.10.2",
+        "fs-extra": "^9.0.0",
+        "lodash": "^4.17.15",
+        "word-wrap": "^1.2.3",
+        "yargs": "^16.0.2"
+      },
+      "dependencies": {
+        "@malept/cross-spawn-promise": {
+          "version": "1.1.1",
+          "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz",
+          "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "cross-spawn": "^7.0.1"
+          }
+        },
+        "fs-extra": {
+          "version": "9.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+          "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "at-least-node": "^1.0.0",
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true,
+          "optional": true
+        },
+        "yargs": {
+          "version": "16.2.0",
+          "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+          "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "cliui": "^7.0.2",
+            "escalade": "^3.1.1",
+            "get-caller-file": "^2.0.5",
+            "require-directory": "^2.1.1",
+            "string-width": "^4.2.0",
+            "y18n": "^5.0.5",
+            "yargs-parser": "^20.2.2"
+          }
+        }
+      }
+    },
+    "electron-notarize": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.2.1.tgz",
+      "integrity": "sha512-u/ECWhIrhkSQpZM4cJzVZ5TsmkaqrRo5LDC/KMbGF0sPkm53Ng59+M0zp8QVaql0obfJy9vlVT+4iOkAi2UDlA==",
+      "dev": true,
+      "requires": {
+        "debug": "^4.1.1",
+        "fs-extra": "^9.0.1"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "9.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+          "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+          "dev": true,
+          "requires": {
+            "at-least-node": "^1.0.0",
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "electron-osx-sign": {
+      "version": "0.5.0",
+      "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz",
+      "integrity": "sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==",
+      "dev": true,
+      "requires": {
+        "bluebird": "^3.5.0",
+        "compare-version": "^0.1.2",
+        "debug": "^2.6.8",
+        "isbinaryfile": "^3.0.2",
+        "minimist": "^1.2.0",
+        "plist": "^3.0.1"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "2.6.9",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+          "dev": true,
+          "requires": {
+            "ms": "2.0.0"
+          }
+        },
+        "ms": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+          "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+          "dev": true
+        }
+      }
+    },
+    "electron-packager": {
+      "version": "15.5.1",
+      "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-15.5.1.tgz",
+      "integrity": "sha512-9/fqF64GACZsLYLuFJ8vCqItMXbvsD0NMDLNfFmAv9mSqkqKWSZb5V3VE9CxT6CeXwZ6wN3YowEQuqBNyShEVg==",
+      "dev": true,
+      "requires": {
+        "@electron/get": "^1.6.0",
+        "@electron/universal": "^1.2.1",
+        "asar": "^3.1.0",
+        "cross-spawn-windows-exe": "^1.2.0",
+        "debug": "^4.0.1",
+        "electron-notarize": "^1.1.1",
+        "electron-osx-sign": "^0.5.0",
+        "extract-zip": "^2.0.0",
+        "filenamify": "^4.1.0",
+        "fs-extra": "^9.0.0",
+        "galactus": "^0.2.1",
+        "get-package-info": "^1.0.0",
+        "junk": "^3.1.0",
+        "parse-author": "^2.0.0",
+        "plist": "^3.0.0",
+        "rcedit": "^3.0.1",
+        "resolve": "^1.1.6",
+        "semver": "^7.1.3",
+        "yargs-parser": "^20.0.0"
+      },
+      "dependencies": {
+        "extract-zip": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
+          "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
+          "dev": true,
+          "requires": {
+            "@types/yauzl": "^2.9.1",
+            "debug": "^4.1.1",
+            "get-stream": "^5.1.0",
+            "yauzl": "^2.10.0"
+          }
+        },
+        "fs-extra": {
+          "version": "9.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+          "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+          "dev": true,
+          "requires": {
+            "at-least-node": "^1.0.0",
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "get-stream": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+          "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+          "dev": true,
+          "requires": {
+            "pump": "^3.0.0"
+          }
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "electron-rebuild": {
+      "version": "3.2.7",
+      "resolved": "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-3.2.7.tgz",
+      "integrity": "sha512-WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw==",
+      "dev": true,
+      "requires": {
+        "@malept/cross-spawn-promise": "^2.0.0",
+        "chalk": "^4.0.0",
+        "debug": "^4.1.1",
+        "detect-libc": "^1.0.3",
+        "fs-extra": "^10.0.0",
+        "got": "^11.7.0",
+        "lzma-native": "^8.0.5",
+        "node-abi": "^3.0.0",
+        "node-api-version": "^0.1.4",
+        "node-gyp": "^8.4.0",
+        "ora": "^5.1.0",
+        "semver": "^7.3.5",
+        "tar": "^6.0.5",
+        "yargs": "^17.0.1"
+      },
+      "dependencies": {
+        "@sindresorhus/is": {
+          "version": "4.6.0",
+          "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
+          "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
+          "dev": true
+        },
+        "@szmarczak/http-timer": {
+          "version": "4.0.6",
+          "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz",
+          "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==",
+          "dev": true,
+          "requires": {
+            "defer-to-connect": "^2.0.0"
+          }
+        },
+        "cacheable-request": {
+          "version": "7.0.2",
+          "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz",
+          "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==",
+          "dev": true,
+          "requires": {
+            "clone-response": "^1.0.2",
+            "get-stream": "^5.1.0",
+            "http-cache-semantics": "^4.0.0",
+            "keyv": "^4.0.0",
+            "lowercase-keys": "^2.0.0",
+            "normalize-url": "^6.0.1",
+            "responselike": "^2.0.0"
+          }
+        },
+        "decompress-response": {
+          "version": "6.0.0",
+          "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
+          "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
+          "dev": true,
+          "requires": {
+            "mimic-response": "^3.1.0"
+          }
+        },
+        "defer-to-connect": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
+          "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==",
+          "dev": true
+        },
+        "fs-extra": {
+          "version": "10.1.0",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+          "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.2.0",
+            "jsonfile": "^6.0.1",
+            "universalify": "^2.0.0"
+          }
+        },
+        "get-stream": {
+          "version": "5.2.0",
+          "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+          "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+          "dev": true,
+          "requires": {
+            "pump": "^3.0.0"
+          }
+        },
+        "got": {
+          "version": "11.8.3",
+          "resolved": "https://registry.npmjs.org/got/-/got-11.8.3.tgz",
+          "integrity": "sha512-7gtQ5KiPh1RtGS9/Jbv1ofDpBFuq42gyfEib+ejaRBJuj/3tQFeR5+gw57e4ipaU8c/rCjvX6fkQz2lyDlGAOg==",
+          "dev": true,
+          "requires": {
+            "@sindresorhus/is": "^4.0.0",
+            "@szmarczak/http-timer": "^4.0.5",
+            "@types/cacheable-request": "^6.0.1",
+            "@types/responselike": "^1.0.0",
+            "cacheable-lookup": "^5.0.3",
+            "cacheable-request": "^7.0.2",
+            "decompress-response": "^6.0.0",
+            "http2-wrapper": "^1.0.0-beta.5.2",
+            "lowercase-keys": "^2.0.0",
+            "p-cancelable": "^2.0.0",
+            "responselike": "^2.0.0"
+          }
+        },
+        "json-buffer": {
+          "version": "3.0.1",
+          "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+          "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+          "dev": true
+        },
+        "jsonfile": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+          "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.6",
+            "universalify": "^2.0.0"
+          }
+        },
+        "keyv": {
+          "version": "4.2.8",
+          "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.2.8.tgz",
+          "integrity": "sha512-IZZo6krhHWPhgsP5mBkEdPopVPN/stgCnBVuqi6dda/Nm5mDTOSVTrFMkWqlJsDum+B0YSe887tNxdjDWkO7aQ==",
+          "dev": true,
+          "requires": {
+            "compress-brotli": "^1.3.8",
+            "json-buffer": "3.0.1"
+          }
+        },
+        "lowercase-keys": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
+          "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==",
+          "dev": true
+        },
+        "mimic-response": {
+          "version": "3.1.0",
+          "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
+          "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
+          "dev": true
+        },
+        "normalize-url": {
+          "version": "6.1.0",
+          "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz",
+          "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==",
+          "dev": true
+        },
+        "p-cancelable": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz",
+          "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==",
+          "dev": true
+        },
+        "responselike": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz",
+          "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==",
+          "dev": true,
+          "requires": {
+            "lowercase-keys": "^2.0.0"
+          }
+        },
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        },
+        "universalify": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+          "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+          "dev": true
+        }
+      }
+    },
+    "electron-squirrel-startup": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/electron-squirrel-startup/-/electron-squirrel-startup-1.0.0.tgz",
+      "integrity": "sha1-GbTlWTP6Dvj1VnhLnGYPdyVGoLg=",
+      "requires": {
+        "debug": "^2.2.0"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "2.6.9",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+          "requires": {
+            "ms": "2.0.0"
+          }
+        },
+        "ms": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+          "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+        }
+      }
+    },
+    "electron-winstaller": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.0.0.tgz",
+      "integrity": "sha512-V+jFda7aVAm0htCG8Q95buPUpmXZW9ujh1HdhSlWY6y4QnJnw4TfrmxTlQWV4p2ioF/71JMI/1YF+/qbSICogA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "asar": "^2.0.1",
+        "debug": "^4.1.1",
+        "fs-extra": "^7.0.1",
+        "lodash.template": "^4.2.2",
+        "temp": "^0.9.0"
+      },
+      "dependencies": {
+        "asar": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/asar/-/asar-2.1.0.tgz",
+          "integrity": "sha512-d2Ovma+bfqNpvBzY/KU8oPY67ZworixTpkjSx0PCXnQi67c2cXmssaTxpFDUM0ttopXoGx/KRxNg/GDThYbXQA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "@types/glob": "^7.1.1",
+            "chromium-pickle-js": "^0.2.0",
+            "commander": "^2.20.0",
+            "cuint": "^0.2.2",
+            "glob": "^7.1.3",
+            "minimatch": "^3.0.4",
+            "mkdirp": "^0.5.1",
+            "tmp-promise": "^1.0.5"
+          }
+        },
+        "commander": {
+          "version": "2.20.3",
+          "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+          "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+          "dev": true,
+          "optional": true
+        },
+        "fs-extra": {
+          "version": "7.0.1",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
+          "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "graceful-fs": "^4.1.2",
+            "jsonfile": "^4.0.0",
+            "universalify": "^0.1.0"
+          }
+        },
+        "rimraf": {
+          "version": "2.7.1",
+          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+          "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "glob": "^7.1.3"
+          }
+        },
+        "tmp": {
+          "version": "0.1.0",
+          "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz",
+          "integrity": "sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "rimraf": "^2.6.3"
+          }
+        },
+        "tmp-promise": {
+          "version": "1.1.0",
+          "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-1.1.0.tgz",
+          "integrity": "sha512-8+Ah9aB1IRXCnIOxXZ0uFozV1nMU5xiu7hhFVUSxZ3bYu+psD4TzagCzVbexUCgNNGJnsmNDQlS4nG3mTyoNkw==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "bluebird": "^3.5.0",
+            "tmp": "0.1.0"
+          }
+        }
+      }
+    },
+    "emoji-regex": {
+      "version": "8.0.0",
+      "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+      "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+      "dev": true
+    },
+    "encodeurl": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+      "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
+      "dev": true,
+      "optional": true
+    },
+    "encoding": {
+      "version": "0.1.13",
+      "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
+      "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "iconv-lite": "^0.6.2"
+      },
+      "dependencies": {
+        "iconv-lite": {
+          "version": "0.6.3",
+          "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+          "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "safer-buffer": ">= 2.1.2 < 3.0.0"
+          }
+        }
+      }
+    },
+    "end-of-stream": {
+      "version": "1.4.4",
+      "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
+      "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
+      "dev": true,
+      "requires": {
+        "once": "^1.4.0"
+      }
+    },
+    "env-paths": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
+      "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
+      "dev": true
+    },
+    "err-code": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
+      "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
+      "dev": true
+    },
+    "error-ex": {
+      "version": "1.3.2",
+      "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+      "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+      "dev": true,
+      "requires": {
+        "is-arrayish": "^0.2.1"
+      }
+    },
+    "es6-error": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
+      "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==",
+      "dev": true,
+      "optional": true
+    },
+    "escalade": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+      "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+      "dev": true
+    },
+    "escape-string-regexp": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+      "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+      "dev": true,
+      "optional": true
+    },
+    "execa": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
+      "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
+      "dev": true,
+      "requires": {
+        "cross-spawn": "^6.0.0",
+        "get-stream": "^4.0.0",
+        "is-stream": "^1.1.0",
+        "npm-run-path": "^2.0.0",
+        "p-finally": "^1.0.0",
+        "signal-exit": "^3.0.0",
+        "strip-eof": "^1.0.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "6.0.5",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+          "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+          "dev": true,
+          "requires": {
+            "nice-try": "^1.0.4",
+            "path-key": "^2.0.1",
+            "semver": "^5.5.0",
+            "shebang-command": "^1.2.0",
+            "which": "^1.2.9"
+          }
+        },
+        "path-key": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+          "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+          "dev": true
+        },
+        "semver": {
+          "version": "5.7.1",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+          "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+          "dev": true
+        },
+        "shebang-command": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+          "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+          "dev": true,
+          "requires": {
+            "shebang-regex": "^1.0.0"
+          }
+        },
+        "shebang-regex": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+          "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+          "dev": true
+        },
+        "which": {
+          "version": "1.3.1",
+          "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+          "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+          "dev": true,
+          "requires": {
+            "isexe": "^2.0.0"
+          }
+        }
+      }
+    },
+    "expand-tilde": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz",
+      "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=",
+      "dev": true,
+      "requires": {
+        "homedir-polyfill": "^1.0.1"
+      }
+    },
+    "extend": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+      "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+      "dev": true
+    },
+    "external-editor": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
+      "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
+      "dev": true,
+      "requires": {
+        "chardet": "^0.7.0",
+        "iconv-lite": "^0.4.24",
+        "tmp": "^0.0.33"
+      }
+    },
+    "extract-zip": {
+      "version": "1.7.0",
+      "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
+      "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==",
+      "dev": true,
+      "requires": {
+        "concat-stream": "^1.6.2",
+        "debug": "^2.6.9",
+        "mkdirp": "^0.5.4",
+        "yauzl": "^2.10.0"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "2.6.9",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+          "dev": true,
+          "requires": {
+            "ms": "2.0.0"
+          }
+        },
+        "ms": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+          "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+          "dev": true
+        }
+      }
+    },
+    "extsprintf": {
+      "version": "1.3.0",
+      "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
+      "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
+      "dev": true
+    },
+    "fast-deep-equal": {
+      "version": "3.1.3",
+      "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+      "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+      "dev": true
+    },
+    "fast-glob": {
+      "version": "3.2.11",
+      "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz",
+      "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==",
+      "dev": true,
+      "requires": {
+        "@nodelib/fs.stat": "^2.0.2",
+        "@nodelib/fs.walk": "^1.2.3",
+        "glob-parent": "^5.1.2",
+        "merge2": "^1.3.0",
+        "micromatch": "^4.0.4"
+      }
+    },
+    "fast-json-stable-stringify": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+      "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+      "dev": true
+    },
+    "fastq": {
+      "version": "1.13.0",
+      "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
+      "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
+      "dev": true,
+      "requires": {
+        "reusify": "^1.0.4"
+      }
+    },
+    "fd-slicer": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
+      "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=",
+      "dev": true,
+      "requires": {
+        "pend": "~1.2.0"
+      }
+    },
+    "figures": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
+      "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
+      "dev": true,
+      "requires": {
+        "escape-string-regexp": "^1.0.5"
+      },
+      "dependencies": {
+        "escape-string-regexp": {
+          "version": "1.0.5",
+          "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+          "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+          "dev": true
+        }
+      }
+    },
+    "filename-reserved-regex": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz",
+      "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=",
+      "dev": true
+    },
+    "filenamify": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz",
+      "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==",
+      "dev": true,
+      "requires": {
+        "filename-reserved-regex": "^2.0.0",
+        "strip-outer": "^1.0.1",
+        "trim-repeated": "^1.0.0"
+      }
+    },
+    "fill-range": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+      "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+      "dev": true,
+      "requires": {
+        "to-regex-range": "^5.0.1"
+      }
+    },
+    "find-up": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+      "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+      "dev": true,
+      "requires": {
+        "locate-path": "^6.0.0",
+        "path-exists": "^4.0.0"
+      }
+    },
+    "flora-colossus": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/flora-colossus/-/flora-colossus-1.0.1.tgz",
+      "integrity": "sha512-d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==",
+      "dev": true,
+      "requires": {
+        "debug": "^4.1.1",
+        "fs-extra": "^7.0.0"
+      },
+      "dependencies": {
+        "fs-extra": {
+          "version": "7.0.1",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
+          "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.2",
+            "jsonfile": "^4.0.0",
+            "universalify": "^0.1.0"
+          }
+        }
+      }
+    },
+    "forever-agent": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
+      "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
+      "dev": true
+    },
+    "form-data": {
+      "version": "2.3.3",
+      "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
+      "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
+      "dev": true,
+      "requires": {
+        "asynckit": "^0.4.0",
+        "combined-stream": "^1.0.6",
+        "mime-types": "^2.1.12"
+      }
+    },
+    "fs-extra": {
+      "version": "8.1.0",
+      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+      "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+      "dev": true,
+      "requires": {
+        "graceful-fs": "^4.2.0",
+        "jsonfile": "^4.0.0",
+        "universalify": "^0.1.0"
+      }
+    },
+    "fs-minipass": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+      "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+      "dev": true,
+      "requires": {
+        "minipass": "^3.0.0"
+      }
+    },
+    "fs.realpath": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
+      "dev": true
+    },
+    "function-bind": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+      "dev": true
+    },
+    "galactus": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/galactus/-/galactus-0.2.1.tgz",
+      "integrity": "sha1-y+0tIKQMH1Z5o1kI4rlBVzPnjbk=",
+      "dev": true,
+      "requires": {
+        "debug": "^3.1.0",
+        "flora-colossus": "^1.0.0",
+        "fs-extra": "^4.0.0"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "3.2.7",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+          "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+          "dev": true,
+          "requires": {
+            "ms": "^2.1.1"
+          }
+        },
+        "fs-extra": {
+          "version": "4.0.3",
+          "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz",
+          "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==",
+          "dev": true,
+          "requires": {
+            "graceful-fs": "^4.1.2",
+            "jsonfile": "^4.0.0",
+            "universalify": "^0.1.0"
+          }
+        }
+      }
+    },
+    "gar": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz",
+      "integrity": "sha512-w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w==",
+      "dev": true,
+      "optional": true
+    },
+    "gauge": {
+      "version": "4.0.4",
+      "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz",
+      "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==",
+      "dev": true,
+      "requires": {
+        "aproba": "^1.0.3 || ^2.0.0",
+        "color-support": "^1.1.3",
+        "console-control-strings": "^1.1.0",
+        "has-unicode": "^2.0.1",
+        "signal-exit": "^3.0.7",
+        "string-width": "^4.2.3",
+        "strip-ansi": "^6.0.1",
+        "wide-align": "^1.1.5"
+      }
+    },
+    "get-caller-file": {
+      "version": "2.0.5",
+      "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+      "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+      "dev": true
+    },
+    "get-folder-size": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz",
+      "integrity": "sha512-+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "gar": "^1.0.4",
+        "tiny-each-async": "2.0.3"
+      }
+    },
+    "get-installed-path": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz",
+      "integrity": "sha512-Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==",
+      "dev": true,
+      "requires": {
+        "global-modules": "1.0.0"
+      }
+    },
+    "get-intrinsic": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
+      "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "function-bind": "^1.1.1",
+        "has": "^1.0.3",
+        "has-symbols": "^1.0.1"
+      }
+    },
+    "get-package-info": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/get-package-info/-/get-package-info-1.0.0.tgz",
+      "integrity": "sha1-ZDJ5ZWPigRPNlHTbvQAFKYWkmZw=",
+      "dev": true,
+      "requires": {
+        "bluebird": "^3.1.1",
+        "debug": "^2.2.0",
+        "lodash.get": "^4.0.0",
+        "read-pkg-up": "^2.0.0"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "2.6.9",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+          "dev": true,
+          "requires": {
+            "ms": "2.0.0"
+          }
+        },
+        "ms": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+          "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+          "dev": true
+        }
+      }
+    },
+    "get-stream": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
+      "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
+      "dev": true,
+      "requires": {
+        "pump": "^3.0.0"
+      }
+    },
+    "getpass": {
+      "version": "0.1.7",
+      "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
+      "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
+      "dev": true,
+      "requires": {
+        "assert-plus": "^1.0.0"
+      }
+    },
+    "glob": {
+      "version": "7.2.3",
+      "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+      "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+      "dev": true,
+      "requires": {
+        "fs.realpath": "^1.0.0",
+        "inflight": "^1.0.4",
+        "inherits": "2",
+        "minimatch": "^3.1.1",
+        "once": "^1.3.0",
+        "path-is-absolute": "^1.0.0"
+      }
+    },
+    "glob-parent": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+      "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+      "dev": true,
+      "requires": {
+        "is-glob": "^4.0.1"
+      }
+    },
+    "global-agent": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz",
+      "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "boolean": "^3.0.1",
+        "es6-error": "^4.1.1",
+        "matcher": "^3.0.0",
+        "roarr": "^2.15.3",
+        "semver": "^7.3.2",
+        "serialize-error": "^7.0.1"
+      },
+      "dependencies": {
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        }
+      }
+    },
+    "global-modules": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
+      "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
+      "dev": true,
+      "requires": {
+        "global-prefix": "^1.0.1",
+        "is-windows": "^1.0.1",
+        "resolve-dir": "^1.0.0"
+      }
+    },
+    "global-prefix": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz",
+      "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=",
+      "dev": true,
+      "requires": {
+        "expand-tilde": "^2.0.2",
+        "homedir-polyfill": "^1.0.1",
+        "ini": "^1.3.4",
+        "is-windows": "^1.0.1",
+        "which": "^1.2.14"
+      },
+      "dependencies": {
+        "which": {
+          "version": "1.3.1",
+          "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+          "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+          "dev": true,
+          "requires": {
+            "isexe": "^2.0.0"
+          }
+        }
+      }
+    },
+    "global-tunnel-ng": {
+      "version": "2.7.1",
+      "resolved": "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz",
+      "integrity": "sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "encodeurl": "^1.0.2",
+        "lodash": "^4.17.10",
+        "npm-conf": "^1.1.3",
+        "tunnel": "^0.0.6"
+      }
+    },
+    "globalthis": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
+      "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "define-properties": "^1.1.3"
+      }
+    },
+    "got": {
+      "version": "9.6.0",
+      "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz",
+      "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==",
+      "dev": true,
+      "requires": {
+        "@sindresorhus/is": "^0.14.0",
+        "@szmarczak/http-timer": "^1.1.2",
+        "cacheable-request": "^6.0.0",
+        "decompress-response": "^3.3.0",
+        "duplexer3": "^0.1.4",
+        "get-stream": "^4.1.0",
+        "lowercase-keys": "^1.0.1",
+        "mimic-response": "^1.0.1",
+        "p-cancelable": "^1.0.0",
+        "to-readable-stream": "^1.0.0",
+        "url-parse-lax": "^3.0.0"
+      }
+    },
+    "graceful-fs": {
+      "version": "4.2.10",
+      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
+      "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==",
+      "dev": true
+    },
+    "graceful-readlink": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
+      "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=",
+      "dev": true
+    },
+    "har-schema": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
+      "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
+      "dev": true
+    },
+    "har-validator": {
+      "version": "5.1.5",
+      "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
+      "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
+      "dev": true,
+      "requires": {
+        "ajv": "^6.12.3",
+        "har-schema": "^2.0.0"
+      }
+    },
+    "has": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+      "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+      "dev": true,
+      "requires": {
+        "function-bind": "^1.1.1"
+      }
+    },
+    "has-flag": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+      "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+      "dev": true
+    },
+    "has-property-descriptors": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
+      "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "get-intrinsic": "^1.1.1"
+      }
+    },
+    "has-symbols": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
+      "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+      "dev": true,
+      "optional": true
+    },
+    "has-unicode": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+      "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
+      "dev": true
+    },
+    "homedir-polyfill": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
+      "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
+      "dev": true,
+      "requires": {
+        "parse-passwd": "^1.0.0"
+      }
+    },
+    "hosted-git-info": {
+      "version": "2.8.9",
+      "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz",
+      "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==",
+      "dev": true
+    },
+    "http-cache-semantics": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz",
+      "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==",
+      "dev": true
+    },
+    "http-proxy-agent": {
+      "version": "4.0.1",
+      "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
+      "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
+      "dev": true,
+      "requires": {
+        "@tootallnate/once": "1",
+        "agent-base": "6",
+        "debug": "4"
+      }
+    },
+    "http-signature": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
+      "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
+      "dev": true,
+      "requires": {
+        "assert-plus": "^1.0.0",
+        "jsprim": "^1.2.2",
+        "sshpk": "^1.7.0"
+      }
+    },
+    "http2-wrapper": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz",
+      "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==",
+      "dev": true,
+      "requires": {
+        "quick-lru": "^5.1.1",
+        "resolve-alpn": "^1.0.0"
+      }
+    },
+    "https-proxy-agent": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+      "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+      "dev": true,
+      "requires": {
+        "agent-base": "6",
+        "debug": "4"
+      }
+    },
+    "humanize-ms": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz",
+      "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=",
+      "dev": true,
+      "requires": {
+        "ms": "^2.0.0"
+      }
+    },
+    "iconv-lite": {
+      "version": "0.4.24",
+      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+      "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+      "dev": true,
+      "requires": {
+        "safer-buffer": ">= 2.1.2 < 3"
+      }
+    },
+    "ieee754": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+      "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+      "dev": true
+    },
+    "imurmurhash": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+      "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
+      "dev": true
+    },
+    "indent-string": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
+      "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
+      "dev": true
+    },
+    "infer-owner": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
+      "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
+      "dev": true
+    },
+    "inflight": {
+      "version": "1.0.6",
+      "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
+      "dev": true,
+      "requires": {
+        "once": "^1.3.0",
+        "wrappy": "1"
+      }
+    },
+    "inherits": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+      "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+      "dev": true
+    },
+    "ini": {
+      "version": "1.3.8",
+      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+      "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
+      "dev": true
+    },
+    "inquirer": {
+      "version": "8.2.4",
+      "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz",
+      "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==",
+      "dev": true,
+      "requires": {
+        "ansi-escapes": "^4.2.1",
+        "chalk": "^4.1.1",
+        "cli-cursor": "^3.1.0",
+        "cli-width": "^3.0.0",
+        "external-editor": "^3.0.3",
+        "figures": "^3.0.0",
+        "lodash": "^4.17.21",
+        "mute-stream": "0.0.8",
+        "ora": "^5.4.1",
+        "run-async": "^2.4.0",
+        "rxjs": "^7.5.5",
+        "string-width": "^4.1.0",
+        "strip-ansi": "^6.0.0",
+        "through": "^2.3.6",
+        "wrap-ansi": "^7.0.0"
+      }
+    },
+    "ip": {
+      "version": "1.1.8",
+      "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz",
+      "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==",
+      "dev": true
+    },
+    "is-arrayish": {
+      "version": "0.2.1",
+      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+      "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+      "dev": true
+    },
+    "is-core-module": {
+      "version": "2.9.0",
+      "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz",
+      "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==",
+      "dev": true,
+      "requires": {
+        "has": "^1.0.3"
+      }
+    },
+    "is-docker": {
+      "version": "2.2.1",
+      "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+      "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
+      "dev": true
+    },
+    "is-extglob": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+      "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
+      "dev": true
+    },
+    "is-fullwidth-code-point": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+      "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+      "dev": true
+    },
+    "is-glob": {
+      "version": "4.0.3",
+      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+      "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+      "dev": true,
+      "requires": {
+        "is-extglob": "^2.1.1"
+      }
+    },
+    "is-interactive": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
+      "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
+      "dev": true
+    },
+    "is-lambda": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
+      "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=",
+      "dev": true
+    },
+    "is-number": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+      "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+      "dev": true
+    },
+    "is-stream": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
+      "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
+      "dev": true
+    },
+    "is-typedarray": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+      "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
+      "dev": true
+    },
+    "is-unicode-supported": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
+      "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
+      "dev": true
+    },
+    "is-windows": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
+      "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
+      "dev": true
+    },
+    "is-wsl": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+      "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
+      "dev": true,
+      "requires": {
+        "is-docker": "^2.0.0"
+      }
+    },
+    "isarray": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+      "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
+      "dev": true
+    },
+    "isbinaryfile": {
+      "version": "3.0.3",
+      "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz",
+      "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==",
+      "dev": true,
+      "requires": {
+        "buffer-alloc": "^1.2.0"
+      }
+    },
+    "isexe": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+      "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
+      "dev": true
+    },
+    "isstream": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
+      "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
+      "dev": true
+    },
+    "jsbn": {
+      "version": "0.1.1",
+      "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
+      "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
+      "dev": true
+    },
+    "json-buffer": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
+      "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=",
+      "dev": true
+    },
+    "json-schema": {
+      "version": "0.4.0",
+      "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
+      "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
+      "dev": true
+    },
+    "json-schema-traverse": {
+      "version": "0.4.1",
+      "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+      "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+      "dev": true
+    },
+    "json-stringify-safe": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
+      "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
+      "dev": true
+    },
+    "jsonfile": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+      "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
+      "dev": true,
+      "requires": {
+        "graceful-fs": "^4.1.6"
+      }
+    },
+    "jsprim": {
+      "version": "1.4.2",
+      "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz",
+      "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==",
+      "dev": true,
+      "requires": {
+        "assert-plus": "1.0.0",
+        "extsprintf": "1.3.0",
+        "json-schema": "0.4.0",
+        "verror": "1.10.0"
+      }
+    },
+    "junk": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz",
+      "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==",
+      "dev": true
+    },
+    "keyv": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz",
+      "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==",
+      "dev": true,
+      "requires": {
+        "json-buffer": "3.0.0"
+      }
+    },
+    "load-json-file": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
+      "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
+      "dev": true,
+      "requires": {
+        "graceful-fs": "^4.1.2",
+        "parse-json": "^2.2.0",
+        "pify": "^2.0.0",
+        "strip-bom": "^3.0.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+          "dev": true
+        }
+      }
+    },
+    "locate-path": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+      "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+      "dev": true,
+      "requires": {
+        "p-locate": "^5.0.0"
+      }
+    },
+    "lodash": {
+      "version": "4.17.21",
+      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+      "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+      "dev": true
+    },
+    "lodash._reinterpolate": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
+      "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
+      "dev": true,
+      "optional": true
+    },
+    "lodash.get": {
+      "version": "4.4.2",
+      "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
+      "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=",
+      "dev": true
+    },
+    "lodash.template": {
+      "version": "4.5.0",
+      "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
+      "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "lodash._reinterpolate": "^3.0.0",
+        "lodash.templatesettings": "^4.0.0"
+      }
+    },
+    "lodash.templatesettings": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
+      "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "lodash._reinterpolate": "^3.0.0"
+      }
+    },
+    "log-symbols": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
+      "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
+      "dev": true,
+      "requires": {
+        "chalk": "^4.1.0",
+        "is-unicode-supported": "^0.1.0"
+      }
+    },
+    "lowercase-keys": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
+      "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
+      "dev": true
+    },
+    "lru-cache": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+      "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+      "dev": true,
+      "requires": {
+        "yallist": "^4.0.0"
+      }
+    },
+    "lzma-native": {
+      "version": "8.0.6",
+      "resolved": "https://registry.npmjs.org/lzma-native/-/lzma-native-8.0.6.tgz",
+      "integrity": "sha512-09xfg67mkL2Lz20PrrDeNYZxzeW7ADtpYFbwSQh9U8+76RIzx5QsJBMy8qikv3hbUPfpy6hqwxt6FcGK81g9AA==",
+      "dev": true,
+      "requires": {
+        "node-addon-api": "^3.1.0",
+        "node-gyp-build": "^4.2.1",
+        "readable-stream": "^3.6.0"
+      },
+      "dependencies": {
+        "readable-stream": {
+          "version": "3.6.0",
+          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+          "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+          "dev": true,
+          "requires": {
+            "inherits": "^2.0.3",
+            "string_decoder": "^1.1.1",
+            "util-deprecate": "^1.0.1"
+          }
+        }
+      }
+    },
+    "make-fetch-happen": {
+      "version": "9.1.0",
+      "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz",
+      "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==",
+      "dev": true,
+      "requires": {
+        "agentkeepalive": "^4.1.3",
+        "cacache": "^15.2.0",
+        "http-cache-semantics": "^4.1.0",
+        "http-proxy-agent": "^4.0.1",
+        "https-proxy-agent": "^5.0.0",
+        "is-lambda": "^1.0.1",
+        "lru-cache": "^6.0.0",
+        "minipass": "^3.1.3",
+        "minipass-collect": "^1.0.2",
+        "minipass-fetch": "^1.3.2",
+        "minipass-flush": "^1.0.5",
+        "minipass-pipeline": "^1.2.4",
+        "negotiator": "^0.6.2",
+        "promise-retry": "^2.0.1",
+        "socks-proxy-agent": "^6.0.0",
+        "ssri": "^8.0.0"
+      }
+    },
+    "map-age-cleaner": {
+      "version": "0.1.3",
+      "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz",
+      "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==",
+      "dev": true,
+      "requires": {
+        "p-defer": "^1.0.0"
+      }
+    },
+    "matcher": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz",
+      "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "escape-string-regexp": "^4.0.0"
+      }
+    },
+    "mem": {
+      "version": "4.3.0",
+      "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz",
+      "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==",
+      "dev": true,
+      "requires": {
+        "map-age-cleaner": "^0.1.1",
+        "mimic-fn": "^2.0.0",
+        "p-is-promise": "^2.0.0"
+      }
+    },
+    "merge2": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+      "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+      "dev": true
+    },
+    "micromatch": {
+      "version": "4.0.5",
+      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
+      "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+      "dev": true,
+      "requires": {
+        "braces": "^3.0.2",
+        "picomatch": "^2.3.1"
+      }
+    },
+    "mime-db": {
+      "version": "1.52.0",
+      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+      "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+      "dev": true
+    },
+    "mime-types": {
+      "version": "2.1.35",
+      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+      "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+      "dev": true,
+      "requires": {
+        "mime-db": "1.52.0"
+      }
+    },
+    "mimic-fn": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+      "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+      "dev": true
+    },
+    "mimic-response": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
+      "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
+      "dev": true
+    },
+    "minimatch": {
+      "version": "3.1.2",
+      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+      "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+      "dev": true,
+      "requires": {
+        "brace-expansion": "^1.1.7"
+      }
+    },
+    "minimist": {
+      "version": "1.2.6",
+      "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
+      "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==",
+      "dev": true
+    },
+    "minipass": {
+      "version": "3.1.6",
+      "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz",
+      "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==",
+      "dev": true,
+      "requires": {
+        "yallist": "^4.0.0"
+      }
+    },
+    "minipass-collect": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
+      "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
+      "dev": true,
+      "requires": {
+        "minipass": "^3.0.0"
+      }
+    },
+    "minipass-fetch": {
+      "version": "1.4.1",
+      "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz",
+      "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==",
+      "dev": true,
+      "requires": {
+        "encoding": "^0.1.12",
+        "minipass": "^3.1.0",
+        "minipass-sized": "^1.0.3",
+        "minizlib": "^2.0.0"
+      }
+    },
+    "minipass-flush": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
+      "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
+      "dev": true,
+      "requires": {
+        "minipass": "^3.0.0"
+      }
+    },
+    "minipass-pipeline": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
+      "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
+      "dev": true,
+      "requires": {
+        "minipass": "^3.0.0"
+      }
+    },
+    "minipass-sized": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
+      "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
+      "dev": true,
+      "requires": {
+        "minipass": "^3.0.0"
+      }
+    },
+    "minizlib": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+      "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+      "dev": true,
+      "requires": {
+        "minipass": "^3.0.0",
+        "yallist": "^4.0.0"
+      }
+    },
+    "mkdirp": {
+      "version": "0.5.6",
+      "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
+      "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
+      "dev": true,
+      "requires": {
+        "minimist": "^1.2.6"
+      }
+    },
+    "ms": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+      "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+      "dev": true
+    },
+    "mute-stream": {
+      "version": "0.0.8",
+      "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
+      "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
+      "dev": true
+    },
+    "negotiator": {
+      "version": "0.6.3",
+      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+      "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+      "dev": true
+    },
+    "nice-try": {
+      "version": "1.0.5",
+      "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
+      "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
+      "dev": true
+    },
+    "node-abi": {
+      "version": "3.15.0",
+      "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.15.0.tgz",
+      "integrity": "sha512-Ic6z/j6I9RLm4ov7npo1I48UQr2BEyFCqh6p7S1dhEx9jPO0GPGq/e2Rb7x7DroQrmiVMz/Bw1vJm9sPAl2nxA==",
+      "dev": true,
+      "requires": {
+        "semver": "^7.3.5"
+      },
+      "dependencies": {
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        }
+      }
+    },
+    "node-addon-api": {
+      "version": "3.2.1",
+      "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz",
+      "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==",
+      "dev": true
+    },
+    "node-api-version": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/node-api-version/-/node-api-version-0.1.4.tgz",
+      "integrity": "sha512-KGXihXdUChwJAOHO53bv9/vXcLmdUsZ6jIptbvYvkpKfth+r7jw44JkVxQFA3kX5nQjzjmGu1uAu/xNNLNlI5g==",
+      "dev": true,
+      "requires": {
+        "semver": "^7.3.5"
+      },
+      "dependencies": {
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        }
+      }
+    },
+    "node-fetch": {
+      "version": "2.6.7",
+      "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
+      "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
+      "dev": true,
+      "requires": {
+        "whatwg-url": "^5.0.0"
+      }
+    },
+    "node-gyp": {
+      "version": "8.4.1",
+      "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz",
+      "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==",
+      "dev": true,
+      "requires": {
+        "env-paths": "^2.2.0",
+        "glob": "^7.1.4",
+        "graceful-fs": "^4.2.6",
+        "make-fetch-happen": "^9.1.0",
+        "nopt": "^5.0.0",
+        "npmlog": "^6.0.0",
+        "rimraf": "^3.0.2",
+        "semver": "^7.3.5",
+        "tar": "^6.1.2",
+        "which": "^2.0.2"
+      },
+      "dependencies": {
+        "semver": {
+          "version": "7.3.7",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
+          "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+          "dev": true,
+          "requires": {
+            "lru-cache": "^6.0.0"
+          }
+        }
+      }
+    },
+    "node-gyp-build": {
+      "version": "4.4.0",
+      "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz",
+      "integrity": "sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==",
+      "dev": true
+    },
+    "nopt": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
+      "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
+      "dev": true,
+      "requires": {
+        "abbrev": "1"
+      }
+    },
+    "normalize-package-data": {
+      "version": "2.5.0",
+      "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+      "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+      "dev": true,
+      "requires": {
+        "hosted-git-info": "^2.1.4",
+        "resolve": "^1.10.0",
+        "semver": "2 || 3 || 4 || 5",
+        "validate-npm-package-license": "^3.0.1"
+      },
+      "dependencies": {
+        "semver": {
+          "version": "5.7.1",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+          "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+          "dev": true
+        }
+      }
+    },
+    "normalize-url": {
+      "version": "4.5.1",
+      "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz",
+      "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==",
+      "dev": true
+    },
+    "npm-conf": {
+      "version": "1.1.3",
+      "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz",
+      "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "config-chain": "^1.1.11",
+        "pify": "^3.0.0"
+      }
+    },
+    "npm-run-path": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
+      "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
+      "dev": true,
+      "requires": {
+        "path-key": "^2.0.0"
+      },
+      "dependencies": {
+        "path-key": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+          "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+          "dev": true
+        }
+      }
+    },
+    "npmlog": {
+      "version": "6.0.2",
+      "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz",
+      "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==",
+      "dev": true,
+      "requires": {
+        "are-we-there-yet": "^3.0.0",
+        "console-control-strings": "^1.1.0",
+        "gauge": "^4.0.3",
+        "set-blocking": "^2.0.0"
+      }
+    },
+    "nugget": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/nugget/-/nugget-2.0.2.tgz",
+      "integrity": "sha512-A8A8+PtlH937KWXJnfct6ubGPfgHOe3lwFkkmrT5xW8+aRBnDWqSiW5NRuiVuh/k/auLGsZdu+WrIU2epL/FHg==",
+      "dev": true,
+      "requires": {
+        "debug": "^2.1.3",
+        "minimist": "^1.1.0",
+        "pretty-bytes": "^4.0.2",
+        "progress-stream": "^1.1.0",
+        "request": "^2.45.0",
+        "single-line-log": "^1.1.2",
+        "throttleit": "0.0.2"
+      },
+      "dependencies": {
+        "debug": {
+          "version": "2.6.9",
+          "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+          "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+          "dev": true,
+          "requires": {
+            "ms": "2.0.0"
+          }
+        },
+        "ms": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+          "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
+          "dev": true
+        }
+      }
+    },
+    "number-is-nan": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
+      "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
+      "dev": true
+    },
+    "oauth-sign": {
+      "version": "0.9.0",
+      "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
+      "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
+      "dev": true
+    },
+    "object-keys": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+      "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+      "dev": true,
+      "optional": true
+    },
+    "once": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
+      "dev": true,
+      "requires": {
+        "wrappy": "1"
+      }
+    },
+    "onetime": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+      "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+      "dev": true,
+      "requires": {
+        "mimic-fn": "^2.1.0"
+      }
+    },
+    "open": {
+      "version": "8.4.0",
+      "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz",
+      "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==",
+      "dev": true,
+      "requires": {
+        "define-lazy-prop": "^2.0.0",
+        "is-docker": "^2.1.1",
+        "is-wsl": "^2.2.0"
+      }
+    },
+    "ora": {
+      "version": "5.4.1",
+      "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz",
+      "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
+      "dev": true,
+      "requires": {
+        "bl": "^4.1.0",
+        "chalk": "^4.1.0",
+        "cli-cursor": "^3.1.0",
+        "cli-spinners": "^2.5.0",
+        "is-interactive": "^1.0.0",
+        "is-unicode-supported": "^0.1.0",
+        "log-symbols": "^4.1.0",
+        "strip-ansi": "^6.0.0",
+        "wcwidth": "^1.0.1"
+      }
+    },
+    "os-tmpdir": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
+      "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
+      "dev": true
+    },
+    "p-cancelable": {
+      "version": "1.1.0",
+      "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz",
+      "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==",
+      "dev": true
+    },
+    "p-defer": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz",
+      "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=",
+      "dev": true
+    },
+    "p-finally": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+      "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+      "dev": true
+    },
+    "p-is-promise": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz",
+      "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==",
+      "dev": true
+    },
+    "p-limit": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+      "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+      "dev": true,
+      "requires": {
+        "yocto-queue": "^0.1.0"
+      }
+    },
+    "p-locate": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+      "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+      "dev": true,
+      "requires": {
+        "p-limit": "^3.0.2"
+      }
+    },
+    "p-map": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+      "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+      "dev": true,
+      "requires": {
+        "aggregate-error": "^3.0.0"
+      }
+    },
+    "p-try": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+      "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+      "dev": true
+    },
+    "parse-author": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz",
+      "integrity": "sha1-00YL8d3Q367tQtp1QkLmX7aEqB8=",
+      "dev": true,
+      "requires": {
+        "author-regex": "^1.0.0"
+      }
+    },
+    "parse-json": {
+      "version": "2.2.0",
+      "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
+      "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
+      "dev": true,
+      "requires": {
+        "error-ex": "^1.2.0"
+      }
+    },
+    "parse-ms": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz",
+      "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==",
+      "dev": true
+    },
+    "parse-passwd": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
+      "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=",
+      "dev": true
+    },
+    "path-exists": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+      "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+      "dev": true
+    },
+    "path-is-absolute": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+      "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
+      "dev": true
+    },
+    "path-key": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+      "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+      "dev": true
+    },
+    "path-parse": {
+      "version": "1.0.7",
+      "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+      "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+      "dev": true
+    },
+    "path-type": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
+      "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
+      "dev": true,
+      "requires": {
+        "pify": "^2.0.0"
+      },
+      "dependencies": {
+        "pify": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
+          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
+          "dev": true
+        }
+      }
+    },
+    "pend": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
+      "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=",
+      "dev": true
+    },
+    "performance-now": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
+      "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
+      "dev": true
+    },
+    "picomatch": {
+      "version": "2.3.1",
+      "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+      "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+      "dev": true
+    },
+    "pify": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+      "dev": true,
+      "optional": true
+    },
+    "pkg-dir": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+      "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+      "dev": true,
+      "requires": {
+        "find-up": "^4.0.0"
+      },
+      "dependencies": {
+        "find-up": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+          "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+          "dev": true,
+          "requires": {
+            "locate-path": "^5.0.0",
+            "path-exists": "^4.0.0"
+          }
+        },
+        "locate-path": {
+          "version": "5.0.0",
+          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+          "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+          "dev": true,
+          "requires": {
+            "p-locate": "^4.1.0"
+          }
+        },
+        "p-limit": {
+          "version": "2.3.0",
+          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+          "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+          "dev": true,
+          "requires": {
+            "p-try": "^2.0.0"
+          }
+        },
+        "p-locate": {
+          "version": "4.1.0",
+          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+          "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+          "dev": true,
+          "requires": {
+            "p-limit": "^2.2.0"
+          }
+        }
+      }
+    },
+    "plist": {
+      "version": "3.0.5",
+      "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.5.tgz",
+      "integrity": "sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA==",
+      "dev": true,
+      "requires": {
+        "base64-js": "^1.5.1",
+        "xmlbuilder": "^9.0.7"
+      }
+    },
+    "prepend-http": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
+      "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=",
+      "dev": true
+    },
+    "pretty-bytes": {
+      "version": "4.0.2",
+      "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz",
+      "integrity": "sha1-sr+C5zUNZcbDOqlaqlpPYyf2HNk=",
+      "dev": true
+    },
+    "pretty-ms": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz",
+      "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==",
+      "dev": true,
+      "requires": {
+        "parse-ms": "^2.1.0"
+      }
+    },
+    "process-nextick-args": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+      "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
+      "dev": true
+    },
+    "progress": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+      "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
+      "dev": true
+    },
+    "progress-stream": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-1.2.0.tgz",
+      "integrity": "sha1-LNPP6jO6OonJwSHsM0er6asSX3c=",
+      "dev": true,
+      "requires": {
+        "speedometer": "~0.1.2",
+        "through2": "~0.2.3"
+      }
+    },
+    "promise-inflight": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+      "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
+      "dev": true
+    },
+    "promise-retry": {
+      "version": "2.0.1",
+      "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
+      "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
+      "dev": true,
+      "requires": {
+        "err-code": "^2.0.2",
+        "retry": "^0.12.0"
+      }
+    },
+    "proto-list": {
+      "version": "1.2.4",
+      "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
+      "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=",
+      "dev": true,
+      "optional": true
+    },
+    "psl": {
+      "version": "1.8.0",
+      "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
+      "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==",
+      "dev": true
+    },
+    "pump": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
+      "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
+      "dev": true,
+      "requires": {
+        "end-of-stream": "^1.1.0",
+        "once": "^1.3.1"
+      }
+    },
+    "punycode": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+      "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
+      "dev": true
+    },
+    "qs": {
+      "version": "6.5.3",
+      "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz",
+      "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==",
+      "dev": true
+    },
+    "queue-microtask": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+      "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+      "dev": true
+    },
+    "quick-lru": {
+      "version": "5.1.1",
+      "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
+      "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
+      "dev": true
+    },
+    "rcedit": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/rcedit/-/rcedit-3.0.1.tgz",
+      "integrity": "sha512-XM0Jv40/y4hVAqj/MO70o/IWs4uOsaSoo2mLyk3klFDW+SStLnCtzuQu+1OBTIMGlM8CvaK9ftlYCp6DJ+cMsw==",
+      "dev": true,
+      "requires": {
+        "cross-spawn-windows-exe": "^1.1.0"
+      }
+    },
+    "read-pkg": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
+      "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
+      "dev": true,
+      "requires": {
+        "load-json-file": "^2.0.0",
+        "normalize-package-data": "^2.3.2",
+        "path-type": "^2.0.0"
+      }
+    },
+    "read-pkg-up": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
+      "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
+      "dev": true,
+      "requires": {
+        "find-up": "^2.0.0",
+        "read-pkg": "^2.0.0"
+      },
+      "dependencies": {
+        "find-up": {
+          "version": "2.1.0",
+          "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+          "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+          "dev": true,
+          "requires": {
+            "locate-path": "^2.0.0"
+          }
+        },
+        "locate-path": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+          "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+          "dev": true,
+          "requires": {
+            "p-locate": "^2.0.0",
+            "path-exists": "^3.0.0"
+          }
+        },
+        "p-limit": {
+          "version": "1.3.0",
+          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+          "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+          "dev": true,
+          "requires": {
+            "p-try": "^1.0.0"
+          }
+        },
+        "p-locate": {
+          "version": "2.0.0",
+          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+          "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+          "dev": true,
+          "requires": {
+            "p-limit": "^1.1.0"
+          }
+        },
+        "p-try": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+          "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+          "dev": true
+        },
+        "path-exists": {
+          "version": "3.0.0",
+          "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+          "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+          "dev": true
+        }
+      }
+    },
+    "readable-stream": {
+      "version": "2.3.7",
+      "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
+      "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
+      "dev": true,
+      "requires": {
+        "core-util-is": "~1.0.0",
+        "inherits": "~2.0.3",
+        "isarray": "~1.0.0",
+        "process-nextick-args": "~2.0.0",
+        "safe-buffer": "~5.1.1",
+        "string_decoder": "~1.1.1",
+        "util-deprecate": "~1.0.1"
+      }
+    },
+    "request": {
+      "version": "2.88.2",
+      "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
+      "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
+      "dev": true,
+      "requires": {
+        "aws-sign2": "~0.7.0",
+        "aws4": "^1.8.0",
+        "caseless": "~0.12.0",
+        "combined-stream": "~1.0.6",
+        "extend": "~3.0.2",
+        "forever-agent": "~0.6.1",
+        "form-data": "~2.3.2",
+        "har-validator": "~5.1.3",
+        "http-signature": "~1.2.0",
+        "is-typedarray": "~1.0.0",
+        "isstream": "~0.1.2",
+        "json-stringify-safe": "~5.0.1",
+        "mime-types": "~2.1.19",
+        "oauth-sign": "~0.9.0",
+        "performance-now": "^2.1.0",
+        "qs": "~6.5.2",
+        "safe-buffer": "^5.1.2",
+        "tough-cookie": "~2.5.0",
+        "tunnel-agent": "^0.6.0",
+        "uuid": "^3.3.2"
+      }
+    },
+    "require-directory": {
+      "version": "2.1.1",
+      "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+      "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
+      "dev": true
+    },
+    "require-main-filename": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
+      "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
+      "dev": true,
+      "optional": true
+    },
+    "resolve": {
+      "version": "1.22.0",
+      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz",
+      "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==",
+      "dev": true,
+      "requires": {
+        "is-core-module": "^2.8.1",
+        "path-parse": "^1.0.7",
+        "supports-preserve-symlinks-flag": "^1.0.0"
+      }
+    },
+    "resolve-alpn": {
+      "version": "1.2.1",
+      "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
+      "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==",
+      "dev": true
+    },
+    "resolve-dir": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz",
+      "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=",
+      "dev": true,
+      "requires": {
+        "expand-tilde": "^2.0.0",
+        "global-modules": "^1.0.0"
+      }
+    },
+    "resolve-package": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/resolve-package/-/resolve-package-1.0.1.tgz",
+      "integrity": "sha1-aG9wsYi9fWdfW7xCgszaBgq7nSc=",
+      "dev": true,
+      "requires": {
+        "get-installed-path": "^2.0.3"
+      }
+    },
+    "responselike": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz",
+      "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=",
+      "dev": true,
+      "requires": {
+        "lowercase-keys": "^1.0.0"
+      }
+    },
+    "restore-cursor": {
+      "version": "3.1.0",
+      "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+      "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
+      "dev": true,
+      "requires": {
+        "onetime": "^5.1.0",
+        "signal-exit": "^3.0.2"
+      }
+    },
+    "retry": {
+      "version": "0.12.0",
+      "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
+      "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=",
+      "dev": true
+    },
+    "reusify": {
+      "version": "1.0.4",
+      "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+      "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+      "dev": true
+    },
+    "rimraf": {
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+      "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+      "dev": true,
+      "requires": {
+        "glob": "^7.1.3"
+      }
+    },
+    "roarr": {
+      "version": "2.15.4",
+      "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz",
+      "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "boolean": "^3.0.1",
+        "detect-node": "^2.0.4",
+        "globalthis": "^1.0.1",
+        "json-stringify-safe": "^5.0.1",
+        "semver-compare": "^1.0.0",
+        "sprintf-js": "^1.1.2"
+      }
+    },
+    "run-async": {
+      "version": "2.4.1",
+      "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
+      "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
+      "dev": true
+    },
+    "run-parallel": {
+      "version": "1.2.0",
+      "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+      "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+      "dev": true,
+      "requires": {
+        "queue-microtask": "^1.2.2"
+      }
+    },
+    "rxjs": {
+      "version": "7.5.5",
+      "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz",
+      "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==",
+      "dev": true,
+      "requires": {
+        "tslib": "^2.1.0"
+      }
+    },
+    "safe-buffer": {
+      "version": "5.1.2",
+      "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+      "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+      "dev": true
+    },
+    "safer-buffer": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+      "dev": true
+    },
+    "semver": {
+      "version": "6.3.0",
+      "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+      "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+      "dev": true
+    },
+    "semver-compare": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz",
+      "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=",
+      "dev": true,
+      "optional": true
+    },
+    "serialize-error": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz",
+      "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "type-fest": "^0.13.1"
+      }
+    },
+    "set-blocking": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+      "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
+      "dev": true
+    },
+    "shebang-command": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+      "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+      "dev": true,
+      "requires": {
+        "shebang-regex": "^3.0.0"
+      }
+    },
+    "shebang-regex": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+      "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+      "dev": true
+    },
+    "signal-exit": {
+      "version": "3.0.7",
+      "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+      "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
+      "dev": true
+    },
+    "single-line-log": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/single-line-log/-/single-line-log-1.1.2.tgz",
+      "integrity": "sha1-wvg/Jzo+GhbtsJlWYdoO1e8DM2Q=",
+      "dev": true,
+      "requires": {
+        "string-width": "^1.0.1"
+      },
+      "dependencies": {
+        "ansi-regex": {
+          "version": "2.1.1",
+          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+          "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==",
+          "dev": true
+        },
+        "is-fullwidth-code-point": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
+          "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
+          "dev": true,
+          "requires": {
+            "number-is-nan": "^1.0.0"
+          }
+        },
+        "string-width": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
+          "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
+          "dev": true,
+          "requires": {
+            "code-point-at": "^1.0.0",
+            "is-fullwidth-code-point": "^1.0.0",
+            "strip-ansi": "^3.0.0"
+          }
+        },
+        "strip-ansi": {
+          "version": "3.0.1",
+          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+          "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+          "dev": true,
+          "requires": {
+            "ansi-regex": "^2.0.0"
+          }
+        }
+      }
+    },
+    "smart-buffer": {
+      "version": "4.2.0",
+      "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
+      "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
+      "dev": true
+    },
+    "socks": {
+      "version": "2.6.2",
+      "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.2.tgz",
+      "integrity": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==",
+      "dev": true,
+      "requires": {
+        "ip": "^1.1.5",
+        "smart-buffer": "^4.2.0"
+      }
+    },
+    "socks-proxy-agent": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.0.tgz",
+      "integrity": "sha512-wWqJhjb32Q6GsrUqzuFkukxb/zzide5quXYcMVpIjxalDBBYy2nqKCFQ/9+Ie4dvOYSQdOk3hUlZSdzZOd3zMQ==",
+      "dev": true,
+      "requires": {
+        "agent-base": "^6.0.2",
+        "debug": "^4.3.3",
+        "socks": "^2.6.2"
+      }
+    },
+    "source-map": {
+      "version": "0.6.1",
+      "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+      "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+      "dev": true
+    },
+    "source-map-support": {
+      "version": "0.5.21",
+      "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+      "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+      "dev": true,
+      "requires": {
+        "buffer-from": "^1.0.0",
+        "source-map": "^0.6.0"
+      }
+    },
+    "spdx-correct": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz",
+      "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==",
+      "dev": true,
+      "requires": {
+        "spdx-expression-parse": "^3.0.0",
+        "spdx-license-ids": "^3.0.0"
+      }
+    },
+    "spdx-exceptions": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+      "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
+      "dev": true
+    },
+    "spdx-expression-parse": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+      "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+      "dev": true,
+      "requires": {
+        "spdx-exceptions": "^2.1.0",
+        "spdx-license-ids": "^3.0.0"
+      }
+    },
+    "spdx-license-ids": {
+      "version": "3.0.11",
+      "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz",
+      "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==",
+      "dev": true
+    },
+    "speedometer": {
+      "version": "0.1.4",
+      "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz",
+      "integrity": "sha1-mHbb0qFp0xFUAtSObqYynIgWpQ0=",
+      "dev": true
+    },
+    "sprintf-js": {
+      "version": "1.1.2",
+      "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz",
+      "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==",
+      "dev": true,
+      "optional": true
+    },
+    "sshpk": {
+      "version": "1.17.0",
+      "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz",
+      "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==",
+      "dev": true,
+      "requires": {
+        "asn1": "~0.2.3",
+        "assert-plus": "^1.0.0",
+        "bcrypt-pbkdf": "^1.0.0",
+        "dashdash": "^1.12.0",
+        "ecc-jsbn": "~0.1.1",
+        "getpass": "^0.1.1",
+        "jsbn": "~0.1.0",
+        "safer-buffer": "^2.0.2",
+        "tweetnacl": "~0.14.0"
+      }
+    },
+    "ssri": {
+      "version": "8.0.1",
+      "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz",
+      "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==",
+      "dev": true,
+      "requires": {
+        "minipass": "^3.1.1"
+      }
+    },
+    "string_decoder": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+      "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
+      "dev": true,
+      "requires": {
+        "safe-buffer": "~5.1.0"
+      }
+    },
+    "string-width": {
+      "version": "4.2.3",
+      "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+      "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+      "dev": true,
+      "requires": {
+        "emoji-regex": "^8.0.0",
+        "is-fullwidth-code-point": "^3.0.0",
+        "strip-ansi": "^6.0.1"
+      }
+    },
+    "strip-ansi": {
+      "version": "6.0.1",
+      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+      "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+      "dev": true,
+      "requires": {
+        "ansi-regex": "^5.0.1"
+      }
+    },
+    "strip-bom": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+      "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
+      "dev": true
+    },
+    "strip-eof": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
+      "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
+      "dev": true
+    },
+    "strip-outer": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz",
+      "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==",
+      "dev": true,
+      "requires": {
+        "escape-string-regexp": "^1.0.2"
+      },
+      "dependencies": {
+        "escape-string-regexp": {
+          "version": "1.0.5",
+          "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+          "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+          "dev": true
+        }
+      }
+    },
+    "sudo-prompt": {
+      "version": "9.2.1",
+      "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz",
+      "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==",
+      "dev": true
+    },
+    "sumchecker": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz",
+      "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==",
+      "dev": true,
+      "requires": {
+        "debug": "^4.1.0"
+      }
+    },
+    "supports-color": {
+      "version": "7.2.0",
+      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+      "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+      "dev": true,
+      "requires": {
+        "has-flag": "^4.0.0"
+      }
+    },
+    "supports-preserve-symlinks-flag": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+      "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+      "dev": true
+    },
+    "tar": {
+      "version": "6.1.11",
+      "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz",
+      "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==",
+      "dev": true,
+      "requires": {
+        "chownr": "^2.0.0",
+        "fs-minipass": "^2.0.0",
+        "minipass": "^3.0.0",
+        "minizlib": "^2.1.1",
+        "mkdirp": "^1.0.3",
+        "yallist": "^4.0.0"
+      },
+      "dependencies": {
+        "mkdirp": {
+          "version": "1.0.4",
+          "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+          "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+          "dev": true
+        }
+      }
+    },
+    "temp": {
+      "version": "0.9.4",
+      "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz",
+      "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "mkdirp": "^0.5.1",
+        "rimraf": "~2.6.2"
+      },
+      "dependencies": {
+        "rimraf": {
+          "version": "2.6.3",
+          "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+          "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "glob": "^7.1.3"
+          }
+        }
+      }
+    },
+    "throttleit": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-0.0.2.tgz",
+      "integrity": "sha1-z+34jmDADdlpe2H90qg0OptoDq8=",
+      "dev": true
+    },
+    "through": {
+      "version": "2.3.8",
+      "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+      "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
+      "dev": true
+    },
+    "through2": {
+      "version": "0.2.3",
+      "resolved": "https://registry.npmjs.org/through2/-/through2-0.2.3.tgz",
+      "integrity": "sha1-6zKE2k6jEbbMis42U3SKUqvyWj8=",
+      "dev": true,
+      "requires": {
+        "readable-stream": "~1.1.9",
+        "xtend": "~2.1.1"
+      },
+      "dependencies": {
+        "isarray": {
+          "version": "0.0.1",
+          "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+          "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
+          "dev": true
+        },
+        "readable-stream": {
+          "version": "1.1.14",
+          "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
+          "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
+          "dev": true,
+          "requires": {
+            "core-util-is": "~1.0.0",
+            "inherits": "~2.0.1",
+            "isarray": "0.0.1",
+            "string_decoder": "~0.10.x"
+          }
+        },
+        "string_decoder": {
+          "version": "0.10.31",
+          "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+          "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
+          "dev": true
+        }
+      }
+    },
+    "tiny-each-async": {
+      "version": "2.0.3",
+      "resolved": "https://registry.npmjs.org/tiny-each-async/-/tiny-each-async-2.0.3.tgz",
+      "integrity": "sha1-jru/1tYpXxNwAD+7NxYq/loKUdE=",
+      "dev": true,
+      "optional": true
+    },
+    "tmp": {
+      "version": "0.0.33",
+      "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
+      "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
+      "dev": true,
+      "requires": {
+        "os-tmpdir": "~1.0.2"
+      }
+    },
+    "tmp-promise": {
+      "version": "3.0.3",
+      "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz",
+      "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==",
+      "dev": true,
+      "optional": true,
+      "requires": {
+        "tmp": "^0.2.0"
+      },
+      "dependencies": {
+        "tmp": {
+          "version": "0.2.1",
+          "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz",
+          "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==",
+          "dev": true,
+          "optional": true,
+          "requires": {
+            "rimraf": "^3.0.0"
+          }
+        }
+      }
+    },
+    "to-readable-stream": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz",
+      "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==",
+      "dev": true
+    },
+    "to-regex-range": {
+      "version": "5.0.1",
+      "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+      "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+      "dev": true,
+      "requires": {
+        "is-number": "^7.0.0"
+      }
+    },
+    "tough-cookie": {
+      "version": "2.5.0",
+      "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
+      "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
+      "dev": true,
+      "requires": {
+        "psl": "^1.1.28",
+        "punycode": "^2.1.1"
+      }
+    },
+    "tr46": {
+      "version": "0.0.3",
+      "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+      "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=",
+      "dev": true
+    },
+    "trim-repeated": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz",
+      "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=",
+      "dev": true,
+      "requires": {
+        "escape-string-regexp": "^1.0.2"
+      },
+      "dependencies": {
+        "escape-string-regexp": {
+          "version": "1.0.5",
+          "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+          "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+          "dev": true
+        }
+      }
+    },
+    "tslib": {
+      "version": "2.4.0",
+      "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
+      "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==",
+      "dev": true
+    },
+    "tunnel": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
+      "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
+      "dev": true,
+      "optional": true
+    },
+    "tunnel-agent": {
+      "version": "0.6.0",
+      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
+      "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
+      "dev": true,
+      "requires": {
+        "safe-buffer": "^5.0.1"
+      }
+    },
+    "tweetnacl": {
+      "version": "0.14.5",
+      "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
+      "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
+      "dev": true
+    },
+    "type-fest": {
+      "version": "0.13.1",
+      "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz",
+      "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==",
+      "dev": true,
+      "optional": true
+    },
+    "typedarray": {
+      "version": "0.0.6",
+      "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
+      "dev": true
+    },
+    "unique-filename": {
+      "version": "1.1.1",
+      "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
+      "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
+      "dev": true,
+      "requires": {
+        "unique-slug": "^2.0.0"
+      }
+    },
+    "unique-slug": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
+      "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
+      "dev": true,
+      "requires": {
+        "imurmurhash": "^0.1.4"
+      }
+    },
+    "universalify": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+      "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+      "dev": true
+    },
+    "uri-js": {
+      "version": "4.4.1",
+      "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+      "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+      "dev": true,
+      "requires": {
+        "punycode": "^2.1.0"
+      }
+    },
+    "url-parse-lax": {
+      "version": "3.0.0",
+      "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz",
+      "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=",
+      "dev": true,
+      "requires": {
+        "prepend-http": "^2.0.0"
+      }
+    },
+    "username": {
+      "version": "5.1.0",
+      "resolved": "https://registry.npmjs.org/username/-/username-5.1.0.tgz",
+      "integrity": "sha512-PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg==",
+      "dev": true,
+      "requires": {
+        "execa": "^1.0.0",
+        "mem": "^4.3.0"
+      }
+    },
+    "util-deprecate": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
+      "dev": true
+    },
+    "uuid": {
+      "version": "3.4.0",
+      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+      "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
+      "dev": true
+    },
+    "validate-npm-package-license": {
+      "version": "3.0.4",
+      "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+      "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+      "dev": true,
+      "requires": {
+        "spdx-correct": "^3.0.0",
+        "spdx-expression-parse": "^3.0.0"
+      }
+    },
+    "verror": {
+      "version": "1.10.0",
+      "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
+      "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
+      "dev": true,
+      "requires": {
+        "assert-plus": "^1.0.0",
+        "core-util-is": "1.0.2",
+        "extsprintf": "^1.2.0"
+      },
+      "dependencies": {
+        "core-util-is": {
+          "version": "1.0.2",
+          "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+          "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
+          "dev": true
+        }
+      }
+    },
+    "wcwidth": {
+      "version": "1.0.1",
+      "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+      "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
+      "dev": true,
+      "requires": {
+        "defaults": "^1.0.3"
+      }
+    },
+    "webidl-conversions": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+      "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=",
+      "dev": true
+    },
+    "whatwg-url": {
+      "version": "5.0.0",
+      "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+      "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=",
+      "dev": true,
+      "requires": {
+        "tr46": "~0.0.3",
+        "webidl-conversions": "^3.0.0"
+      }
+    },
+    "which": {
+      "version": "2.0.2",
+      "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+      "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+      "dev": true,
+      "requires": {
+        "isexe": "^2.0.0"
+      }
+    },
+    "which-module": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
+      "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
+      "dev": true,
+      "optional": true
+    },
+    "wide-align": {
+      "version": "1.1.5",
+      "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+      "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
+      "dev": true,
+      "requires": {
+        "string-width": "^1.0.2 || 2 || 3 || 4"
+      }
+    },
+    "word-wrap": {
+      "version": "1.2.3",
+      "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+      "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+      "dev": true,
+      "optional": true
+    },
+    "wrap-ansi": {
+      "version": "7.0.0",
+      "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+      "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+      "dev": true,
+      "requires": {
+        "ansi-styles": "^4.0.0",
+        "string-width": "^4.1.0",
+        "strip-ansi": "^6.0.0"
+      }
+    },
+    "wrappy": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
+      "dev": true
+    },
+    "xmlbuilder": {
+      "version": "9.0.7",
+      "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz",
+      "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=",
+      "dev": true
+    },
+    "xtend": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz",
+      "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=",
+      "dev": true,
+      "requires": {
+        "object-keys": "~0.4.0"
+      },
+      "dependencies": {
+        "object-keys": {
+          "version": "0.4.0",
+          "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz",
+          "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=",
+          "dev": true
+        }
+      }
+    },
+    "y18n": {
+      "version": "5.0.8",
+      "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+      "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+      "dev": true
+    },
+    "yallist": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+      "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+      "dev": true
+    },
+    "yargs": {
+      "version": "17.5.1",
+      "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.5.1.tgz",
+      "integrity": "sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==",
+      "dev": true,
+      "requires": {
+        "cliui": "^7.0.2",
+        "escalade": "^3.1.1",
+        "get-caller-file": "^2.0.5",
+        "require-directory": "^2.1.1",
+        "string-width": "^4.2.3",
+        "y18n": "^5.0.5",
+        "yargs-parser": "^21.0.0"
+      },
+      "dependencies": {
+        "yargs-parser": {
+          "version": "21.0.1",
+          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.0.1.tgz",
+          "integrity": "sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==",
+          "dev": true
+        }
+      }
+    },
+    "yargs-parser": {
+      "version": "20.2.9",
+      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+      "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
+      "dev": true
+    },
+    "yarn-or-npm": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/yarn-or-npm/-/yarn-or-npm-3.0.1.tgz",
+      "integrity": "sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ==",
+      "dev": true,
+      "requires": {
+        "cross-spawn": "^6.0.5",
+        "pkg-dir": "^4.2.0"
+      },
+      "dependencies": {
+        "cross-spawn": {
+          "version": "6.0.5",
+          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
+          "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
+          "dev": true,
+          "requires": {
+            "nice-try": "^1.0.4",
+            "path-key": "^2.0.1",
+            "semver": "^5.5.0",
+            "shebang-command": "^1.2.0",
+            "which": "^1.2.9"
+          }
+        },
+        "path-key": {
+          "version": "2.0.1",
+          "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
+          "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
+          "dev": true
+        },
+        "semver": {
+          "version": "5.7.1",
+          "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+          "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+          "dev": true
+        },
+        "shebang-command": {
+          "version": "1.2.0",
+          "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
+          "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
+          "dev": true,
+          "requires": {
+            "shebang-regex": "^1.0.0"
+          }
+        },
+        "shebang-regex": {
+          "version": "1.0.0",
+          "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
+          "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
+          "dev": true
+        },
+        "which": {
+          "version": "1.3.1",
+          "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
+          "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
+          "dev": true,
+          "requires": {
+            "isexe": "^2.0.0"
+          }
+        }
+      }
+    },
+    "yauzl": {
+      "version": "2.10.0",
+      "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
+      "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=",
+      "dev": true,
+      "requires": {
+        "buffer-crc32": "~0.2.3",
+        "fd-slicer": "~1.1.0"
+      }
+    },
+    "yocto-queue": {
+      "version": "0.1.0",
+      "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+      "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+      "dev": true
+    }
+  }
+}
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..522f38a
--- /dev/null
@@ -0,0 +1,65 @@
+{
+  "name": "crimata",
+  "productName": "Crimata",
+  "version": "1.0.0",
+  "description": "Cross-platform messenger app (Electron, Vue3)",
+  "main": "main.js",
+  "scripts": {
+    "start": "electron-forge start",
+    "test": "echo \"Error: no test specified\" && exit 1",
+    "package": "electron-forge package",
+    "make": "electron-forge make"
+  },
+  "author": "Andrew Gundersen",
+  "license": "ISC",
+  "devDependencies": {
+    "@electron-forge/cli": "^6.0.0-beta.63",
+    "@electron-forge/maker-deb": "^6.0.0-beta.63",
+    "@electron-forge/maker-rpm": "^6.0.0-beta.63",
+    "@electron-forge/maker-squirrel": "^6.0.0-beta.63",
+    "@electron-forge/maker-zip": "^6.0.0-beta.63",
+    "electron": "^18.2.3"
+  },
+  "dependencies": {
+    "electron-squirrel-startup": "^1.0.0"
+  },
+  "config": {
+    "forge": {
+      "packagerConfig": {
+        "osxSign": {
+          "identity": "Developer ID Application: Felix Rieseberg (LT94ZKYDCJ)",
+          "hardened-runtime": true,
+          "entitlements": "entitlements.plist",
+          "entitlements-inherit": "entitlements.plist",
+          "signature-flags": "library"
+        },
+        "osxNotarize": {
+          "appleId": "felix@felix.fun",
+          "appleIdPassword": "my-apple-id-password",
+        }
+      },
+      "makers": [
+        {
+          "name": "@electron-forge/maker-squirrel",
+          "config": {
+            "name": "crimata"
+          }
+        },
+        {
+          "name": "@electron-forge/maker-zip",
+          "platforms": [
+            "darwin"
+          ]
+        },
+        {
+          "name": "@electron-forge/maker-deb",
+          "config": {}
+        },
+        {
+          "name": "@electron-forge/maker-rpm",
+          "config": {}
+        }
+      ]
+    }
+  }
+}
diff --git a/src/account.js b/src/account.js
new file mode 100644 (file)
index 0000000..e339db2
--- /dev/null
@@ -0,0 +1,41 @@
+const { ipcMain } = require("electron");
+
+const { post } = require("./api");
+const store = require("./utils/store");
+const { launchSession, endSession } = require("./session");
+const { backgroundMitt, ipcEmit } = require("./utils/emitter");
+
+async function auth(_e, creds) 
+{
+    const { error, data } = await post("/auth", creds);
+
+    if (error)
+    {
+        return data;
+    }
+
+    store.set("account", data);
+    ipcEmit("account", data);
+    launchSession(data);
+};
+
+function logout(_e, reason)
+{
+    store.delete("account");
+    ipcEmit("account", false, reason);
+    endSession();
+};
+
+function initAccount()
+{
+    ipcMain.handle("auth", auth);
+    ipcMain.on("logout", logout);
+
+    const account = store.get("account");
+    if (account) launchSession(account);
+}
+
+backgroundMitt.on("logout", (reason) => logout(null, reason));
+
+
+exports.initAccount = initAccount;
diff --git a/src/api.js b/src/api.js
new file mode 100644 (file)
index 0000000..785c304
--- /dev/null
@@ -0,0 +1,38 @@
+const axios = require('axios').default;
+
+const config = require("./config");
+
+
+async function post(route, body)
+{
+    let error;
+    let data;
+
+    try
+    {
+        const res = await axios.post(config.API + route, body);
+        data = res.data;
+        error = false;
+    }
+    catch (e)
+    {
+        if (e.response)
+        {
+            data = e.response.data;
+        }
+        else if (e.request)
+        {
+            data = "Can't connect to the server."
+        }
+        else
+        {
+            data = "Unknown error occured."
+        }
+
+        error = true;
+    }
+
+    return { error, data };
+}
+
+exports.post = post;
diff --git a/src/assets/icon.icns b/src/assets/icon.icns
new file mode 100644 (file)
index 0000000..b173533
Binary files /dev/null and b/src/assets/icon.icns differ
diff --git a/src/assets/tray/000.png b/src/assets/tray/000.png
new file mode 100644 (file)
index 0000000..e6d5d32
Binary files /dev/null and b/src/assets/tray/000.png differ
diff --git a/src/assets/tray/000@2x.png b/src/assets/tray/000@2x.png
new file mode 100644 (file)
index 0000000..6d61d7f
Binary files /dev/null and b/src/assets/tray/000@2x.png differ
diff --git a/src/assets/tray/001.png b/src/assets/tray/001.png
new file mode 100644 (file)
index 0000000..8d65b38
Binary files /dev/null and b/src/assets/tray/001.png differ
diff --git a/src/assets/tray/001@2x.png b/src/assets/tray/001@2x.png
new file mode 100644 (file)
index 0000000..b7f0e2c
Binary files /dev/null and b/src/assets/tray/001@2x.png differ
diff --git a/src/assets/tray/010.png b/src/assets/tray/010.png
new file mode 100644 (file)
index 0000000..bc5718c
Binary files /dev/null and b/src/assets/tray/010.png differ
diff --git a/src/assets/tray/010@2x.png b/src/assets/tray/010@2x.png
new file mode 100644 (file)
index 0000000..6b97193
Binary files /dev/null and b/src/assets/tray/010@2x.png differ
diff --git a/src/assets/tray/011.png b/src/assets/tray/011.png
new file mode 100644 (file)
index 0000000..c2f8612
Binary files /dev/null and b/src/assets/tray/011.png differ
diff --git a/src/assets/tray/011@2x.png b/src/assets/tray/011@2x.png
new file mode 100644 (file)
index 0000000..befcd5f
Binary files /dev/null and b/src/assets/tray/011@2x.png differ
diff --git a/src/assets/tray/100.png b/src/assets/tray/100.png
new file mode 100644 (file)
index 0000000..99df7df
Binary files /dev/null and b/src/assets/tray/100.png differ
diff --git a/src/assets/tray/100@2x.png b/src/assets/tray/100@2x.png
new file mode 100644 (file)
index 0000000..2d26144
Binary files /dev/null and b/src/assets/tray/100@2x.png differ
diff --git a/src/assets/tray/101.png b/src/assets/tray/101.png
new file mode 100644 (file)
index 0000000..523bc93
Binary files /dev/null and b/src/assets/tray/101.png differ
diff --git a/src/assets/tray/101@2x.png b/src/assets/tray/101@2x.png
new file mode 100644 (file)
index 0000000..91a15be
Binary files /dev/null and b/src/assets/tray/101@2x.png differ
diff --git a/src/assets/tray/110.png b/src/assets/tray/110.png
new file mode 100644 (file)
index 0000000..ddd2524
Binary files /dev/null and b/src/assets/tray/110.png differ
diff --git a/src/assets/tray/110@2x.png b/src/assets/tray/110@2x.png
new file mode 100644 (file)
index 0000000..fd073dd
Binary files /dev/null and b/src/assets/tray/110@2x.png differ
diff --git a/src/assets/tray/111.png b/src/assets/tray/111.png
new file mode 100644 (file)
index 0000000..d2dd686
Binary files /dev/null and b/src/assets/tray/111.png differ
diff --git a/src/assets/tray/111@2x.png b/src/assets/tray/111@2x.png
new file mode 100644 (file)
index 0000000..2bc77fd
Binary files /dev/null and b/src/assets/tray/111@2x.png differ
diff --git a/src/audio.js b/src/audio.js
new file mode 100644 (file)
index 0000000..73223b2
--- /dev/null
@@ -0,0 +1,134 @@
+const nodeAudio = require("@crimata/nodeaudio");
+const { globalShortcut, ipcMain } = require("electron");
+
+const { sendMessage } = require("./io");
+const { updateTray } = require("./tray");
+const { encode, decode } = require("./codec");
+const { backgroundMitt, ipcEmit } = require("./utils/emitter");
+
+let inputDevice;
+let outputDevice;
+
+let setWriteId;
+let setStreamsId;
+
+let autoStopId; /* keep track of recording time */
+
+let playbackId; /* UID of the message being played */
+
+const streamState = { rec: false, pb: false };
+
+const /** @type {Int16Array[]} */ chunks = [];
+
+backgroundMitt.on("data", (int16Arr) => {
+    if (streamState.rec) chunks.push(int16Arr);
+});
+
+backgroundMitt.on("write", (int16Arr) => {
+    clearTimeout(setWriteId);
+    setWriteId = setTimeout(() => {
+        setPlaybackStatus(false);
+    }, 500);
+});
+
+function setStreams() 
+{
+    const defaultInput = nodeAudio.core.GetDefaultInputDevice();
+    const defaultOutput = nodeAudio.core.GetDefaultOutputDevice();
+
+    if (inputDevice !== defaultInput)
+    {
+        inputDevice = defaultInput;
+        nodeAudio.core.CloseInputStream(inputDevice);
+        nodeAudio.core.OpenInputStream(inputDevice);
+    }
+
+    if (outputDevice !== defaultOutput) 
+    {
+        outputDevice = defaultOutput;
+        nodeAudio.core.CloseOutputStream(outputDevice);
+        nodeAudio.core.OpenOutputStream(outputDevice);
+    }
+}
+
+function startRecording()
+{
+    setRecordingStatus(true);
+
+    /* 15s recording time limit */
+    autoStopId = setTimeout(stopRecording, 15000);
+}
+
+function stopRecording()
+{
+    if (autoStopId)
+    {
+        clearTimeout(autoStopId);
+    }
+
+    setRecordingStatus(false);
+
+    sendMessage({
+        category: "audio",
+        text: null,
+        blob: encode(nodeAudio.utils.mergeChunks(chunks).buffer)
+    });
+    
+    chunks.length = 0;
+}
+
+function initAudio()
+{
+    nodeAudio.core.Initialize(backgroundMitt.emit.bind(backgroundMitt));
+    setStreamsId = setInterval(setStreams, 2000);
+
+    const res = globalShortcut.register('CommandOrControl+Return', () => {
+        streamState.rec ? stopRecording() : startRecording();
+    });
+
+    if (!res) throw new Error("Failed to register recording shortcut");
+}
+
+function playback(base64String, id)
+{
+    /* terminate any current playback */
+    nodeAudio.core.CancelPlayback();
+    ipcEmit("playback", playbackId, false);
+
+    playbackId = id;
+    setPlaybackStatus(true);
+    nodeAudio.core.WriteToOutputStream(decode(base64String));
+}
+
+function terminateAudio()
+{
+    globalShortcut.unregisterAll();
+
+    /* Only terminate PA if initialized */
+    if (setStreamsId)
+    {
+        clearInterval(setStreamsId);
+        nodeAudio.core.Terminate();
+    }
+}
+
+function setRecordingStatus(status)
+{
+    streamState.rec = status;
+    ipcEmit("record", status);
+    updateTray("recording", streamState.rec);
+}
+
+function setPlaybackStatus(status)
+{
+    console.log("Setting playback status: ", status);
+
+    streamState.pb = status;
+    ipcEmit("playback", playbackId, status);
+    updateTray("playback", status);
+}
+
+exports.initAudio = initAudio;
+exports.terminateAudio = terminateAudio;
+exports.playback = playback;
+exports.streamState = streamState;
diff --git a/src/codec.js b/src/codec.js
new file mode 100644 (file)
index 0000000..3a9a8bf
--- /dev/null
@@ -0,0 +1,13 @@
+const { ipcMain } = require("electron");
+const { encode, decode } = require("base64-arraybuffer");
+
+ipcMain.handle("encode", (_e, arrayBuffer) => {
+    return encode(arrayBuffer);
+});
+
+ipcMain.handle("decode", (_e, b64string) => {
+    return decode(b64string);
+});
+
+exports.encode = encode;
+exports.decode = decode;
\ No newline at end of file
diff --git a/src/config.js b/src/config.js
new file mode 100644 (file)
index 0000000..bc47fb5
--- /dev/null
@@ -0,0 +1,11 @@
+const { app } = require("electron");
+
+const DOMAIN = "crimata.com";
+
+const prod = !process.defaultApp;
+// const prod = true;
+
+module.exports = {
+    PLATFORM: prod ? `https://app.${DOMAIN}` : `http://localhost:8760`,
+    API: prod ? `https://${DOMAIN}/api` : `http://localhost:8761`
+}
diff --git a/src/io.js b/src/io.js
new file mode 100644 (file)
index 0000000..f09d3cf
--- /dev/null
+++ b/src/io.js
@@ -0,0 +1,69 @@
+const WebSocket = require("ws");
+const { ipcMain } = require("electron");
+
+const config = require("./config");
+const { updateTray } = require("./tray");
+const { backgroundMitt, ipcEmit } = require("./utils/emitter");
+
+let connection = null;
+
+let pingId;
+let reconnectId;
+
+function connectToPlatform(account)
+{
+    if (pingId) clearInterval(pingId);
+
+    connection = new WebSocket(`${config.PLATFORM}/${account}`)
+
+    .on("open", () => pingId = setInterval(() => connection.ping(null, true), 1000))
+
+    .on("pong", () => setConnectionStatus(0))
+
+    .on("error", () => {}) /** keep silent on error */
+
+    .on("message", (payload) => backgroundMitt.emit("message", JSON.parse(payload)))
+
+    .on("close", (_code, reason) => {
+
+        setConnectionStatus(1);
+
+        if (reason)
+        {
+            if (reason == "unauthorized")
+            {
+                backgroundMitt.emit("logout", reason);
+            }
+
+            return;
+        }
+
+        reconnectId = setTimeout(() => connectToPlatform(account), 500);
+
+    });
+}
+
+function sendMessage(message)
+{
+    if (connection.readyState === WebSocket.OPEN) {
+        connection.send(JSON.stringify(message));
+    } else console.log("Failed to send message");
+}
+
+function disconnectFromPlatform()
+{
+   clearTimeout(reconnectId);
+   if (connection.open) connection.close(1000, "logout");
+}
+
+function setConnectionStatus(status)
+{
+    updateTray("disconnect", status);
+    ipcEmit("ws", status);
+}
+
+ipcMain.on("message", (_e, message) => sendMessage(message));
+
+exports.connectToPlatform = connectToPlatform;
+exports.sendMessage = sendMessage;
+exports.disconnectFromPlatform = disconnectFromPlatform;
diff --git a/src/main.js b/src/main.js
new file mode 100644 (file)
index 0000000..63e4d13
--- /dev/null
@@ -0,0 +1,28 @@
+const { app, protocol, ipcMain, nativeTheme } = require("electron");
+
+const store = require("./utils/store");
+
+const { initTray } = require("./tray");
+const { createWin } = require("./window");
+const { initAccount } = require("./account"); 
+const { terminateAudio } = require("./audio");
+
+// Assert a light theme
+nativeTheme.themeSource = "light";
+
+app.on("ready", () =>
+{
+    initTray();
+
+    createWin();
+
+    initAccount();
+});
+
+app.on("will-quit", terminateAudio);
+
+// When user clicks app icon (re-open)
+app.on("activate", createWin);
+
+// Prevents app from quitting on window close event
+app.on('window-all-closed', (e) => e.preventDefault());
diff --git a/src/render/assets/connectLogo.svg b/src/render/assets/connectLogo.svg
new file mode 100644 (file)
index 0000000..7adceea
--- /dev/null
@@ -0,0 +1,12 @@
+<svg id="logo" xmlns="http://www.w3.org/2000/svg" width="24.87" height="23.001" viewBox="0 0 24.87 23.001">
+  <g id="Group_33" data-name="Group 33">
+    <g id="Group_32" data-name="Group 32" transform="translate(0 0)">
+      <g id="Group_31" data-name="Group 31" transform="translate(0 11.948)">
+        <circle id="Ellipse_50" data-name="Ellipse 50" cx="5.527" cy="5.527" r="5.527" transform="translate(0 0)" fill="#383838"/>
+        <circle id="Ellipse_51" data-name="Ellipse 51" cx="5.527" cy="5.527" r="5.527" transform="translate(13.817 0)" fill="#383838"/>
+      </g>
+      <circle id="Ellipse_52" data-name="Ellipse 52" cx="5.527" cy="5.527" r="5.527" transform="translate(6.898)" fill="#383838"/>
+      <path id="Path_150" data-name="Path 150" d="M36.27,83.67" transform="translate(-30.733 -66.196)" fill="#ff0"/>
+    </g>
+  </g>
+</svg>
diff --git a/src/render/assets/fonts/SF-Compact-Display-Bold.otf b/src/render/assets/fonts/SF-Compact-Display-Bold.otf
new file mode 100755 (executable)
index 0000000..409e11a
Binary files /dev/null and b/src/render/assets/fonts/SF-Compact-Display-Bold.otf differ
diff --git a/src/render/assets/fonts/SF-Compact-Rounded-Bold.otf b/src/render/assets/fonts/SF-Compact-Rounded-Bold.otf
new file mode 100755 (executable)
index 0000000..04cf9fc
Binary files /dev/null and b/src/render/assets/fonts/SF-Compact-Rounded-Bold.otf differ
diff --git a/src/render/assets/fonts/SF-Pro-Text-Regular.otf b/src/render/assets/fonts/SF-Pro-Text-Regular.otf
new file mode 100755 (executable)
index 0000000..06dbe85
Binary files /dev/null and b/src/render/assets/fonts/SF-Pro-Text-Regular.otf differ
diff --git a/src/render/assets/settingsIcon.svg b/src/render/assets/settingsIcon.svg
new file mode 100644 (file)
index 0000000..25399f5
--- /dev/null
@@ -0,0 +1,7 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="25" height="5" viewBox="0 0 25 5">
+  <g id="Group_611" data-name="Group 611" transform="translate(-4032 499)">
+    <circle id="Ellipse_71" data-name="Ellipse 71" cx="2.5" cy="2.5" r="2.5" transform="translate(4032 -499)" fill="#9b9b9b"/>
+    <circle id="Ellipse_72" data-name="Ellipse 72" cx="2.5" cy="2.5" r="2.5" transform="translate(4042 -499)" fill="#9b9b9b"/>
+    <circle id="Ellipse_73" data-name="Ellipse 73" cx="2.5" cy="2.5" r="2.5" transform="translate(4052 -499)" fill="#9b9b9b"/>
+  </g>
+</svg>
diff --git a/src/render/components/app.js b/src/render/components/app.js
new file mode 100644 (file)
index 0000000..1793563
--- /dev/null
@@ -0,0 +1,44 @@
+import Login from "./login.js";
+import Splash from "./splash.js";
+import Header from "./header.js";
+import Messenger from "./messenger.js";
+
+const account = Vue.ref(null);
+
+const App =
+{
+    components: {
+        Splash,
+        Header,
+        Messenger,
+        Login
+    },
+
+    setup()
+    {
+        return { account };
+    },
+
+    template: `
+        <div id="app" v-if="account !== null">
+
+            <Header />
+
+            <Messenger v-if="account"/>
+            <Login v-else />
+
+        </div>
+
+        <Splash v-else />`
+}
+
+window.mainApi.on("account", (value, reason) => {
+    if (reason) alert(reason);
+    account.value = value;
+});
+
+export default App;
+export { account };
+
+// Is called when window is about to close or reload
+window.onbeforeunload = () => console.log("beforeunload");
diff --git a/src/render/components/bubble.js b/src/render/components/bubble.js
new file mode 100644 (file)
index 0000000..a42364c
--- /dev/null
@@ -0,0 +1,48 @@
+const Bubble =
+{
+    props: ["category", "text", "html", "blob", "modifier", "child"],
+
+    setup(props)
+    {
+        const getUrl = () => {
+            return `data:${props.category};base64,${props.blob}`;
+        }
+
+        Vue.onMounted(() => {
+
+            const el = document.getElementById("messenger");
+
+            setTimeout(() => {
+
+                el.dispatchEvent(new CustomEvent('adjust-scroll'));
+
+            }, 100);
+
+        });
+
+        if (!props.text) props.text = "..."; 
+
+        return { getUrl };
+    },
+
+    template: `
+        <div :class="'bubble ' + modifier + '-bubble ' + modifier +'-'+ child">
+
+            <small class="bubble-notify" v-if="modifier=='ai'"></small>
+
+            <p v-if="category=='text'">{{ text }}</p>
+
+            <p v-else-if="category=='audio'">{{ text }}</p>
+
+            <div v-else-if="category=='html'" v-html="html"></div>
+
+            <img v-else-if="category == 'image'" :src="getUrl()" />
+
+            <a v-else :download="text" :href="getUrl()">{{ text }}</a>
+
+        </div>`
+};
+
+export default Bubble;
+
+// TODO: should include other styling/actions for audio bubbles
diff --git a/src/render/components/context.js b/src/render/components/context.js
new file mode 100644 (file)
index 0000000..0c9e89c
--- /dev/null
@@ -0,0 +1,33 @@
+
+const Context = 
+{
+    props: ["modifier", "context", "avatar", "id"],
+
+    setup(props) {
+        const playback = Vue.ref(false);
+
+        Vue.onMounted(() => {
+            window.mainApi.on("playback", (id, status) => {
+                if (id === props.id) {
+                    playback.value = status;
+                }
+            });
+        });
+
+        return { playback };
+    },
+
+    template: `
+        <span :class="'context ' + modifier + '-context'">
+
+            <img v-show="avatar" class="context-avatar" 
+                :class="{ audio: playback }"
+                :src="'data:image/png;base64,' + avatar" 
+            />
+
+            {{ context }}
+
+        </span> `
+}
+
+export default Context;
diff --git a/src/render/components/control/draggify.js b/src/render/components/control/draggify.js
new file mode 100644 (file)
index 0000000..23d2683
--- /dev/null
@@ -0,0 +1,195 @@
+const saveLocation = "input_item_position";
+const defaultPosition = { x: 15, y: 400 };
+
+//---Dragabble Helper Funcs--------------------------------------
+
+// Calculate distance to nearest side.
+function calcSideProximity (elementX, elementLength, winW) {
+
+  // Calc right short.
+  let short = winW - elementX - elementLength;
+
+  // See if it's left short.
+  if (elementX + 20 < winW / 2) {
+    short = elementX
+  }
+
+  return short
+}
+
+// Update elementX or elementY value on window resize
+function calcPosition (elementPosition, elementLength, percent, short, win) {
+
+    // Is it close to the right/bottom side?
+    if (percent > 0.75) {
+        elementPosition = win - short - elementLength;
+    }
+
+    // Is it not close to a side?
+    if (percent < 0.75 && percent > 0.25) {
+        elementPosition = win * percent
+    }
+
+    return elementPosition
+}
+
+function draggify(elementId, parentId, margin) {
+
+    let element;
+    let parent;
+
+    /* only compatible with elements having equal width and height */
+    let elementLength;
+
+    // Cords of inputItem.
+    const elementX = Vue.ref();
+    const elementY = Vue.ref();
+
+    // Position of inputItem on terms of percentage of window.
+    let percentX;
+    let percentY;
+
+    // How close inputItem is to closest X or Y side.
+    let xShort;
+    let yShort;
+
+    //---Reposition Anime-----------------------------------------------
+
+    // Move element to target smoothly.
+    const repositionAnime = (xChange, yChange) => {
+
+        const xStep = xChange / 1000;
+        const yStep = yChange / 1000;
+
+        for (let i = 1; i <= 1000; i++) {
+
+          setTimeout(() => {
+            elementX.value += xStep;
+            elementY.value += yStep;
+          }, 30) // 60fps
+
+        }
+    }
+
+    //---Event Handlers-----------------------------------------------
+
+    // Update the position of inputItem on mouse dragging.
+    const onMouseMove = (e) => {
+      e.preventDefault();
+
+      elementX.value = element.offsetLeft + e.movementX;
+      elementY.value = element.offsetTop + e.movementY;
+    }
+
+    // Add an event listener for dragging.
+    const onMouseDown = (e) => {
+      e.preventDefault();
+      window.addEventListener('mousemove', onMouseMove);
+      window.addEventListener('mouseup', onMouseUp);
+    }
+
+    // Update position references when user is done moving targetEl.
+    const onMouseUp = (e) => {
+      e.preventDefault();
+
+      window.removeEventListener('mousemove', onMouseMove);
+      window.removeEventListener('mouseup', onMouseUp);
+
+      // See if and calculate reposition.
+      let x = 0; // vector change
+      let y = 0;
+
+      const winW = parent.clientWidth;
+      const winH = parent.clientHeight;
+
+      if (elementX.value < 0) {
+        x = (elementX.value - margin)*-1
+      }
+
+      if (elementX.value > winW - elementLength) {
+        const b = winW - elementLength - margin;
+        x = (elementX.value - b)*-1
+      }
+
+      // Reposition y
+      if (elementY.value < 0) {
+        y = (elementY.value - margin)*-1
+      }
+
+      if (elementY.value > winH - elementLength) {
+        const d = winH - elementLength - margin;
+        y = (elementY.value - d)*-1
+      }
+
+      // Reposition if needed.
+      if (x !== 0 || y !== 0) repositionAnime(x, y);
+
+      xShort = calcSideProximity(elementX.value, elementLength, winW);
+      yShort = calcSideProximity(elementY.value, elementLength, winH);
+
+      // Update percentages.
+      percentX = elementX.value / winW;
+      percentY = elementY.value / winH;
+
+      // Save position.
+      savePosition();
+    }
+
+    // Update position of targetEl on windowResize.
+    const onWindowResize = (_e) => {
+
+      elementX.value = calcPosition(elementX.value, elementLength, percentX, xShort, parent.clientWidth);
+      elementY.value = calcPosition(elementY.value, elementLength, percentY, yShort, parent.clientHeight);
+
+      savePosition();
+    }
+
+    const savePosition = () => {
+      window.localStorage.setItem(saveLocation, JSON.stringify({
+        x: elementX.value,
+        y: elementY.value
+      }));
+    }
+
+    //---------------------------------------------------------------
+
+    Vue.onMounted(() => {
+
+      element = document.getElementById(elementId);
+      parent = document.getElementById(parentId);
+
+      elementLength = element.offsetWidth;
+
+      // Initialize the positional references.
+      percentX = elementX.value / parent.clientWidth;
+      percentY = elementY.value / parent.clientHeight;
+
+      xShort = calcSideProximity(elementX.value, elementLength, parent.clientWidth);
+      yShort = calcSideProximity(elementX.value, elementLength, parent.clientHeight);
+
+      // Then, we can listen for window resize (and mousedown).
+      element.addEventListener("mousedown", onMouseDown);
+      parent.addEventListener('resize', onWindowResize)
+    });
+
+    // remove event listeners on component dismount.
+    Vue.onUnmounted(() => {
+        element.removeEventListener('mousedown', onMouseDown);
+        parent.removeEventListener('resize', onWindowResize)
+        parent.removeEventListener('mouseup', onMouseUp)
+        parent.removeEventListener('mousemove', onMouseMove);
+    });
+
+    // Try loading initPosition, otherwise set default values
+    let initPosition;
+    const rawData = window.localStorage.getItem("saveLocation")
+    rawData ? initPosition = JSON.parse(rawData) : initPosition = defaultPosition;
+
+    elementX.value = initPosition.x;
+    elementY.value = initPosition.y;
+
+    return { elementX, elementY };
+
+}
+
+export default draggify;
diff --git a/src/render/components/control/drop.js b/src/render/components/control/drop.js
new file mode 100644 (file)
index 0000000..ac9c790
--- /dev/null
@@ -0,0 +1,24 @@
+const onDrop = async (e) => {
+    const file = e.dataTransfer.items[0].getAsFile();
+
+    if (file.size >= 1 * 1000 * 1000) {
+        alert("File must be under 1MB.");
+        return;
+    }
+
+    const buffer = await file.arrayBuffer();
+    const b64String = await window.mainApi.invoke("encode", buffer);
+
+    let category = "file";
+    if (file.type.startsWith("image/")) {
+        category = "image"
+    }
+
+    window.mainApi.send("message", {
+        category: category,
+        text: file.name,
+        blob: b64String
+    });
+}
+
+export default onDrop;
diff --git a/src/render/components/control/scroll.js b/src/render/components/control/scroll.js
new file mode 100644 (file)
index 0000000..3e9a0bf
--- /dev/null
@@ -0,0 +1,20 @@
+let el;
+
+const scroll = () => {
+    if (!el) {
+        el = document.getElementById("messenger");
+        window.addEventListener('resize', scroll);
+    }
+    el.scrollTo({
+      top: el.scrollHeight - el.clientHeight,
+      behavior: 'smooth'
+    });
+}
+
+export default scroll;
+
+// const isBottom = () => {
+//   if (el) {
+//     return el.scrollHeight - el.clientHeight <= el.scrollTop + 1;
+//   }
+// }
\ No newline at end of file
diff --git a/src/render/components/control/text.js b/src/render/components/control/text.js
new file mode 100644 (file)
index 0000000..cd18db9
--- /dev/null
@@ -0,0 +1,84 @@
+const inputLength = 230;
+
+const metaKeys = [
+    "Tab",
+    "CapsLock",
+    "Shift",
+    "Control",
+    "Alt",
+    "Meta",
+    " ",
+    "ArrowLeft",
+    "ArrowRight",
+    "ArrowUp",
+    "ArrowDown",
+    "Enter",
+    "Backspace",
+    "Escape"
+];
+
+function useText(elementId, parentId, left)
+{
+    let el;
+    let parent;
+
+    const show = Vue.ref(false);
+    const leftSide = Vue.ref(false);
+
+    const calcSide = () => {
+        parent.clientWidth - left.value < inputLength ? leftSide.value = true : leftSide.value = false;
+    }
+
+    /* handle user typing */
+    Vue.onMounted(() => {
+
+        el = document.getElementById(elementId);
+        parent = document.getElementById(parentId);
+
+        window.addEventListener("keydown", (e) => {
+
+            if (!show.value && !metaKeys.includes(e.key) && !e.ctrlKey)
+            {
+                show.value = true;
+            }
+            else if (show.value && ((el.value.length === 1 && e.key === "Backspace") || e.key === "Escape"))
+            {
+                show.value = false;
+            }
+
+            if (e.key === "Enter" && el.value)
+            {
+                if (el.value.length >= 250) {
+                    alert("250 character limit")
+                    return;
+                }
+
+                window.mainApi.send("message", { 
+                    category: "text", 
+                    text: el.value,
+                    blob: null
+                });
+
+                show.value = false;
+            }
+        });
+
+        calcSide();
+
+    });
+
+    Vue.watch(left, calcSide);
+
+    Vue.watch(show, (c, _p) => {
+        if (c) { 
+            el.focus();
+        } else { 
+            el.value = "";
+            el.blur();
+        }
+    });
+
+    return { leftSide, show };
+}
+
+export default useText;
diff --git a/src/render/components/control/valid.js b/src/render/components/control/valid.js
new file mode 100644 (file)
index 0000000..dbb710e
--- /dev/null
@@ -0,0 +1,23 @@
+export const isEmail = (value) => {
+    console.log(value);
+    if (!/(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/.test(value)) {
+        return "Not a valid email."
+    }
+}
+
+export const isPassword = (value) => {
+    if (!/^(?=.*[0-9])(?=.*[!@#$%^&*])[a-zA-Z0-9!@#$%^&*]{6,16}$/.test(value)) {
+        return "Password must have symbol, number, uppercase and be 6-16 length.";
+    }
+}
+
+/**
+ * Name is optional and therefore doesn't return error if no value.
+ */
+export const isName = (value) => {
+    if (value) {
+        if (!/^([a-zA-Z ]){5,30}$/.test(value)) {
+            return "Name must be at least 5 long.";
+        }
+    }
+}
\ No newline at end of file
diff --git a/src/render/components/form.js b/src/render/components/form.js
new file mode 100644 (file)
index 0000000..ecc02f3
--- /dev/null
@@ -0,0 +1,86 @@
+
+// Basic debounce implentation
+const debounce = (fn, delay) => {
+    let timeoutId;
+    return (...args) => {
+        if (timeoutId) clearTimeout(timeoutId);
+        timeoutId = setTimeout(() => {
+            fn(...args);
+        }, delay);
+    }
+}
+
+/**
+ * Dynamic form component with auto submission and validation.
+ * 
+ * props
+ *     .fields => List of field objects
+ *     .channel => e.g. "/login"
+ *     .modifier => Form description
+ */
+const SmartForm = 
+{
+    props: ["fields", "channel", "modifier"],
+
+    setup(props)
+    {
+        // Error log below form
+        const log = Vue.ref(props.modifier);
+
+        /**
+         * Valid and submit form data to channel.
+         */
+        const submit = async () => {
+
+            // Validate each field
+            for (let field of props.fields) {
+                const error = field.valid(field.value);
+                if (error) return error;
+            }
+
+            // Reduce fields into the form
+            const form = props.fields.reduce((v, n) => {
+                v[n.name] = n.value;
+                return v;
+            }, {});
+
+            console.log("Submitting =>", form);
+            return await window.mainApi.invoke(props.channel, form);
+        }
+
+        /**
+         * Wrapper for submit that is debounced and updates UI elements
+         */
+        const preSub = debounce(async () => {
+
+            const error = await submit();
+
+            log.value = error ? error : props.modifier
+
+        }, 2000);
+
+        return { preSub, log };
+    },
+
+    template: `
+        <form id="smart-form" class="smart-form" v-on:input="preSub">
+
+            <div v-for="field in fields" style="display:flex">
+
+                <input type="text" class="text-field" 
+                    v-model="field.value"
+                    :name="field.name"
+                    :placeholder="field.placeholder"
+                />
+
+            </div>
+
+            <div class="smart-form-logs">{{ log }}</div>
+
+        </form>`
+}
+
+export default SmartForm;
+
+
+
diff --git a/src/render/components/header.js b/src/render/components/header.js
new file mode 100644 (file)
index 0000000..5aee0de
--- /dev/null
@@ -0,0 +1,23 @@
+const Header =
+{
+    setup() {
+        const onNavBar = (command) => window.mainApi.send("nav", command);
+        return { onNavBar };
+    },
+
+    template: `
+    <button id="header-titlebar" />
+
+    <span id="header-menu">
+        <button
+            class="header-menu-button header-exit-button button"
+            @click.prevent="onNavBar('close')"
+        />
+        <button
+            class="header-menu-button header-min-button button"
+            @click.prevent="onNavBar('min')"
+        />
+    </span> `
+}
+
+export default Header;
\ No newline at end of file
diff --git a/src/render/components/input.js b/src/render/components/input.js
new file mode 100644 (file)
index 0000000..b556dd0
--- /dev/null
@@ -0,0 +1,55 @@
+import useText from "./control/text.js";
+import draggify from "./control/draggify.js";
+
+const Input = 
+{
+    props: ["person"],
+
+    setup(props)
+    {
+        const initials = Vue.ref("");
+
+        const recording = Vue.ref(false);
+
+        const { elementX, elementY } =  draggify("input", "app", 15);
+
+        const { leftSide, show } = useText("input-text", "app", elementX);
+
+        window.mainApi.on("record", (status) => recording.value = status);
+
+        Vue.watch(() => props.person, (c, _p) => initials.value = getInitials(c));
+
+        return { initials, elementX, elementY, recording, leftSide, show };
+    },
+
+    template: `
+        <div id="input" :class="{ audio: recording }"
+            :style="{ top: elementY + 'px', left: elementX + 'px' }"
+        >
+
+            <div id="input-icon">{{ initials }}</div>
+
+            <input 
+                id="input-text" type="text"
+                :class="[
+                    { leftSide: leftSide }, 
+                    { show: show }, 
+                    { recording: recording }
+                ]"
+            />
+
+        </div> `
+}
+
+function getInitials(name)
+{
+    let rgx = new RegExp(/(\p{L}{1})\p{L}+/, 'gu');
+
+    let initials = [...name.matchAll(rgx)] || [];
+
+    return (
+      (initials.shift()?.[1] || '') + (initials.pop()?.[1] || '')
+    ).toUpperCase();
+}
+
+export default Input;
diff --git a/src/render/components/login.js b/src/render/components/login.js
new file mode 100644 (file)
index 0000000..d1df74a
--- /dev/null
@@ -0,0 +1,44 @@
+import SmartForm from "./form.js";
+import { isEmail, isPassword, isName } from "./control/valid.js";
+
+const Login =
+{
+    components: {
+        SmartForm
+    },
+
+    setup()
+    {
+        return { isEmail, isPassword, isName };
+    },
+
+    template: `
+        <div id="login">
+
+            <SmartForm 
+                :fields="[{
+                    name: 'email',
+                    value: null,
+                    placeholder: 'Email',
+                    valid: isEmail
+                },
+                {
+                    name: 'password',
+                    value: null,
+                    placeholder: 'Password',
+                    valid: isPassword
+                },
+                {
+                    name: 'name',
+                    value: null,
+                    placeholder: 'Name',
+                    valid: isName
+                }]"
+                :channel="'auth'"
+                :modifier="'Login or enter name to register.'"
+            />
+
+        </div>`
+}
+
+export default Login;
diff --git a/src/render/components/message.js b/src/render/components/message.js
new file mode 100644 (file)
index 0000000..ce7231b
--- /dev/null
@@ -0,0 +1,62 @@
+import Bubble from "./bubble.js";
+import Context from "./context.js";
+
+const Message = 
+{
+    components: {
+        Bubble,
+        Context
+    },
+
+    props: ["modifier", "content", "context", "avatar", "id", "seen"],
+
+    setup(props)
+    {
+        return { calcChild };
+    },
+
+    template: `
+        <div :id="id" :class="'message ' + modifier + '-message'">
+
+            <Bubble 
+                v-for="(c, index) in content"
+                :id="'bubble-' + id + '-' + index"
+                :category="c.category"
+                :text="c.text"
+                :html="c.html"
+                :blob="c.blob"
+                :modifier="modifier"
+                :child="calcChild(index, content.length)"
+            />
+
+            <Context
+                :modifier="modifier"
+                :context="context"
+                :avatar="avatar"
+                :id="id"
+            />
+
+        </div> `
+}
+
+function calcChild(index, len)
+{
+  if (len === 1)
+  {
+    return "none-child";
+  } 
+  else if (index === 0) 
+  {
+    return "first-child";
+  } 
+  else if (index === len - 1) 
+  {
+    return "last-child";
+  } 
+  else 
+  {
+    return "middle-child";
+  }
+}
+
+export default Message;
diff --git a/src/render/components/messenger.js b/src/render/components/messenger.js
new file mode 100644 (file)
index 0000000..572613d
--- /dev/null
@@ -0,0 +1,86 @@
+import onDrop from "./control/drop.js";
+import scroll from "./control/scroll.js";
+
+import WS from "./ws.js";
+import Input from "./input.js";
+import Settings from "./settings.js";
+import Message from "./message.js";
+
+const Messenger = {
+
+    components: {
+        WS,
+        Settings,
+        Message,
+        Input
+    },
+
+    setup()
+    {
+        const person = Vue.ref("");
+        const messages = Vue.ref([]);
+
+        let current = Vue.ref();
+
+        Vue.onMounted(() => {
+
+            window.mainApi.on("message", (update) => {
+
+                if (update.person)
+                {
+                    person.value = update.person;
+                    messages.value = update.messages;
+                    current.value = messages.value.at(-1);
+                }
+                else if (update.name)
+                {
+                    person.value = update.name;
+                }
+                else if (update.modifier)
+                {
+                    messages.value.push(update); 
+                    current.value = update;
+                }
+                else if (update.category)
+                {
+                    current.value.content.push(update);
+                }
+                else if (update.context)
+                {
+                    current.value.context = update.context;
+                }
+                else
+                {
+                    current.value.content.at(-1).text = update.text;
+                }
+
+                setTimeout(scroll, 10);
+                
+            });
+
+            window.mainApi.send("messenger");
+        });
+
+        return { person, messages, onDrop };
+    },
+
+    template: `
+        <Settings />
+        <WS />
+        <Input :person="person" />
+
+        <div id="messenger"
+            @drop="onDrop($event)"
+            @dragover.prevent
+            @dragenter.prevent
+        >
+
+            <Message 
+                v-for="message in messages" 
+                v-bind="message" 
+            />
+            
+        </div>`
+}
+
+export default Messenger;
diff --git a/src/render/components/settings.js b/src/render/components/settings.js
new file mode 100644 (file)
index 0000000..e34e1a5
--- /dev/null
@@ -0,0 +1,40 @@
+
+const Settings = 
+{
+    setup() {
+        const active = Vue.ref(false);
+
+        function hideSettings(e) {
+            if (e.key == "Escape") {
+                active.value = false;
+                window.removeEventListener("keydown", hideSettings);
+            }
+        }
+
+        function showSettings() {
+            active.value = true;
+            window.addEventListener("keydown", hideSettings);
+        }
+
+        const logout = async () => {
+            await window.mainApi.send("logout");
+        }
+
+        return { showSettings, active, logout, window };
+    },
+
+    template: `
+        <div v-if="active" id="settings">
+
+            <button class="settings-logout-button button" @click="logout">
+                Logout
+            </button>
+
+        </div>
+
+        <button v-else class="settings-icon" @click="showSettings">
+            <img :src="window.path + 'assets/settingsIcon.svg'">
+        </button>`
+}
+
+export default Settings;
\ No newline at end of file
diff --git a/src/render/components/splash.js b/src/render/components/splash.js
new file mode 100644 (file)
index 0000000..220eaad
--- /dev/null
@@ -0,0 +1,50 @@
+const Splash =
+{
+    template: `
+      <div id="splash">
+        <svg
+          xmlns="http://www.w3.org/2000/svg"
+          width="57.046"
+          height="52.759"
+          viewBox="0 0 57.046 52.759"
+        >
+          <g transform="translate(-4127 -507)">
+            <g transform="translate(3949 332.206)">
+              <g transform="translate(178 174.794)">
+                <g transform="translate(0 27.405)">
+                  <circle
+                    cx="12.677"
+                    cy="12.677"
+                    r="12.677"
+                    transform="translate(0 0)"
+                    fill="#383838"
+                  />
+                  <circle
+                    cx="12.677"
+                    cy="12.677"
+                    r="12.677"
+                    transform="translate(31.692 0)"
+                    fill="#383838"
+                  />
+                </g>
+                <circle
+                  cx="12.677"
+                  cy="12.677"
+                  r="12.677"
+                  transform="translate(15.822 0)"
+                  fill="#383838"
+                />
+                <path
+                  d="M36.27,83.67"
+                  transform="translate(-23.569 -43.588)"
+                  fill="#ff0"
+                />
+              </g>
+            </g>
+          </g>
+        </svg>
+      </div>
+    `
+}
+
+export default Splash;
\ No newline at end of file
diff --git a/src/render/components/ws.js b/src/render/components/ws.js
new file mode 100644 (file)
index 0000000..265915b
--- /dev/null
@@ -0,0 +1,35 @@
+
+const WS =
+{
+    setup() 
+    {
+        const status = Vue.ref();
+
+        Vue.onMounted(() => {
+
+            window.mainApi.on("ws", (val) => {
+                status.value = val;
+            });
+
+        }); 
+
+        return { status, window }
+    },
+
+    template: `
+        <div id="ws">
+
+            <img id="ws-logo" :src="window.path + 'assets/connectLogo.svg'"
+                :class="{ move: status }"
+            >
+
+            <div id="ws-dots"
+                :class="{ move: status }"
+            >
+                <div class="ws-dot"></div>
+            </div>
+
+        </div> `
+}
+
+export default WS;
\ No newline at end of file
diff --git a/src/render/index.html b/src/render/index.html
new file mode 100644 (file)
index 0000000..e45bb6c
--- /dev/null
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+    <meta charset="utf-8">
+    <link rel="stylesheet" href="./main.css">
+</head>
+<body>
+
+    <div id="app"></div>
+    
+    <!-- vue@3.2.11 -->
+    <script src="./vendor/vue.js"></script>
+    
+    <script type="module" src="./index.js"></script>
+    
+</body>
+</html>
\ No newline at end of file
diff --git a/src/render/index.js b/src/render/index.js
new file mode 100644 (file)
index 0000000..d7df8b0
--- /dev/null
@@ -0,0 +1,5 @@
+import App from "./components/app.js";
+
+window.path = "./";
+
+Vue.createApp(App).mount("#app");
diff --git a/src/render/main.css b/src/render/main.css
new file mode 100644 (file)
index 0000000..cd26154
--- /dev/null
@@ -0,0 +1,582 @@
+
+@font-face {
+  font-family: "Default";
+  src: url("assets/fonts/SF-Pro-Text-Regular.otf");
+}
+
+@font-face {
+  font-family: "Compact";
+  src: url("assets/fonts/SF-Compact-Display-Bold.otf");
+}
+
+@font-face {
+  font-family: "Rounded";
+  src: url("assets/fonts/SF-Compact-Rounded-Bold.otf");
+}
+
+html, body {
+  margin: 0;
+  padding: 0;
+  /*background-color: rgba(235, 235, 235, 0.75);*/
+}
+
+/* The first word of the class is the component that it modifys. */
+
+#splash {
+  width: 100%;
+  height: 100%;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+}
+
+#app {
+  position: relative; /* must explicitly be declared */
+  font-family: "Default";
+  -webkit-font-smoothing: antialiased;
+  height: 100vh; /* 100% for website */
+  width: 100vw; /* 100% for website */
+  border-radius: 15px;
+}
+
+#header-titlebar {
+  position: absolute;
+  width: 100%;
+  height: 54px;
+  opacity: 0.75;
+  background-color: #EBEBEB;
+  -webkit-app-region: drag;
+  border: none;
+  outline: none;
+  z-index: 1;
+  border-top-left-radius: 15px;
+  border-top-right-radius: 15px;
+}
+
+.contacts {
+  margin: 0;
+  padding: 0;
+  border-radius: inherit;
+  background-color: #DBDBDB;
+}
+
+.contacts > li {
+  padding: 12px;
+  display: flex; 
+}
+
+.contacts img {
+  height: 30px;
+  border-radius: 50%;
+}
+
+.contacts .info {
+  margin-left: 10px;
+  margin-right: 10px;
+}
+
+.contacts .name {
+
+}
+
+.contacts .email {
+  font-family: "Compact";
+  font-size: 12px;
+  color: #898989;
+  overflow: w;
+  word-wrap: break-word;
+}
+
+#header-menu {
+  position: absolute;
+  margin-left: 20px;
+  margin-top: 20px;
+  z-index: 2;
+}
+
+.header-menu-button {
+  min-width: 14px;
+  min-height: 14px;
+  border-radius: 50%;
+}
+
+.header-exit-button {
+  background-color: #FF6157;
+}
+
+.header-exit-button:active {
+  background: #c14645;
+}
+
+.header-min-button {
+  background-color: #FFC12F;
+  margin-left: 8px;
+}
+
+.header-min-button:active {
+  background-color: #c08e38;
+}
+
+#login {
+  width: 100vw;
+  height: 100vh;
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  justify-content: center;
+}
+
+#messenger {
+  width: 100%;
+  height: 100%;
+  overflow: auto;
+}
+
+/* hide native scrollbar */
+#messenger::-webkit-scrollbar {
+  display: none;
+}
+
+#ws {
+  position: absolute;
+  width: 100%;
+  height: 54px;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  z-index: 1;
+}
+
+#ws-logo {
+  transition: all 0.5s;
+}
+
+#ws-logo.move {
+  transform: translateX(15px);
+}
+
+#ws-dots {
+  opacity: 0;
+  transition: all 0.5s;
+}
+
+#ws-dots.move {
+  opacity: 1;
+  transform: translateX(-15px);
+}
+
+.ws-dot {
+  width: 6px;
+  height: 6px;
+  border-radius: 50%;
+  background-color: #48E065;
+  position: relative;
+  transform: translateX(-15px);
+  animation: ws-dot-flashing 1s infinite linear alternate;
+  animation-delay: .25s;
+}
+
+.ws-dot::before, .ws-dot::after {
+  content: '';
+  display: inline-block;
+  position: absolute;
+  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
+}
+
+.ws-dot::before {
+  width: 6px;
+  height: 6px;
+  border-radius: 50%;
+  background-color: #48E065;
+  left: -9px;
+  animation: ws-dot-flashing 1s infinite alternate;
+  animation-delay: 0s;
+}
+
+.ws-dot::after {
+  width: 6px;
+  height: 6px;
+  border-radius: 50%;
+  background-color: #48E065;
+  left: 9px;
+  animation: ws-dot-flashing 1s infinite alternate;
+  animation-delay: 0.5s;
+}
+
+@keyframes ws-dot-flashing {
+  0% {
+    background-color: #48E065;
+  }
+  50%,
+  100% {
+    background-color: #9B9B9B;
+  }
+}
+
+#input {
+  position: absolute;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  padding: 0;
+  width: 40px;
+  height: 40px;
+  z-index: 3;
+  /* To prevent window drag when overlapping with titlebar. */
+  -webkit-app-region: no-drag;
+  border-radius: 50%;
+  /* Set opacity here to not affect child. */
+  background-color: rgba(235, 235, 235, 0.75);
+  cursor: pointer;
+  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
+}
+
+#input-text {
+  position: absolute;
+  min-width: 150px;
+  height: 16px;
+  border-radius: 18px;
+  padding: 10px;
+  outline: none;
+  border: none;
+  font-size: 14px;
+  pointer-events: none;
+  background-color: white;
+  z-index: -1;
+  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
+  transform-origin: center;
+  opacity: 0;
+  transform: translateX(70%);
+  transition: all 0.5s;
+}
+
+#input-text.show {
+  opacity: 1;
+}
+
+#input-text.leftSide {
+  transform: translateX(-70%);
+}
+
+#settings {
+  position: absolute;
+  width: 100%;
+  height: 100%;
+  background-color: rgba(235, 235, 235, 0.75);
+  z-index: 4;
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  align-items: center;
+  animation-name: settings-appear;
+  animation-duration: 0.5s;
+  border-radius: inherit;
+}
+
+@keyframes settings-appear {
+  from {
+    background-color: rgba(235, 235, 235, 0);
+  }
+  to {
+    background-color: rgba(235, 235, 235, 0.75);
+  }
+}
+
+.settings-icon {
+  position: absolute;
+  right: 0;
+  border: none;
+  outline: none;
+  display: flex;
+  flex-direction: row;
+  padding: 5px;
+  margin-right: 20px;
+  margin-top: 19px;
+  z-index: 2;
+  background-color: Transparent;
+}
+
+.settings-icon:hover {
+  cursor: pointer;
+}
+
+.settings-account {
+  font-size: 12px;
+  font-weight: bold;
+  margin-bottom: 25px;
+}
+
+.settings-logout-button {
+  font-family: "Compact";
+  background-color: #B7B7B7;
+  padding: 10px 20px;
+  border-radius: 20px;
+  font-size: 14px;
+}
+
+.settings-logout-button:hover {
+  cursor: pointer;
+}
+
+.settings-version {
+  position: absolute;
+  left: 50%;
+  top: 75%;
+  transform: translate(-50%, -50%);
+  font-size: 12px;
+  font-weight: bold;
+  color: #575757;
+}
+
+.message {
+  width: inherit;
+  display: flex;
+  flex-direction: column;
+  padding-top: 9px;
+  padding-bottom: 9px;
+  animation-name: message-init-anim;
+  animation-duration: 0.25s;
+}
+
+@keyframes message-init-anim {
+  from {
+    opacity: 0;
+  } to {
+    opacity: 1;
+  }
+}
+
+.message:first-child {
+  margin-top: 55px;
+}
+
+.message:last-child {
+  margin-bottom: 6px;
+}
+
+.message-session {
+  width: 100vw;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  font-family: "Compact";
+  font-size: 12px;
+  color: #9B9B9B;
+  margin-bottom: 18px;
+}
+
+.client-message {
+  align-items: flex-end;
+}
+
+.ai-message {
+  align-items: flex-start;
+}
+
+.admin-message {
+  align-items: center;
+}
+
+.bubble {
+  position: relative;
+  max-width: 66%;
+  font-size: 14px;
+  border-radius: 18px;
+  margin-bottom: 4px;
+  overflow-wrap: break-word;
+}
+
+.bubble-notify {
+  position: absolute;
+  width: 12px;
+  height: 12px;
+  border-radius: 50%;
+  background-color: #58D9FF;
+  top: -5px;
+  left: -5px;
+  border: 2px solid #EBEBEB;
+  transform: scale(0);
+  animation-name: bubble-notify-anim;
+  animation-duration: 5s;
+}
+
+@keyframes bubble-notify-anim {
+  0%, 90% {
+    transform: scale(1);
+  }
+  100% {
+    transform: scale(0);
+  }
+}
+
+.ai-bubble {
+  background-color: #FFFFFF;
+  margin-left: 15px;
+}
+
+.client-bubble {
+  color: white;
+  background-color: #58C4FD;
+  margin-right: 15px;
+}
+
+.ai-first-child {
+  border-bottom-left-radius: 9px;
+}
+
+.ai-middle-child {
+  border-top-left-radius: 9px;
+  border-bottom-left-radius: 9px;
+}
+
+.ai-last-child {
+  border-top-left-radius: 9px;
+}
+
+.client-first-child {
+  border-bottom-right-radius: 9px;
+}
+
+.client-middle-child {
+  border-top-right-radius: 9px;
+  border-bottom-right-radius: 9px;
+}
+
+.client-last-child {
+  border-top-right-radius: 9px;
+}
+
+.bubble > p {
+  margin: 0px;
+  padding: 10px;
+}
+
+.bubble > div {
+  border-radius: inherit;
+}
+
+.bubble > img {
+  border-radius: inherit;
+  display: block;
+  max-width: 100%;
+}
+
+.bubble a {
+  display: inline-block;
+  font-family: "Rounded";
+  text-decoration: none;
+  border-radius: inherit;
+  background-color: #D9D9D9;
+  padding: 10px;
+  color: #727272;
+}
+
+.context {
+  position: relative;
+  min-height: 14px;
+  display: flex;
+  align-items: center;
+  font-family: "Compact";
+  font-size: 12px;
+  margin-top: 5px;
+}
+
+.ai-context {
+  margin-left: 15px;
+}
+
+.client-context {
+  margin-right: 15px;
+}
+
+.context-avatar {
+  margin-right: 5px;
+  border-radius: 50%;
+  height: 30px;
+}
+
+/* ---------- shared between components ---------- */
+
+.button {
+  border: none;
+  outline: none;
+  text-decoration: none;
+}
+
+/*.button:hover {
+  cursor: pointer;
+}*/
+
+/* shake a div to signal error*/
+.shake {
+  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
+  transform: translate3d(0, 0, 0);
+  backface-visibility: hidden;
+  perspective: 1000px;
+}
+
+@keyframes shake {
+  10%, 90% {
+    transform: translate3d(-1px, 0, 0);
+  }
+  
+  20%, 80% {
+    transform: translate3d(2px, 0, 0);
+  }
+
+  30%, 50%, 70% {
+    transform: translate3d(-4px, 0, 0);
+  }
+
+  40%, 60% {
+    transform: translate3d(4px, 0, 0);
+  }
+}
+
+.audio {
+  animation-name: audio-anim;
+  animation-duration: 2s;
+  animation-iteration-count: infinite;
+}
+
+@keyframes audio-anim {
+  0%,
+  100% {
+    box-shadow: 0 0 0 0.4em rgba(195, 195, 195, 0.4), 0 0 0 0.25em rgba(195, 195, 195, 0.15);
+  }
+  25% {
+    box-shadow: 0 0 0 0.15em rgba(195, 195, 195, 0.15), 0 0 0 0.4em rgba(195, 195, 195, 0.3);
+  }
+  50% {
+    box-shadow: 0 0 0 0.55em rgba(195, 195, 195, 0.55), 0 0 0 0.15em rgba(195, 195, 195, 0.05);
+  }
+  75% {
+    box-shadow: 0 0 0 0.25em rgba(195, 195, 195, 0.25), 0 0 0 0.55em rgba(195, 195, 195, 0.45);
+  }
+}
+
+.smart-form {
+  width: 225px;
+  display: flex;
+  flex-direction: column;
+  justify-content: flex-start;
+}
+
+.text-field {
+  width: 100%;
+  padding: 16px;
+  background: none;
+  border: none;
+  margin: 4px;
+  font-size: 14px;
+  border-radius: 10px;
+  background-color: #d1d1d1;
+  outline: none;
+}
+
+.smart-form-logs {
+  font-family: "Compact";
+  font-size: 12px;
+  text-align: left;
+  margin-left: 10px;
+}
diff --git a/src/render/preload.js b/src/render/preload.js
new file mode 100644 (file)
index 0000000..adef673
--- /dev/null
@@ -0,0 +1,53 @@
+const { contextBridge, ipcRenderer } = require("electron");
+
+/** The main <-> render interface */
+
+const validFromMainChannels = [
+    "playback",
+    "account", 
+    "message",
+    "record",
+    "ws"
+];
+
+const validToMain = [
+    "messenger",
+    "message",
+    "logout",
+    "encode",
+    "auth",
+    "nav"
+]
+
+ipcRenderer.setMaxListeners(250);
+
+// Expose protected methods that allow the renderer process to use
+// the ipcRenderer without exposing the entire object
+// TODO: Implement argument filtering for added security
+contextBridge.exposeInMainWorld(
+    "mainApi", {        
+        invoke: async (channel, ...args) => {
+            if (validToMain.includes(channel)) {
+                try {
+                    const res = await ipcRenderer.invoke(channel, ...args);
+                    return res;
+                } catch (e) {
+                    console.log("IPCRenderer.invoke error");
+                }
+            }
+        },
+        send: (channel, ...args) => {
+            if (validToMain.includes(channel)) {
+                ipcRenderer.send(channel, ...args);
+            }
+        },
+        on: (channel, func) => {
+            if (validFromMainChannels.includes(channel)) {
+                ipcRenderer.on(channel, (event, ...args) => func(...args));
+            }
+        },
+        removeAllListeners: (channel) => {
+            ipcRenderer.removeAllListeners(channel);
+        }
+    }
+);
diff --git a/src/render/vendor/vue.js b/src/render/vendor/vue.js
new file mode 100644 (file)
index 0000000..6e5ee00
--- /dev/null
@@ -0,0 +1,15872 @@
+var Vue = (function (exports) {
+  'use strict';
+
+  /**\r
+   * Make a map and return a function for checking if a key\r
+   * is in that map.\r
+   * IMPORTANT: all calls of this function must be prefixed with\r
+   * \/\*#\_\_PURE\_\_\*\/\r
+   * So that rollup can tree-shake them if necessary.\r
+   */\r
+  function makeMap(str, expectsLowerCase) {\r
+      const map = Object.create(null);\r
+      const list = str.split(',');\r
+      for (let i = 0; i < list.length; i++) {\r
+          map[list[i]] = true;\r
+      }\r
+      return expectsLowerCase ? val => !!map[val.toLowerCase()] : val => !!map[val];\r
+  }
+
+  /**\r
+   * dev only flag -> name mapping\r
+   */\r
+  const PatchFlagNames = {\r
+      [1 /* TEXT */]: `TEXT`,\r
+      [2 /* CLASS */]: `CLASS`,\r
+      [4 /* STYLE */]: `STYLE`,\r
+      [8 /* PROPS */]: `PROPS`,\r
+      [16 /* FULL_PROPS */]: `FULL_PROPS`,\r
+      [32 /* HYDRATE_EVENTS */]: `HYDRATE_EVENTS`,\r
+      [64 /* STABLE_FRAGMENT */]: `STABLE_FRAGMENT`,\r
+      [128 /* KEYED_FRAGMENT */]: `KEYED_FRAGMENT`,\r
+      [256 /* UNKEYED_FRAGMENT */]: `UNKEYED_FRAGMENT`,\r
+      [512 /* NEED_PATCH */]: `NEED_PATCH`,\r
+      [1024 /* DYNAMIC_SLOTS */]: `DYNAMIC_SLOTS`,\r
+      [2048 /* DEV_ROOT_FRAGMENT */]: `DEV_ROOT_FRAGMENT`,\r
+      [-1 /* HOISTED */]: `HOISTED`,\r
+      [-2 /* BAIL */]: `BAIL`\r
+  };
+
+  /**\r
+   * Dev only\r
+   */\r
+  const slotFlagsText = {\r
+      [1 /* STABLE */]: 'STABLE',\r
+      [2 /* DYNAMIC */]: 'DYNAMIC',\r
+      [3 /* FORWARDED */]: 'FORWARDED'\r
+  };
+
+  const GLOBALS_WHITE_LISTED = 'Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,' +\r
+      'decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,' +\r
+      'Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt';\r
+  const isGloballyWhitelisted = /*#__PURE__*/ makeMap(GLOBALS_WHITE_LISTED);
+
+  const range = 2;\r
+  function generateCodeFrame(source, start = 0, end = source.length) {\r
+      // Split the content into individual lines but capture the newline sequence\r
+      // that separated each line. This is important because the actual sequence is\r
+      // needed to properly take into account the full line length for offset\r
+      // comparison\r
+      let lines = source.split(/(\r?\n)/);\r
+      // Separate the lines and newline sequences into separate arrays for easier referencing\r
+      const newlineSequences = lines.filter((_, idx) => idx % 2 === 1);\r
+      lines = lines.filter((_, idx) => idx % 2 === 0);\r
+      let count = 0;\r
+      const res = [];\r
+      for (let i = 0; i < lines.length; i++) {\r
+          count +=\r
+              lines[i].length +\r
+                  ((newlineSequences[i] && newlineSequences[i].length) || 0);\r
+          if (count >= start) {\r
+              for (let j = i - range; j <= i + range || end > count; j++) {\r
+                  if (j < 0 || j >= lines.length)\r
+                      continue;\r
+                  const line = j + 1;\r
+                  res.push(`${line}${' '.repeat(Math.max(3 - String(line).length, 0))}|  ${lines[j]}`);\r
+                  const lineLength = lines[j].length;\r
+                  const newLineSeqLength = (newlineSequences[j] && newlineSequences[j].length) || 0;\r
+                  if (j === i) {\r
+                      // push underline\r
+                      const pad = start - (count - (lineLength + newLineSeqLength));\r
+                      const length = Math.max(1, end > count ? lineLength - pad : end - start);\r
+                      res.push(`   |  ` + ' '.repeat(pad) + '^'.repeat(length));\r
+                  }\r
+                  else if (j > i) {\r
+                      if (end > count) {\r
+                          const length = Math.max(Math.min(end - count, lineLength), 1);\r
+                          res.push(`   |  ` + '^'.repeat(length));\r
+                      }\r
+                      count += lineLength + newLineSeqLength;\r
+                  }\r
+              }\r
+              break;\r
+          }\r
+      }\r
+      return res.join('\n');\r
+  }
+
+  /**\r
+   * On the client we only need to offer special cases for boolean attributes that\r
+   * have different names from their corresponding dom properties:\r
+   * - itemscope -> N/A\r
+   * - allowfullscreen -> allowFullscreen\r
+   * - formnovalidate -> formNoValidate\r
+   * - ismap -> isMap\r
+   * - nomodule -> noModule\r
+   * - novalidate -> noValidate\r
+   * - readonly -> readOnly\r
+   */\r
+  const specialBooleanAttrs = `itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly`;\r
+  const isSpecialBooleanAttr = /*#__PURE__*/ makeMap(specialBooleanAttrs);\r
+  /**\r
+   * Boolean attributes should be included if the value is truthy or ''.\r
+   * e.g. <select multiple> compiles to { multiple: '' }\r
+   */\r
+  function includeBooleanAttr(value) {\r
+      return !!value || value === '';\r
+  }
+
+  function normalizeStyle(value) {\r
+      if (isArray(value)) {\r
+          const res = {};\r
+          for (let i = 0; i < value.length; i++) {\r
+              const item = value[i];\r
+              const normalized = isString(item)\r
+                  ? parseStringStyle(item)\r
+                  : normalizeStyle(item);\r
+              if (normalized) {\r
+                  for (const key in normalized) {\r
+                      res[key] = normalized[key];\r
+                  }\r
+              }\r
+          }\r
+          return res;\r
+      }\r
+      else if (isString(value)) {\r
+          return value;\r
+      }\r
+      else if (isObject(value)) {\r
+          return value;\r
+      }\r
+  }\r
+  const listDelimiterRE = /;(?![^(]*\))/g;\r
+  const propertyDelimiterRE = /:(.+)/;\r
+  function parseStringStyle(cssText) {\r
+      const ret = {};\r
+      cssText.split(listDelimiterRE).forEach(item => {\r
+          if (item) {\r
+              const tmp = item.split(propertyDelimiterRE);\r
+              tmp.length > 1 && (ret[tmp[0].trim()] = tmp[1].trim());\r
+          }\r
+      });\r
+      return ret;\r
+  }\r
+  function normalizeClass(value) {\r
+      let res = '';\r
+      if (isString(value)) {\r
+          res = value;\r
+      }\r
+      else if (isArray(value)) {\r
+          for (let i = 0; i < value.length; i++) {\r
+              const normalized = normalizeClass(value[i]);\r
+              if (normalized) {\r
+                  res += normalized + ' ';\r
+              }\r
+          }\r
+      }\r
+      else if (isObject(value)) {\r
+          for (const name in value) {\r
+              if (value[name]) {\r
+                  res += name + ' ';\r
+              }\r
+          }\r
+      }\r
+      return res.trim();\r
+  }\r
+  function normalizeProps(props) {\r
+      if (!props)\r
+          return null;\r
+      let { class: klass, style } = props;\r
+      if (klass && !isString(klass)) {\r
+          props.class = normalizeClass(klass);\r
+      }\r
+      if (style) {\r
+          props.style = normalizeStyle(style);\r
+      }\r
+      return props;\r
+  }
+
+  // These tag configs are shared between compiler-dom and runtime-dom, so they\r
+  // https://developer.mozilla.org/en-US/docs/Web/HTML/Element\r
+  const HTML_TAGS = 'html,body,base,head,link,meta,style,title,address,article,aside,footer,' +\r
+      'header,h1,h2,h3,h4,h5,h6,nav,section,div,dd,dl,dt,figcaption,' +\r
+      'figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,' +\r
+      'data,dfn,em,i,kbd,mark,q,rp,rt,ruby,s,samp,small,span,strong,sub,sup,' +\r
+      'time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,' +\r
+      'canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,' +\r
+      'th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,' +\r
+      'option,output,progress,select,textarea,details,dialog,menu,' +\r
+      'summary,template,blockquote,iframe,tfoot';\r
+  // https://developer.mozilla.org/en-US/docs/Web/SVG/Element\r
+  const SVG_TAGS = 'svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,' +\r
+      'defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,' +\r
+      'feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,' +\r
+      'feDistanceLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,' +\r
+      'feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,' +\r
+      'fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,' +\r
+      'foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,' +\r
+      'mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,' +\r
+      'polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,' +\r
+      'text,textPath,title,tspan,unknown,use,view';\r
+  const VOID_TAGS = 'area,base,br,col,embed,hr,img,input,link,meta,param,source,track,wbr';\r
+  const isHTMLTag = /*#__PURE__*/ makeMap(HTML_TAGS);\r
+  const isSVGTag = /*#__PURE__*/ makeMap(SVG_TAGS);\r
+  const isVoidTag = /*#__PURE__*/ makeMap(VOID_TAGS);
+
+  function looseCompareArrays(a, b) {\r
+      if (a.length !== b.length)\r
+          return false;\r
+      let equal = true;\r
+      for (let i = 0; equal && i < a.length; i++) {\r
+          equal = looseEqual(a[i], b[i]);\r
+      }\r
+      return equal;\r
+  }\r
+  function looseEqual(a, b) {\r
+      if (a === b)\r
+          return true;\r
+      let aValidType = isDate(a);\r
+      let bValidType = isDate(b);\r
+      if (aValidType || bValidType) {\r
+          return aValidType && bValidType ? a.getTime() === b.getTime() : false;\r
+      }\r
+      aValidType = isArray(a);\r
+      bValidType = isArray(b);\r
+      if (aValidType || bValidType) {\r
+          return aValidType && bValidType ? looseCompareArrays(a, b) : false;\r
+      }\r
+      aValidType = isObject(a);\r
+      bValidType = isObject(b);\r
+      if (aValidType || bValidType) {\r
+          /* istanbul ignore if: this if will probably never be called */\r
+          if (!aValidType || !bValidType) {\r
+              return false;\r
+          }\r
+          const aKeysCount = Object.keys(a).length;\r
+          const bKeysCount = Object.keys(b).length;\r
+          if (aKeysCount !== bKeysCount) {\r
+              return false;\r
+          }\r
+          for (const key in a) {\r
+              const aHasKey = a.hasOwnProperty(key);\r
+              const bHasKey = b.hasOwnProperty(key);\r
+              if ((aHasKey && !bHasKey) ||\r
+                  (!aHasKey && bHasKey) ||\r
+                  !looseEqual(a[key], b[key])) {\r
+                  return false;\r
+              }\r
+          }\r
+      }\r
+      return String(a) === String(b);\r
+  }\r
+  function looseIndexOf(arr, val) {\r
+      return arr.findIndex(item => looseEqual(item, val));\r
+  }
+
+  /**\r
+   * For converting {{ interpolation }} values to displayed strings.\r
+   * @private\r
+   */\r
+  const toDisplayString = (val) => {\r
+      return val == null\r
+          ? ''\r
+          : isArray(val) ||\r
+              (isObject(val) &&\r
+                  (val.toString === objectToString || !isFunction(val.toString)))\r
+              ? JSON.stringify(val, replacer, 2)\r
+              : String(val);\r
+  };\r
+  const replacer = (_key, val) => {\r
+      // can't use isRef here since @vue/shared has no deps\r
+      if (val && val.__v_isRef) {\r
+          return replacer(_key, val.value);\r
+      }\r
+      else if (isMap(val)) {\r
+          return {\r
+              [`Map(${val.size})`]: [...val.entries()].reduce((entries, [key, val]) => {\r
+                  entries[`${key} =>`] = val;\r
+                  return entries;\r
+              }, {})\r
+          };\r
+      }\r
+      else if (isSet(val)) {\r
+          return {\r
+              [`Set(${val.size})`]: [...val.values()]\r
+          };\r
+      }\r
+      else if (isObject(val) && !isArray(val) && !isPlainObject(val)) {\r
+          return String(val);\r
+      }\r
+      return val;\r
+  };
+
+  const EMPTY_OBJ = Object.freeze({})\r
+      ;\r
+  const EMPTY_ARR = Object.freeze([]) ;\r
+  const NOOP = () => { };\r
+  /**\r
+   * Always return false.\r
+   */\r
+  const NO = () => false;\r
+  const onRE = /^on[^a-z]/;\r
+  const isOn = (key) => onRE.test(key);\r
+  const isModelListener = (key) => key.startsWith('onUpdate:');\r
+  const extend = Object.assign;\r
+  const remove = (arr, el) => {\r
+      const i = arr.indexOf(el);\r
+      if (i > -1) {\r
+          arr.splice(i, 1);\r
+      }\r
+  };\r
+  const hasOwnProperty = Object.prototype.hasOwnProperty;\r
+  const hasOwn = (val, key) => hasOwnProperty.call(val, key);\r
+  const isArray = Array.isArray;\r
+  const isMap = (val) => toTypeString(val) === '[object Map]';\r
+  const isSet = (val) => toTypeString(val) === '[object Set]';\r
+  const isDate = (val) => val instanceof Date;\r
+  const isFunction = (val) => typeof val === 'function';\r
+  const isString = (val) => typeof val === 'string';\r
+  const isSymbol = (val) => typeof val === 'symbol';\r
+  const isObject = (val) => val !== null && typeof val === 'object';\r
+  const isPromise = (val) => {\r
+      return isObject(val) && isFunction(val.then) && isFunction(val.catch);\r
+  };\r
+  const objectToString = Object.prototype.toString;\r
+  const toTypeString = (value) => objectToString.call(value);\r
+  const toRawType = (value) => {\r
+      // extract "RawType" from strings like "[object RawType]"\r
+      return toTypeString(value).slice(8, -1);\r
+  };\r
+  const isPlainObject = (val) => toTypeString(val) === '[object Object]';\r
+  const isIntegerKey = (key) => isString(key) &&\r
+      key !== 'NaN' &&\r
+      key[0] !== '-' &&\r
+      '' + parseInt(key, 10) === key;\r
+  const isReservedProp = /*#__PURE__*/ makeMap(\r
+  // the leading comma is intentional so empty string "" is also included\r
+  ',key,ref,' +\r
+      'onVnodeBeforeMount,onVnodeMounted,' +\r
+      'onVnodeBeforeUpdate,onVnodeUpdated,' +\r
+      'onVnodeBeforeUnmount,onVnodeUnmounted');\r
+  const cacheStringFunction = (fn) => {\r
+      const cache = Object.create(null);\r
+      return ((str) => {\r
+          const hit = cache[str];\r
+          return hit || (cache[str] = fn(str));\r
+      });\r
+  };\r
+  const camelizeRE = /-(\w)/g;\r
+  /**\r
+   * @private\r
+   */\r
+  const camelize = cacheStringFunction((str) => {\r
+      return str.replace(camelizeRE, (_, c) => (c ? c.toUpperCase() : ''));\r
+  });\r
+  const hyphenateRE = /\B([A-Z])/g;\r
+  /**\r
+   * @private\r
+   */\r
+  const hyphenate = cacheStringFunction((str) => str.replace(hyphenateRE, '-$1').toLowerCase());\r
+  /**\r
+   * @private\r
+   */\r
+  const capitalize = cacheStringFunction((str) => str.charAt(0).toUpperCase() + str.slice(1));\r
+  /**\r
+   * @private\r
+   */\r
+  const toHandlerKey = cacheStringFunction((str) => str ? `on${capitalize(str)}` : ``);\r
+  // compare whether a value has changed, accounting for NaN.\r
+  const hasChanged = (value, oldValue) => !Object.is(value, oldValue);\r
+  const invokeArrayFns = (fns, arg) => {\r
+      for (let i = 0; i < fns.length; i++) {\r
+          fns[i](arg);\r
+      }\r
+  };\r
+  const def = (obj, key, value) => {\r
+      Object.defineProperty(obj, key, {\r
+          configurable: true,\r
+          enumerable: false,\r
+          value\r
+      });\r
+  };\r
+  const toNumber = (val) => {\r
+      const n = parseFloat(val);\r
+      return isNaN(n) ? val : n;\r
+  };\r
+  let _globalThis;\r
+  const getGlobalThis = () => {\r
+      return (_globalThis ||\r
+          (_globalThis =\r
+              typeof globalThis !== 'undefined'\r
+                  ? globalThis\r
+                  : typeof self !== 'undefined'\r
+                      ? self\r
+                      : typeof window !== 'undefined'\r
+                          ? window\r
+                          : typeof global !== 'undefined'\r
+                              ? global\r
+                              : {}));\r
+  };
+
+  function warn(msg, ...args) {\r
+      console.warn(`[Vue warn] ${msg}`, ...args);\r
+  }
+
+  let activeEffectScope;\r
+  const effectScopeStack = [];\r
+  class EffectScope {\r
+      constructor(detached = false) {\r
+          this.active = true;\r
+          this.effects = [];\r
+          this.cleanups = [];\r
+          if (!detached && activeEffectScope) {\r
+              this.parent = activeEffectScope;\r
+              this.index =\r
+                  (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(this) - 1;\r
+          }\r
+      }\r
+      run(fn) {\r
+          if (this.active) {\r
+              try {\r
+                  this.on();\r
+                  return fn();\r
+              }\r
+              finally {\r
+                  this.off();\r
+              }\r
+          }\r
+          else {\r
+              warn(`cannot run an inactive effect scope.`);\r
+          }\r
+      }\r
+      on() {\r
+          if (this.active) {\r
+              effectScopeStack.push(this);\r
+              activeEffectScope = this;\r
+          }\r
+      }\r
+      off() {\r
+          if (this.active) {\r
+              effectScopeStack.pop();\r
+              activeEffectScope = effectScopeStack[effectScopeStack.length - 1];\r
+          }\r
+      }\r
+      stop(fromParent) {\r
+          if (this.active) {\r
+              this.effects.forEach(e => e.stop());\r
+              this.cleanups.forEach(cleanup => cleanup());\r
+              if (this.scopes) {\r
+                  this.scopes.forEach(e => e.stop(true));\r
+              }\r
+              // nested scope, dereference from parent to avoid memory leaks\r
+              if (this.parent && !fromParent) {\r
+                  // optimized O(1) removal\r
+                  const last = this.parent.scopes.pop();\r
+                  if (last && last !== this) {\r
+                      this.parent.scopes[this.index] = last;\r
+                      last.index = this.index;\r
+                  }\r
+              }\r
+              this.active = false;\r
+          }\r
+      }\r
+  }\r
+  function effectScope(detached) {\r
+      return new EffectScope(detached);\r
+  }\r
+  function recordEffectScope(effect, scope) {\r
+      scope = scope || activeEffectScope;\r
+      if (scope && scope.active) {\r
+          scope.effects.push(effect);\r
+      }\r
+  }\r
+  function getCurrentScope() {\r
+      return activeEffectScope;\r
+  }\r
+  function onScopeDispose(fn) {\r
+      if (activeEffectScope) {\r
+          activeEffectScope.cleanups.push(fn);\r
+      }\r
+      else {\r
+          warn(`onScopeDispose() is called when there is no active effect scope` +\r
+              ` to be associated with.`);\r
+      }\r
+  }
+
+  const createDep = (effects) => {\r
+      const dep = new Set(effects);\r
+      dep.w = 0;\r
+      dep.n = 0;\r
+      return dep;\r
+  };\r
+  const wasTracked = (dep) => (dep.w & trackOpBit) > 0;\r
+  const newTracked = (dep) => (dep.n & trackOpBit) > 0;\r
+  const initDepMarkers = ({ deps }) => {\r
+      if (deps.length) {\r
+          for (let i = 0; i < deps.length; i++) {\r
+              deps[i].w |= trackOpBit; // set was tracked\r
+          }\r
+      }\r
+  };\r
+  const finalizeDepMarkers = (effect) => {\r
+      const { deps } = effect;\r
+      if (deps.length) {\r
+          let ptr = 0;\r
+          for (let i = 0; i < deps.length; i++) {\r
+              const dep = deps[i];\r
+              if (wasTracked(dep) && !newTracked(dep)) {\r
+                  dep.delete(effect);\r
+              }\r
+              else {\r
+                  deps[ptr++] = dep;\r
+              }\r
+              // clear bits\r
+              dep.w &= ~trackOpBit;\r
+              dep.n &= ~trackOpBit;\r
+          }\r
+          deps.length = ptr;\r
+      }\r
+  };
+
+  const targetMap = new WeakMap();\r
+  // The number of effects currently being tracked recursively.\r
+  let effectTrackDepth = 0;\r
+  let trackOpBit = 1;\r
+  /**\r
+   * The bitwise track markers support at most 30 levels op recursion.\r
+   * This value is chosen to enable modern JS engines to use a SMI on all platforms.\r
+   * When recursion depth is greater, fall back to using a full cleanup.\r
+   */\r
+  const maxMarkerBits = 30;\r
+  const effectStack = [];\r
+  let activeEffect;\r
+  const ITERATE_KEY = Symbol('iterate' );\r
+  const MAP_KEY_ITERATE_KEY = Symbol('Map key iterate' );\r
+  class ReactiveEffect {\r
+      constructor(fn, scheduler = null, scope) {\r
+          this.fn = fn;\r
+          this.scheduler = scheduler;\r
+          this.active = true;\r
+          this.deps = [];\r
+          recordEffectScope(this, scope);\r
+      }\r
+      run() {\r
+          if (!this.active) {\r
+              return this.fn();\r
+          }\r
+          if (!effectStack.includes(this)) {\r
+              try {\r
+                  effectStack.push((activeEffect = this));\r
+                  enableTracking();\r
+                  trackOpBit = 1 << ++effectTrackDepth;\r
+                  if (effectTrackDepth <= maxMarkerBits) {\r
+                      initDepMarkers(this);\r
+                  }\r
+                  else {\r
+                      cleanupEffect(this);\r
+                  }\r
+                  return this.fn();\r
+              }\r
+              finally {\r
+                  if (effectTrackDepth <= maxMarkerBits) {\r
+                      finalizeDepMarkers(this);\r
+                  }\r
+                  trackOpBit = 1 << --effectTrackDepth;\r
+                  resetTracking();\r
+                  effectStack.pop();\r
+                  const n = effectStack.length;\r
+                  activeEffect = n > 0 ? effectStack[n - 1] : undefined;\r
+              }\r
+          }\r
+      }\r
+      stop() {\r
+          if (this.active) {\r
+              cleanupEffect(this);\r
+              if (this.onStop) {\r
+                  this.onStop();\r
+              }\r
+              this.active = false;\r
+          }\r
+      }\r
+  }\r
+  function cleanupEffect(effect) {\r
+      const { deps } = effect;\r
+      if (deps.length) {\r
+          for (let i = 0; i < deps.length; i++) {\r
+              deps[i].delete(effect);\r
+          }\r
+          deps.length = 0;\r
+      }\r
+  }\r
+  function effect(fn, options) {\r
+      if (fn.effect) {\r
+          fn = fn.effect.fn;\r
+      }\r
+      const _effect = new ReactiveEffect(fn);\r
+      if (options) {\r
+          extend(_effect, options);\r
+          if (options.scope)\r
+              recordEffectScope(_effect, options.scope);\r
+      }\r
+      if (!options || !options.lazy) {\r
+          _effect.run();\r
+      }\r
+      const runner = _effect.run.bind(_effect);\r
+      runner.effect = _effect;\r
+      return runner;\r
+  }\r
+  function stop(runner) {\r
+      runner.effect.stop();\r
+  }\r
+  let shouldTrack = true;\r
+  const trackStack = [];\r
+  function pauseTracking() {\r
+      trackStack.push(shouldTrack);\r
+      shouldTrack = false;\r
+  }\r
+  function enableTracking() {\r
+      trackStack.push(shouldTrack);\r
+      shouldTrack = true;\r
+  }\r
+  function resetTracking() {\r
+      const last = trackStack.pop();\r
+      shouldTrack = last === undefined ? true : last;\r
+  }\r
+  function track(target, type, key) {\r
+      if (!isTracking()) {\r
+          return;\r
+      }\r
+      let depsMap = targetMap.get(target);\r
+      if (!depsMap) {\r
+          targetMap.set(target, (depsMap = new Map()));\r
+      }\r
+      let dep = depsMap.get(key);\r
+      if (!dep) {\r
+          depsMap.set(key, (dep = createDep()));\r
+      }\r
+      const eventInfo = { effect: activeEffect, target, type, key }\r
+          ;\r
+      trackEffects(dep, eventInfo);\r
+  }\r
+  function isTracking() {\r
+      return shouldTrack && activeEffect !== undefined;\r
+  }\r
+  function trackEffects(dep, debuggerEventExtraInfo) {\r
+      let shouldTrack = false;\r
+      if (effectTrackDepth <= maxMarkerBits) {\r
+          if (!newTracked(dep)) {\r
+              dep.n |= trackOpBit; // set newly tracked\r
+              shouldTrack = !wasTracked(dep);\r
+          }\r
+      }\r
+      else {\r
+          // Full cleanup mode.\r
+          shouldTrack = !dep.has(activeEffect);\r
+      }\r
+      if (shouldTrack) {\r
+          dep.add(activeEffect);\r
+          activeEffect.deps.push(dep);\r
+          if (activeEffect.onTrack) {\r
+              activeEffect.onTrack(Object.assign({\r
+                  effect: activeEffect\r
+              }, debuggerEventExtraInfo));\r
+          }\r
+      }\r
+  }\r
+  function trigger(target, type, key, newValue, oldValue, oldTarget) {\r
+      const depsMap = targetMap.get(target);\r
+      if (!depsMap) {\r
+          // never been tracked\r
+          return;\r
+      }\r
+      let deps = [];\r
+      if (type === "clear" /* CLEAR */) {\r
+          // collection being cleared\r
+          // trigger all effects for target\r
+          deps = [...depsMap.values()];\r
+      }\r
+      else if (key === 'length' && isArray(target)) {\r
+          depsMap.forEach((dep, key) => {\r
+              if (key === 'length' || key >= newValue) {\r
+                  deps.push(dep);\r
+              }\r
+          });\r
+      }\r
+      else {\r
+          // schedule runs for SET | ADD | DELETE\r
+          if (key !== void 0) {\r
+              deps.push(depsMap.get(key));\r
+          }\r
+          // also run for iteration key on ADD | DELETE | Map.SET\r
+          switch (type) {\r
+              case "add" /* ADD */:\r
+                  if (!isArray(target)) {\r
+                      deps.push(depsMap.get(ITERATE_KEY));\r
+                      if (isMap(target)) {\r
+                          deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));\r
+                      }\r
+                  }\r
+                  else if (isIntegerKey(key)) {\r
+                      // new index added to array -> length changes\r
+                      deps.push(depsMap.get('length'));\r
+                  }\r
+                  break;\r
+              case "delete" /* DELETE */:\r
+                  if (!isArray(target)) {\r
+                      deps.push(depsMap.get(ITERATE_KEY));\r
+                      if (isMap(target)) {\r
+                          deps.push(depsMap.get(MAP_KEY_ITERATE_KEY));\r
+                      }\r
+                  }\r
+                  break;\r
+              case "set" /* SET */:\r
+                  if (isMap(target)) {\r
+                      deps.push(depsMap.get(ITERATE_KEY));\r
+                  }\r
+                  break;\r
+          }\r
+      }\r
+      const eventInfo = { target, type, key, newValue, oldValue, oldTarget }\r
+          ;\r
+      if (deps.length === 1) {\r
+          if (deps[0]) {\r
+              {\r
+                  triggerEffects(deps[0], eventInfo);\r
+              }\r
+          }\r
+      }\r
+      else {\r
+          const effects = [];\r
+          for (const dep of deps) {\r
+              if (dep) {\r
+                  effects.push(...dep);\r
+              }\r
+          }\r
+          {\r
+              triggerEffects(createDep(effects), eventInfo);\r
+          }\r
+      }\r
+  }\r
+  function triggerEffects(dep, debuggerEventExtraInfo) {\r
+      // spread into array for stabilization\r
+      for (const effect of isArray(dep) ? dep : [...dep]) {\r
+          if (effect !== activeEffect || effect.allowRecurse) {\r
+              if (effect.onTrigger) {\r
+                  effect.onTrigger(extend({ effect }, debuggerEventExtraInfo));\r
+              }\r
+              if (effect.scheduler) {\r
+                  effect.scheduler();\r
+              }\r
+              else {\r
+                  effect.run();\r
+              }\r
+          }\r
+      }\r
+  }
+
+  const isNonTrackableKeys = /*#__PURE__*/ makeMap(`__proto__,__v_isRef,__isVue`);\r
+  const builtInSymbols = new Set(Object.getOwnPropertyNames(Symbol)\r
+      .map(key => Symbol[key])\r
+      .filter(isSymbol));\r
+  const get = /*#__PURE__*/ createGetter();\r
+  const shallowGet = /*#__PURE__*/ createGetter(false, true);\r
+  const readonlyGet = /*#__PURE__*/ createGetter(true);\r
+  const shallowReadonlyGet = /*#__PURE__*/ createGetter(true, true);\r
+  const arrayInstrumentations = /*#__PURE__*/ createArrayInstrumentations();\r
+  function createArrayInstrumentations() {\r
+      const instrumentations = {};\r
+      ['includes', 'indexOf', 'lastIndexOf'].forEach(key => {\r
+          instrumentations[key] = function (...args) {\r
+              const arr = toRaw(this);\r
+              for (let i = 0, l = this.length; i < l; i++) {\r
+                  track(arr, "get" /* GET */, i + '');\r
+              }\r
+              // we run the method using the original args first (which may be reactive)\r
+              const res = arr[key](...args);\r
+              if (res === -1 || res === false) {\r
+                  // if that didn't work, run it again using raw values.\r
+                  return arr[key](...args.map(toRaw));\r
+              }\r
+              else {\r
+                  return res;\r
+              }\r
+          };\r
+      });\r
+      ['push', 'pop', 'shift', 'unshift', 'splice'].forEach(key => {\r
+          instrumentations[key] = function (...args) {\r
+              pauseTracking();\r
+              const res = toRaw(this)[key].apply(this, args);\r
+              resetTracking();\r
+              return res;\r
+          };\r
+      });\r
+      return instrumentations;\r
+  }\r
+  function createGetter(isReadonly = false, shallow = false) {\r
+      return function get(target, key, receiver) {\r
+          if (key === "__v_isReactive" /* IS_REACTIVE */) {\r
+              return !isReadonly;\r
+          }\r
+          else if (key === "__v_isReadonly" /* IS_READONLY */) {\r
+              return isReadonly;\r
+          }\r
+          else if (key === "__v_raw" /* RAW */ &&\r
+              receiver ===\r
+                  (isReadonly\r
+                      ? shallow\r
+                          ? shallowReadonlyMap\r
+                          : readonlyMap\r
+                      : shallow\r
+                          ? shallowReactiveMap\r
+                          : reactiveMap).get(target)) {\r
+              return target;\r
+          }\r
+          const targetIsArray = isArray(target);\r
+          if (!isReadonly && targetIsArray && hasOwn(arrayInstrumentations, key)) {\r
+              return Reflect.get(arrayInstrumentations, key, receiver);\r
+          }\r
+          const res = Reflect.get(target, key, receiver);\r
+          if (isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) {\r
+              return res;\r
+          }\r
+          if (!isReadonly) {\r
+              track(target, "get" /* GET */, key);\r
+          }\r
+          if (shallow) {\r
+              return res;\r
+          }\r
+          if (isRef(res)) {\r
+              // ref unwrapping - does not apply for Array + integer key.\r
+              const shouldUnwrap = !targetIsArray || !isIntegerKey(key);\r
+              return shouldUnwrap ? res.value : res;\r
+          }\r
+          if (isObject(res)) {\r
+              // Convert returned value into a proxy as well. we do the isObject check\r
+              // here to avoid invalid value warning. Also need to lazy access readonly\r
+              // and reactive here to avoid circular dependency.\r
+              return isReadonly ? readonly(res) : reactive(res);\r
+          }\r
+          return res;\r
+      };\r
+  }\r
+  const set = /*#__PURE__*/ createSetter();\r
+  const shallowSet = /*#__PURE__*/ createSetter(true);\r
+  function createSetter(shallow = false) {\r
+      return function set(target, key, value, receiver) {\r
+          let oldValue = target[key];\r
+          if (!shallow) {\r
+              value = toRaw(value);\r
+              oldValue = toRaw(oldValue);\r
+              if (!isArray(target) && isRef(oldValue) && !isRef(value)) {\r
+                  oldValue.value = value;\r
+                  return true;\r
+              }\r
+          }\r
+          const hadKey = isArray(target) && isIntegerKey(key)\r
+              ? Number(key) < target.length\r
+              : hasOwn(target, key);\r
+          const result = Reflect.set(target, key, value, receiver);\r
+          // don't trigger if target is something up in the prototype chain of original\r
+          if (target === toRaw(receiver)) {\r
+              if (!hadKey) {\r
+                  trigger(target, "add" /* ADD */, key, value);\r
+              }\r
+              else if (hasChanged(value, oldValue)) {\r
+                  trigger(target, "set" /* SET */, key, value, oldValue);\r
+              }\r
+          }\r
+          return result;\r
+      };\r
+  }\r
+  function deleteProperty(target, key) {\r
+      const hadKey = hasOwn(target, key);\r
+      const oldValue = target[key];\r
+      const result = Reflect.deleteProperty(target, key);\r
+      if (result && hadKey) {\r
+          trigger(target, "delete" /* DELETE */, key, undefined, oldValue);\r
+      }\r
+      return result;\r
+  }\r
+  function has(target, key) {\r
+      const result = Reflect.has(target, key);\r
+      if (!isSymbol(key) || !builtInSymbols.has(key)) {\r
+          track(target, "has" /* HAS */, key);\r
+      }\r
+      return result;\r
+  }\r
+  function ownKeys(target) {\r
+      track(target, "iterate" /* ITERATE */, isArray(target) ? 'length' : ITERATE_KEY);\r
+      return Reflect.ownKeys(target);\r
+  }\r
+  const mutableHandlers = {\r
+      get,\r
+      set,\r
+      deleteProperty,\r
+      has,\r
+      ownKeys\r
+  };\r
+  const readonlyHandlers = {\r
+      get: readonlyGet,\r
+      set(target, key) {\r
+          {\r
+              console.warn(`Set operation on key "${String(key)}" failed: target is readonly.`, target);\r
+          }\r
+          return true;\r
+      },\r
+      deleteProperty(target, key) {\r
+          {\r
+              console.warn(`Delete operation on key "${String(key)}" failed: target is readonly.`, target);\r
+          }\r
+          return true;\r
+      }\r
+  };\r
+  const shallowReactiveHandlers = /*#__PURE__*/ extend({}, mutableHandlers, {\r
+      get: shallowGet,\r
+      set: shallowSet\r
+  });\r
+  // Props handlers are special in the sense that it should not unwrap top-level\r
+  // refs (in order to allow refs to be explicitly passed down), but should\r
+  // retain the reactivity of the normal readonly object.\r
+  const shallowReadonlyHandlers = /*#__PURE__*/ extend({}, readonlyHandlers, {\r
+      get: shallowReadonlyGet\r
+  });
+
+  const toReactive = (value) => isObject(value) ? reactive(value) : value;\r
+  const toReadonly = (value) => isObject(value) ? readonly(value) : value;\r
+  const toShallow = (value) => value;\r
+  const getProto = (v) => Reflect.getPrototypeOf(v);\r
+  function get$1(target, key, isReadonly = false, isShallow = false) {\r
+      // #1772: readonly(reactive(Map)) should return readonly + reactive version\r
+      // of the value\r
+      target = target["__v_raw" /* RAW */];\r
+      const rawTarget = toRaw(target);\r
+      const rawKey = toRaw(key);\r
+      if (key !== rawKey) {\r
+          !isReadonly && track(rawTarget, "get" /* GET */, key);\r
+      }\r
+      !isReadonly && track(rawTarget, "get" /* GET */, rawKey);\r
+      const { has } = getProto(rawTarget);\r
+      const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;\r
+      if (has.call(rawTarget, key)) {\r
+          return wrap(target.get(key));\r
+      }\r
+      else if (has.call(rawTarget, rawKey)) {\r
+          return wrap(target.get(rawKey));\r
+      }\r
+      else if (target !== rawTarget) {\r
+          // #3602 readonly(reactive(Map))\r
+          // ensure that the nested reactive `Map` can do tracking for itself\r
+          target.get(key);\r
+      }\r
+  }\r
+  function has$1(key, isReadonly = false) {\r
+      const target = this["__v_raw" /* RAW */];\r
+      const rawTarget = toRaw(target);\r
+      const rawKey = toRaw(key);\r
+      if (key !== rawKey) {\r
+          !isReadonly && track(rawTarget, "has" /* HAS */, key);\r
+      }\r
+      !isReadonly && track(rawTarget, "has" /* HAS */, rawKey);\r
+      return key === rawKey\r
+          ? target.has(key)\r
+          : target.has(key) || target.has(rawKey);\r
+  }\r
+  function size(target, isReadonly = false) {\r
+      target = target["__v_raw" /* RAW */];\r
+      !isReadonly && track(toRaw(target), "iterate" /* ITERATE */, ITERATE_KEY);\r
+      return Reflect.get(target, 'size', target);\r
+  }\r
+  function add(value) {\r
+      value = toRaw(value);\r
+      const target = toRaw(this);\r
+      const proto = getProto(target);\r
+      const hadKey = proto.has.call(target, value);\r
+      if (!hadKey) {\r
+          target.add(value);\r
+          trigger(target, "add" /* ADD */, value, value);\r
+      }\r
+      return this;\r
+  }\r
+  function set$1(key, value) {\r
+      value = toRaw(value);\r
+      const target = toRaw(this);\r
+      const { has, get } = getProto(target);\r
+      let hadKey = has.call(target, key);\r
+      if (!hadKey) {\r
+          key = toRaw(key);\r
+          hadKey = has.call(target, key);\r
+      }\r
+      else {\r
+          checkIdentityKeys(target, has, key);\r
+      }\r
+      const oldValue = get.call(target, key);\r
+      target.set(key, value);\r
+      if (!hadKey) {\r
+          trigger(target, "add" /* ADD */, key, value);\r
+      }\r
+      else if (hasChanged(value, oldValue)) {\r
+          trigger(target, "set" /* SET */, key, value, oldValue);\r
+      }\r
+      return this;\r
+  }\r
+  function deleteEntry(key) {\r
+      const target = toRaw(this);\r
+      const { has, get } = getProto(target);\r
+      let hadKey = has.call(target, key);\r
+      if (!hadKey) {\r
+          key = toRaw(key);\r
+          hadKey = has.call(target, key);\r
+      }\r
+      else {\r
+          checkIdentityKeys(target, has, key);\r
+      }\r
+      const oldValue = get ? get.call(target, key) : undefined;\r
+      // forward the operation before queueing reactions\r
+      const result = target.delete(key);\r
+      if (hadKey) {\r
+          trigger(target, "delete" /* DELETE */, key, undefined, oldValue);\r
+      }\r
+      return result;\r
+  }\r
+  function clear() {\r
+      const target = toRaw(this);\r
+      const hadItems = target.size !== 0;\r
+      const oldTarget = isMap(target)\r
+              ? new Map(target)\r
+              : new Set(target)\r
+          ;\r
+      // forward the operation before queueing reactions\r
+      const result = target.clear();\r
+      if (hadItems) {\r
+          trigger(target, "clear" /* CLEAR */, undefined, undefined, oldTarget);\r
+      }\r
+      return result;\r
+  }\r
+  function createForEach(isReadonly, isShallow) {\r
+      return function forEach(callback, thisArg) {\r
+          const observed = this;\r
+          const target = observed["__v_raw" /* RAW */];\r
+          const rawTarget = toRaw(target);\r
+          const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;\r
+          !isReadonly && track(rawTarget, "iterate" /* ITERATE */, ITERATE_KEY);\r
+          return target.forEach((value, key) => {\r
+              // important: make sure the callback is\r
+              // 1. invoked with the reactive map as `this` and 3rd arg\r
+              // 2. the value received should be a corresponding reactive/readonly.\r
+              return callback.call(thisArg, wrap(value), wrap(key), observed);\r
+          });\r
+      };\r
+  }\r
+  function createIterableMethod(method, isReadonly, isShallow) {\r
+      return function (...args) {\r
+          const target = this["__v_raw" /* RAW */];\r
+          const rawTarget = toRaw(target);\r
+          const targetIsMap = isMap(rawTarget);\r
+          const isPair = method === 'entries' || (method === Symbol.iterator && targetIsMap);\r
+          const isKeyOnly = method === 'keys' && targetIsMap;\r
+          const innerIterator = target[method](...args);\r
+          const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;\r
+          !isReadonly &&\r
+              track(rawTarget, "iterate" /* ITERATE */, isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY);\r
+          // return a wrapped iterator which returns observed versions of the\r
+          // values emitted from the real iterator\r
+          return {\r
+              // iterator protocol\r
+              next() {\r
+                  const { value, done } = innerIterator.next();\r
+                  return done\r
+                      ? { value, done }\r
+                      : {\r
+                          value: isPair ? [wrap(value[0]), wrap(value[1])] : wrap(value),\r
+                          done\r
+                      };\r
+              },\r
+              // iterable protocol\r
+              [Symbol.iterator]() {\r
+                  return this;\r
+              }\r
+          };\r
+      };\r
+  }\r
+  function createReadonlyMethod(type) {\r
+      return function (...args) {\r
+          {\r
+              const key = args[0] ? `on key "${args[0]}" ` : ``;\r
+              console.warn(`${capitalize(type)} operation ${key}failed: target is readonly.`, toRaw(this));\r
+          }\r
+          return type === "delete" /* DELETE */ ? false : this;\r
+      };\r
+  }\r
+  function createInstrumentations() {\r
+      const mutableInstrumentations = {\r
+          get(key) {\r
+              return get$1(this, key);\r
+          },\r
+          get size() {\r
+              return size(this);\r
+          },\r
+          has: has$1,\r
+          add,\r
+          set: set$1,\r
+          delete: deleteEntry,\r
+          clear,\r
+          forEach: createForEach(false, false)\r
+      };\r
+      const shallowInstrumentations = {\r
+          get(key) {\r
+              return get$1(this, key, false, true);\r
+          },\r
+          get size() {\r
+              return size(this);\r
+          },\r
+          has: has$1,\r
+          add,\r
+          set: set$1,\r
+          delete: deleteEntry,\r
+          clear,\r
+          forEach: createForEach(false, true)\r
+      };\r
+      const readonlyInstrumentations = {\r
+          get(key) {\r
+              return get$1(this, key, true);\r
+          },\r
+          get size() {\r
+              return size(this, true);\r
+          },\r
+          has(key) {\r
+              return has$1.call(this, key, true);\r
+          },\r
+          add: createReadonlyMethod("add" /* ADD */),\r
+          set: createReadonlyMethod("set" /* SET */),\r
+          delete: createReadonlyMethod("delete" /* DELETE */),\r
+          clear: createReadonlyMethod("clear" /* CLEAR */),\r
+          forEach: createForEach(true, false)\r
+      };\r
+      const shallowReadonlyInstrumentations = {\r
+          get(key) {\r
+              return get$1(this, key, true, true);\r
+          },\r
+          get size() {\r
+              return size(this, true);\r
+          },\r
+          has(key) {\r
+              return has$1.call(this, key, true);\r
+          },\r
+          add: createReadonlyMethod("add" /* ADD */),\r
+          set: createReadonlyMethod("set" /* SET */),\r
+          delete: createReadonlyMethod("delete" /* DELETE */),\r
+          clear: createReadonlyMethod("clear" /* CLEAR */),\r
+          forEach: createForEach(true, true)\r
+      };\r
+      const iteratorMethods = ['keys', 'values', 'entries', Symbol.iterator];\r
+      iteratorMethods.forEach(method => {\r
+          mutableInstrumentations[method] = createIterableMethod(method, false, false);\r
+          readonlyInstrumentations[method] = createIterableMethod(method, true, false);\r
+          shallowInstrumentations[method] = createIterableMethod(method, false, true);\r
+          shallowReadonlyInstrumentations[method] = createIterableMethod(method, true, true);\r
+      });\r
+      return [\r
+          mutableInstrumentations,\r
+          readonlyInstrumentations,\r
+          shallowInstrumentations,\r
+          shallowReadonlyInstrumentations\r
+      ];\r
+  }\r
+  const [mutableInstrumentations, readonlyInstrumentations, shallowInstrumentations, shallowReadonlyInstrumentations] = /* #__PURE__*/ createInstrumentations();\r
+  function createInstrumentationGetter(isReadonly, shallow) {\r
+      const instrumentations = shallow\r
+          ? isReadonly\r
+              ? shallowReadonlyInstrumentations\r
+              : shallowInstrumentations\r
+          : isReadonly\r
+              ? readonlyInstrumentations\r
+              : mutableInstrumentations;\r
+      return (target, key, receiver) => {\r
+          if (key === "__v_isReactive" /* IS_REACTIVE */) {\r
+              return !isReadonly;\r
+          }\r
+          else if (key === "__v_isReadonly" /* IS_READONLY */) {\r
+              return isReadonly;\r
+          }\r
+          else if (key === "__v_raw" /* RAW */) {\r
+              return target;\r
+          }\r
+          return Reflect.get(hasOwn(instrumentations, key) && key in target\r
+              ? instrumentations\r
+              : target, key, receiver);\r
+      };\r
+  }\r
+  const mutableCollectionHandlers = {\r
+      get: /*#__PURE__*/ createInstrumentationGetter(false, false)\r
+  };\r
+  const shallowCollectionHandlers = {\r
+      get: /*#__PURE__*/ createInstrumentationGetter(false, true)\r
+  };\r
+  const readonlyCollectionHandlers = {\r
+      get: /*#__PURE__*/ createInstrumentationGetter(true, false)\r
+  };\r
+  const shallowReadonlyCollectionHandlers = {\r
+      get: /*#__PURE__*/ createInstrumentationGetter(true, true)\r
+  };\r
+  function checkIdentityKeys(target, has, key) {\r
+      const rawKey = toRaw(key);\r
+      if (rawKey !== key && has.call(target, rawKey)) {\r
+          const type = toRawType(target);\r
+          console.warn(`Reactive ${type} contains both the raw and reactive ` +\r
+              `versions of the same object${type === `Map` ? ` as keys` : ``}, ` +\r
+              `which can lead to inconsistencies. ` +\r
+              `Avoid differentiating between the raw and reactive versions ` +\r
+              `of an object and only use the reactive version if possible.`);\r
+      }\r
+  }
+
+  const reactiveMap = new WeakMap();\r
+  const shallowReactiveMap = new WeakMap();\r
+  const readonlyMap = new WeakMap();\r
+  const shallowReadonlyMap = new WeakMap();\r
+  function targetTypeMap(rawType) {\r
+      switch (rawType) {\r
+          case 'Object':\r
+          case 'Array':\r
+              return 1 /* COMMON */;\r
+          case 'Map':\r
+          case 'Set':\r
+          case 'WeakMap':\r
+          case 'WeakSet':\r
+              return 2 /* COLLECTION */;\r
+          default:\r
+              return 0 /* INVALID */;\r
+      }\r
+  }\r
+  function getTargetType(value) {\r
+      return value["__v_skip" /* SKIP */] || !Object.isExtensible(value)\r
+          ? 0 /* INVALID */\r
+          : targetTypeMap(toRawType(value));\r
+  }\r
+  function reactive(target) {\r
+      // if trying to observe a readonly proxy, return the readonly version.\r
+      if (target && target["__v_isReadonly" /* IS_READONLY */]) {\r
+          return target;\r
+      }\r
+      return createReactiveObject(target, false, mutableHandlers, mutableCollectionHandlers, reactiveMap);\r
+  }\r
+  /**\r
+   * Return a shallowly-reactive copy of the original object, where only the root\r
+   * level properties are reactive. It also does not auto-unwrap refs (even at the\r
+   * root level).\r
+   */\r
+  function shallowReactive(target) {\r
+      return createReactiveObject(target, false, shallowReactiveHandlers, shallowCollectionHandlers, shallowReactiveMap);\r
+  }\r
+  /**\r
+   * Creates a readonly copy of the original object. Note the returned copy is not\r
+   * made reactive, but `readonly` can be called on an already reactive object.\r
+   */\r
+  function readonly(target) {\r
+      return createReactiveObject(target, true, readonlyHandlers, readonlyCollectionHandlers, readonlyMap);\r
+  }\r
+  /**\r
+   * Returns a reactive-copy of the original object, where only the root level\r
+   * properties are readonly, and does NOT unwrap refs nor recursively convert\r
+   * returned properties.\r
+   * This is used for creating the props proxy object for stateful components.\r
+   */\r
+  function shallowReadonly(target) {\r
+      return createReactiveObject(target, true, shallowReadonlyHandlers, shallowReadonlyCollectionHandlers, shallowReadonlyMap);\r
+  }\r
+  function createReactiveObject(target, isReadonly, baseHandlers, collectionHandlers, proxyMap) {\r
+      if (!isObject(target)) {\r
+          {\r
+              console.warn(`value cannot be made reactive: ${String(target)}`);\r
+          }\r
+          return target;\r
+      }\r
+      // target is already a Proxy, return it.\r
+      // exception: calling readonly() on a reactive object\r
+      if (target["__v_raw" /* RAW */] &&\r
+          !(isReadonly && target["__v_isReactive" /* IS_REACTIVE */])) {\r
+          return target;\r
+      }\r
+      // target already has corresponding Proxy\r
+      const existingProxy = proxyMap.get(target);\r
+      if (existingProxy) {\r
+          return existingProxy;\r
+      }\r
+      // only a whitelist of value types can be observed.\r
+      const targetType = getTargetType(target);\r
+      if (targetType === 0 /* INVALID */) {\r
+          return target;\r
+      }\r
+      const proxy = new Proxy(target, targetType === 2 /* COLLECTION */ ? collectionHandlers : baseHandlers);\r
+      proxyMap.set(target, proxy);\r
+      return proxy;\r
+  }\r
+  function isReactive(value) {\r
+      if (isReadonly(value)) {\r
+          return isReactive(value["__v_raw" /* RAW */]);\r
+      }\r
+      return !!(value && value["__v_isReactive" /* IS_REACTIVE */]);\r
+  }\r
+  function isReadonly(value) {\r
+      return !!(value && value["__v_isReadonly" /* IS_READONLY */]);\r
+  }\r
+  function isProxy(value) {\r
+      return isReactive(value) || isReadonly(value);\r
+  }\r
+  function toRaw(observed) {\r
+      const raw = observed && observed["__v_raw" /* RAW */];\r
+      return raw ? toRaw(raw) : observed;\r
+  }\r
+  function markRaw(value) {\r
+      def(value, "__v_skip" /* SKIP */, true);\r
+      return value;\r
+  }
+
+  function trackRefValue(ref) {\r
+      if (isTracking()) {\r
+          ref = toRaw(ref);\r
+          if (!ref.dep) {\r
+              ref.dep = createDep();\r
+          }\r
+          {\r
+              trackEffects(ref.dep, {\r
+                  target: ref,\r
+                  type: "get" /* GET */,\r
+                  key: 'value'\r
+              });\r
+          }\r
+      }\r
+  }\r
+  function triggerRefValue(ref, newVal) {\r
+      ref = toRaw(ref);\r
+      if (ref.dep) {\r
+          {\r
+              triggerEffects(ref.dep, {\r
+                  target: ref,\r
+                  type: "set" /* SET */,\r
+                  key: 'value',\r
+                  newValue: newVal\r
+              });\r
+          }\r
+      }\r
+  }\r
+  const convert = (val) => isObject(val) ? reactive(val) : val;\r
+  function isRef(r) {\r
+      return Boolean(r && r.__v_isRef === true);\r
+  }\r
+  function ref(value) {\r
+      return createRef(value, false);\r
+  }\r
+  function shallowRef(value) {\r
+      return createRef(value, true);\r
+  }\r
+  class RefImpl {\r
+      constructor(value, _shallow) {\r
+          this._shallow = _shallow;\r
+          this.dep = undefined;\r
+          this.__v_isRef = true;\r
+          this._rawValue = _shallow ? value : toRaw(value);\r
+          this._value = _shallow ? value : convert(value);\r
+      }\r
+      get value() {\r
+          trackRefValue(this);\r
+          return this._value;\r
+      }\r
+      set value(newVal) {\r
+          newVal = this._shallow ? newVal : toRaw(newVal);\r
+          if (hasChanged(newVal, this._rawValue)) {\r
+              this._rawValue = newVal;\r
+              this._value = this._shallow ? newVal : convert(newVal);\r
+              triggerRefValue(this, newVal);\r
+          }\r
+      }\r
+  }\r
+  function createRef(rawValue, shallow) {\r
+      if (isRef(rawValue)) {\r
+          return rawValue;\r
+      }\r
+      return new RefImpl(rawValue, shallow);\r
+  }\r
+  function triggerRef(ref) {\r
+      triggerRefValue(ref, ref.value );\r
+  }\r
+  function unref(ref) {\r
+      return isRef(ref) ? ref.value : ref;\r
+  }\r
+  const shallowUnwrapHandlers = {\r
+      get: (target, key, receiver) => unref(Reflect.get(target, key, receiver)),\r
+      set: (target, key, value, receiver) => {\r
+          const oldValue = target[key];\r
+          if (isRef(oldValue) && !isRef(value)) {\r
+              oldValue.value = value;\r
+              return true;\r
+          }\r
+          else {\r
+              return Reflect.set(target, key, value, receiver);\r
+          }\r
+      }\r
+  };\r
+  function proxyRefs(objectWithRefs) {\r
+      return isReactive(objectWithRefs)\r
+          ? objectWithRefs\r
+          : new Proxy(objectWithRefs, shallowUnwrapHandlers);\r
+  }\r
+  class CustomRefImpl {\r
+      constructor(factory) {\r
+          this.dep = undefined;\r
+          this.__v_isRef = true;\r
+          const { get, set } = factory(() => trackRefValue(this), () => triggerRefValue(this));\r
+          this._get = get;\r
+          this._set = set;\r
+      }\r
+      get value() {\r
+          return this._get();\r
+      }\r
+      set value(newVal) {\r
+          this._set(newVal);\r
+      }\r
+  }\r
+  function customRef(factory) {\r
+      return new CustomRefImpl(factory);\r
+  }\r
+  function toRefs(object) {\r
+      if (!isProxy(object)) {\r
+          console.warn(`toRefs() expects a reactive object but received a plain one.`);\r
+      }\r
+      const ret = isArray(object) ? new Array(object.length) : {};\r
+      for (const key in object) {\r
+          ret[key] = toRef(object, key);\r
+      }\r
+      return ret;\r
+  }\r
+  class ObjectRefImpl {\r
+      constructor(_object, _key) {\r
+          this._object = _object;\r
+          this._key = _key;\r
+          this.__v_isRef = true;\r
+      }\r
+      get value() {\r
+          return this._object[this._key];\r
+      }\r
+      set value(newVal) {\r
+          this._object[this._key] = newVal;\r
+      }\r
+  }\r
+  function toRef(object, key) {\r
+      const val = object[key];\r
+      return isRef(val) ? val : new ObjectRefImpl(object, key);\r
+  }
+
+  class ComputedRefImpl {\r
+      constructor(getter, _setter, isReadonly) {\r
+          this._setter = _setter;\r
+          this.dep = undefined;\r
+          this._dirty = true;\r
+          this.__v_isRef = true;\r
+          this.effect = new ReactiveEffect(getter, () => {\r
+              if (!this._dirty) {\r
+                  this._dirty = true;\r
+                  triggerRefValue(this);\r
+              }\r
+          });\r
+          this["__v_isReadonly" /* IS_READONLY */] = isReadonly;\r
+      }\r
+      get value() {\r
+          // the computed ref may get wrapped by other proxies e.g. readonly() #3376\r
+          const self = toRaw(this);\r
+          trackRefValue(self);\r
+          if (self._dirty) {\r
+              self._dirty = false;\r
+              self._value = self.effect.run();\r
+          }\r
+          return self._value;\r
+      }\r
+      set value(newValue) {\r
+          this._setter(newValue);\r
+      }\r
+  }\r
+  function computed(getterOrOptions, debugOptions) {\r
+      let getter;\r
+      let setter;\r
+      if (isFunction(getterOrOptions)) {\r
+          getter = getterOrOptions;\r
+          setter = () => {\r
+                  console.warn('Write operation failed: computed value is readonly');\r
+              }\r
+              ;\r
+      }\r
+      else {\r
+          getter = getterOrOptions.get;\r
+          setter = getterOrOptions.set;\r
+      }\r
+      const cRef = new ComputedRefImpl(getter, setter, isFunction(getterOrOptions) || !getterOrOptions.set);\r
+      if (debugOptions) {\r
+          cRef.effect.onTrack = debugOptions.onTrack;\r
+          cRef.effect.onTrigger = debugOptions.onTrigger;\r
+      }\r
+      return cRef;\r
+  }
+
+  /* eslint-disable no-restricted-globals */\r
+  let isHmrUpdating = false;\r
+  const hmrDirtyComponents = new Set();\r
+  // Expose the HMR runtime on the global object\r
+  // This makes it entirely tree-shakable without polluting the exports and makes\r
+  // it easier to be used in toolings like vue-loader\r
+  // Note: for a component to be eligible for HMR it also needs the __hmrId option\r
+  // to be set so that its instances can be registered / removed.\r
+  {\r
+      const globalObject = typeof global !== 'undefined'\r
+          ? global\r
+          : typeof self !== 'undefined'\r
+              ? self\r
+              : typeof window !== 'undefined'\r
+                  ? window\r
+                  : {};\r
+      globalObject.__VUE_HMR_RUNTIME__ = {\r
+          createRecord: tryWrap(createRecord),\r
+          rerender: tryWrap(rerender),\r
+          reload: tryWrap(reload)\r
+      };\r
+  }\r
+  const map = new Map();\r
+  function registerHMR(instance) {\r
+      const id = instance.type.__hmrId;\r
+      let record = map.get(id);\r
+      if (!record) {\r
+          createRecord(id);\r
+          record = map.get(id);\r
+      }\r
+      record.add(instance);\r
+  }\r
+  function unregisterHMR(instance) {\r
+      map.get(instance.type.__hmrId).delete(instance);\r
+  }\r
+  function createRecord(id) {\r
+      if (map.has(id)) {\r
+          return false;\r
+      }\r
+      map.set(id, new Set());\r
+      return true;\r
+  }\r
+  function normalizeClassComponent(component) {\r
+      return isClassComponent(component) ? component.__vccOpts : component;\r
+  }\r
+  function rerender(id, newRender) {\r
+      const record = map.get(id);\r
+      if (!record) {\r
+          return;\r
+      }\r
+      [...record].forEach(instance => {\r
+          if (newRender) {\r
+              instance.render = newRender;\r
+              normalizeClassComponent(instance.type).render = newRender;\r
+          }\r
+          instance.renderCache = [];\r
+          // this flag forces child components with slot content to update\r
+          isHmrUpdating = true;\r
+          instance.update();\r
+          isHmrUpdating = false;\r
+      });\r
+  }\r
+  function reload(id, newComp) {\r
+      const record = map.get(id);\r
+      if (!record)\r
+          return;\r
+      newComp = normalizeClassComponent(newComp);\r
+      // create a snapshot which avoids the set being mutated during updates\r
+      const instances = [...record];\r
+      for (const instance of instances) {\r
+          const oldComp = normalizeClassComponent(instance.type);\r
+          if (!hmrDirtyComponents.has(oldComp)) {\r
+              // 1. Update existing comp definition to match new one\r
+              extend(oldComp, newComp);\r
+              for (const key in oldComp) {\r
+                  if (key !== '__file' && !(key in newComp)) {\r
+                      delete oldComp[key];\r
+                  }\r
+              }\r
+              // 2. mark definition dirty. This forces the renderer to replace the\r
+              // component on patch.\r
+              hmrDirtyComponents.add(oldComp);\r
+          }\r
+          // 3. invalidate options resolution cache\r
+          instance.appContext.optionsCache.delete(instance.type);\r
+          // 4. actually update\r
+          if (instance.ceReload) {\r
+              // custom element\r
+              hmrDirtyComponents.add(oldComp);\r
+              instance.ceReload(newComp.styles);\r
+              hmrDirtyComponents.delete(oldComp);\r
+          }\r
+          else if (instance.parent) {\r
+              // 4. Force the parent instance to re-render. This will cause all updated\r
+              // components to be unmounted and re-mounted. Queue the update so that we\r
+              // don't end up forcing the same parent to re-render multiple times.\r
+              queueJob(instance.parent.update);\r
+              // instance is the inner component of an async custom element\r
+              // invoke to reset styles\r
+              if (instance.parent.type.__asyncLoader &&\r
+                  instance.parent.ceReload) {\r
+                  instance.parent.ceReload(newComp.styles);\r
+              }\r
+          }\r
+          else if (instance.appContext.reload) {\r
+              // root instance mounted via createApp() has a reload method\r
+              instance.appContext.reload();\r
+          }\r
+          else if (typeof window !== 'undefined') {\r
+              // root instance inside tree created via raw render(). Force reload.\r
+              window.location.reload();\r
+          }\r
+          else {\r
+              console.warn('[HMR] Root or manually mounted instance modified. Full reload required.');\r
+          }\r
+      }\r
+      // 5. make sure to cleanup dirty hmr components after update\r
+      queuePostFlushCb(() => {\r
+          for (const instance of instances) {\r
+              hmrDirtyComponents.delete(normalizeClassComponent(instance.type));\r
+          }\r
+      });\r
+  }\r
+  function tryWrap(fn) {\r
+      return (id, arg) => {\r
+          try {\r
+              return fn(id, arg);\r
+          }\r
+          catch (e) {\r
+              console.error(e);\r
+              console.warn(`[HMR] Something went wrong during Vue component hot-reload. ` +\r
+                  `Full reload required.`);\r
+          }\r
+      };\r
+  }
+
+  function setDevtoolsHook(hook) {\r
+      exports.devtools = hook;\r
+  }\r
+  function devtoolsInitApp(app, version) {\r
+      // TODO queue if devtools is undefined\r
+      if (!exports.devtools)\r
+          return;\r
+      exports.devtools.emit("app:init" /* APP_INIT */, app, version, {\r
+          Fragment,\r
+          Text,\r
+          Comment,\r
+          Static\r
+      });\r
+  }\r
+  function devtoolsUnmountApp(app) {\r
+      if (!exports.devtools)\r
+          return;\r
+      exports.devtools.emit("app:unmount" /* APP_UNMOUNT */, app);\r
+  }\r
+  const devtoolsComponentAdded = /*#__PURE__*/ createDevtoolsComponentHook("component:added" /* COMPONENT_ADDED */);\r
+  const devtoolsComponentUpdated = \r
+  /*#__PURE__*/ createDevtoolsComponentHook("component:updated" /* COMPONENT_UPDATED */);\r
+  const devtoolsComponentRemoved = \r
+  /*#__PURE__*/ createDevtoolsComponentHook("component:removed" /* COMPONENT_REMOVED */);\r
+  function createDevtoolsComponentHook(hook) {\r
+      return (component) => {\r
+          if (!exports.devtools)\r
+              return;\r
+          exports.devtools.emit(hook, component.appContext.app, component.uid, component.parent ? component.parent.uid : undefined, component);\r
+      };\r
+  }\r
+  const devtoolsPerfStart = /*#__PURE__*/ createDevtoolsPerformanceHook("perf:start" /* PERFORMANCE_START */);\r
+  const devtoolsPerfEnd = /*#__PURE__*/ createDevtoolsPerformanceHook("perf:end" /* PERFORMANCE_END */);\r
+  function createDevtoolsPerformanceHook(hook) {\r
+      return (component, type, time) => {\r
+          if (!exports.devtools)\r
+              return;\r
+          exports.devtools.emit(hook, component.appContext.app, component.uid, component, type, time);\r
+      };\r
+  }\r
+  function devtoolsComponentEmit(component, event, params) {\r
+      if (!exports.devtools)\r
+          return;\r
+      exports.devtools.emit("component:emit" /* COMPONENT_EMIT */, component.appContext.app, component, event, params);\r
+  }
+
+  const deprecationData = {\r
+      ["GLOBAL_MOUNT" /* GLOBAL_MOUNT */]: {\r
+          message: `The global app bootstrapping API has changed: vm.$mount() and the "el" ` +\r
+              `option have been removed. Use createApp(RootComponent).mount() instead.`,\r
+          link: `https://v3.vuejs.org/guide/migration/global-api.html#mounting-app-instance`\r
+      },\r
+      ["GLOBAL_MOUNT_CONTAINER" /* GLOBAL_MOUNT_CONTAINER */]: {\r
+          message: `Vue detected directives on the mount container. ` +\r
+              `In Vue 3, the container is no longer considered part of the template ` +\r
+              `and will not be processed/replaced.`,\r
+          link: `https://v3.vuejs.org/guide/migration/mount-changes.html`\r
+      },\r
+      ["GLOBAL_EXTEND" /* GLOBAL_EXTEND */]: {\r
+          message: `Vue.extend() has been removed in Vue 3. ` +\r
+              `Use defineComponent() instead.`,\r
+          link: `https://v3.vuejs.org/api/global-api.html#definecomponent`\r
+      },\r
+      ["GLOBAL_PROTOTYPE" /* GLOBAL_PROTOTYPE */]: {\r
+          message: `Vue.prototype is no longer available in Vue 3. ` +\r
+              `Use app.config.globalProperties instead.`,\r
+          link: `https://v3.vuejs.org/guide/migration/global-api.html#vue-prototype-replaced-by-config-globalproperties`\r
+      },\r
+      ["GLOBAL_SET" /* GLOBAL_SET */]: {\r
+          message: `Vue.set() has been removed as it is no longer needed in Vue 3. ` +\r
+              `Simply use native JavaScript mutations.`\r
+      },\r
+      ["GLOBAL_DELETE" /* GLOBAL_DELETE */]: {\r
+          message: `Vue.delete() has been removed as it is no longer needed in Vue 3. ` +\r
+              `Simply use native JavaScript mutations.`\r
+      },\r
+      ["GLOBAL_OBSERVABLE" /* GLOBAL_OBSERVABLE */]: {\r
+          message: `Vue.observable() has been removed. ` +\r
+              `Use \`import { reactive } from "vue"\` from Composition API instead.`,\r
+          link: `https://v3.vuejs.org/api/basic-reactivity.html`\r
+      },\r
+      ["GLOBAL_PRIVATE_UTIL" /* GLOBAL_PRIVATE_UTIL */]: {\r
+          message: `Vue.util has been removed. Please refactor to avoid its usage ` +\r
+              `since it was an internal API even in Vue 2.`\r
+      },\r
+      ["CONFIG_SILENT" /* CONFIG_SILENT */]: {\r
+          message: `config.silent has been removed because it is not good practice to ` +\r
+              `intentionally suppress warnings. You can use your browser console's ` +\r
+              `filter features to focus on relevant messages.`\r
+      },\r
+      ["CONFIG_DEVTOOLS" /* CONFIG_DEVTOOLS */]: {\r
+          message: `config.devtools has been removed. To enable devtools for ` +\r
+              `production, configure the __VUE_PROD_DEVTOOLS__ compile-time flag.`,\r
+          link: `https://github.com/vuejs/vue-next/tree/master/packages/vue#bundler-build-feature-flags`\r
+      },\r
+      ["CONFIG_KEY_CODES" /* CONFIG_KEY_CODES */]: {\r
+          message: `config.keyCodes has been removed. ` +\r
+              `In Vue 3, you can directly use the kebab-case key names as v-on modifiers.`,\r
+          link: `https://v3.vuejs.org/guide/migration/keycode-modifiers.html`\r
+      },\r
+      ["CONFIG_PRODUCTION_TIP" /* CONFIG_PRODUCTION_TIP */]: {\r
+          message: `config.productionTip has been removed.`,\r
+          link: `https://v3.vuejs.org/guide/migration/global-api.html#config-productiontip-removed`\r
+      },\r
+      ["CONFIG_IGNORED_ELEMENTS" /* CONFIG_IGNORED_ELEMENTS */]: {\r
+          message: () => {\r
+              let msg = `config.ignoredElements has been removed.`;\r
+              if (isRuntimeOnly()) {\r
+                  msg += ` Pass the "isCustomElement" option to @vue/compiler-dom instead.`;\r
+              }\r
+              else {\r
+                  msg += ` Use config.isCustomElement instead.`;\r
+              }\r
+              return msg;\r
+          },\r
+          link: `https://v3.vuejs.org/guide/migration/global-api.html#config-ignoredelements-is-now-config-iscustomelement`\r
+      },\r
+      ["CONFIG_WHITESPACE" /* CONFIG_WHITESPACE */]: {\r
+          // this warning is only relevant in the full build when using runtime\r
+          // compilation, so it's put in the runtime compatConfig list.\r
+          message: `Vue 3 compiler's whitespace option will default to "condense" instead of ` +\r
+              `"preserve". To suppress this warning, provide an explicit value for ` +\r
+              `\`config.compilerOptions.whitespace\`.`\r
+      },\r
+      ["CONFIG_OPTION_MERGE_STRATS" /* CONFIG_OPTION_MERGE_STRATS */]: {\r
+          message: `config.optionMergeStrategies no longer exposes internal strategies. ` +\r
+              `Use custom merge functions instead.`\r
+      },\r
+      ["INSTANCE_SET" /* INSTANCE_SET */]: {\r
+          message: `vm.$set() has been removed as it is no longer needed in Vue 3. ` +\r
+              `Simply use native JavaScript mutations.`\r
+      },\r
+      ["INSTANCE_DELETE" /* INSTANCE_DELETE */]: {\r
+          message: `vm.$delete() has been removed as it is no longer needed in Vue 3. ` +\r
+              `Simply use native JavaScript mutations.`\r
+      },\r
+      ["INSTANCE_DESTROY" /* INSTANCE_DESTROY */]: {\r
+          message: `vm.$destroy() has been removed. Use app.unmount() instead.`,\r
+          link: `https://v3.vuejs.org/api/application-api.html#unmount`\r
+      },\r
+      ["INSTANCE_EVENT_EMITTER" /* INSTANCE_EVENT_EMITTER */]: {\r
+          message: `vm.$on/$once/$off() have been removed. ` +\r
+              `Use an external event emitter library instead.`,\r
+          link: `https://v3.vuejs.org/guide/migration/events-api.html`\r
+      },\r
+      ["INSTANCE_EVENT_HOOKS" /* INSTANCE_EVENT_HOOKS */]: {\r
+          message: event => `"${event}" lifecycle events are no longer supported. From templates, ` +\r
+              `use the "vnode" prefix instead of "hook:". For example, @${event} ` +\r
+              `should be changed to @vnode-${event.slice(5)}. ` +\r
+              `From JavaScript, use Composition API to dynamically register lifecycle ` +\r
+              `hooks.`,\r
+          link: `https://v3.vuejs.org/guide/migration/vnode-lifecycle-events.html`\r
+      },\r
+      ["INSTANCE_CHILDREN" /* INSTANCE_CHILDREN */]: {\r
+          message: `vm.$children has been removed. Consider refactoring your logic ` +\r
+              `to avoid relying on direct access to child components.`,\r
+          link: `https://v3.vuejs.org/guide/migration/children.html`\r
+      },\r
+      ["INSTANCE_LISTENERS" /* INSTANCE_LISTENERS */]: {\r
+          message: `vm.$listeners has been removed. In Vue 3, parent v-on listeners are ` +\r
+              `included in vm.$attrs and it is no longer necessary to separately use ` +\r
+              `v-on="$listeners" if you are already using v-bind="$attrs". ` +\r
+              `(Note: the Vue 3 behavior only applies if this compat config is disabled)`,\r
+          link: `https://v3.vuejs.org/guide/migration/listeners-removed.html`\r
+      },\r
+      ["INSTANCE_SCOPED_SLOTS" /* INSTANCE_SCOPED_SLOTS */]: {\r
+          message: `vm.$scopedSlots has been removed. Use vm.$slots instead.`,\r
+          link: `https://v3.vuejs.org/guide/migration/slots-unification.html`\r
+      },\r
+      ["INSTANCE_ATTRS_CLASS_STYLE" /* INSTANCE_ATTRS_CLASS_STYLE */]: {\r
+          message: componentName => `Component <${componentName || 'Anonymous'}> has \`inheritAttrs: false\` but is ` +\r
+              `relying on class/style fallthrough from parent. In Vue 3, class/style ` +\r
+              `are now included in $attrs and will no longer fallthrough when ` +\r
+              `inheritAttrs is false. If you are already using v-bind="$attrs" on ` +\r
+              `component root it should render the same end result. ` +\r
+              `If you are binding $attrs to a non-root element and expecting ` +\r
+              `class/style to fallthrough on root, you will need to now manually bind ` +\r
+              `them on root via :class="$attrs.class".`,\r
+          link: `https://v3.vuejs.org/guide/migration/attrs-includes-class-style.html`\r
+      },\r
+      ["OPTIONS_DATA_FN" /* OPTIONS_DATA_FN */]: {\r
+          message: `The "data" option can no longer be a plain object. ` +\r
+              `Always use a function.`,\r
+          link: `https://v3.vuejs.org/guide/migration/data-option.html`\r
+      },\r
+      ["OPTIONS_DATA_MERGE" /* OPTIONS_DATA_MERGE */]: {\r
+          message: (key) => `Detected conflicting key "${key}" when merging data option values. ` +\r
+              `In Vue 3, data keys are merged shallowly and will override one another.`,\r
+          link: `https://v3.vuejs.org/guide/migration/data-option.html#mixin-merge-behavior-change`\r
+      },\r
+      ["OPTIONS_BEFORE_DESTROY" /* OPTIONS_BEFORE_DESTROY */]: {\r
+          message: `\`beforeDestroy\` has been renamed to \`beforeUnmount\`.`\r
+      },\r
+      ["OPTIONS_DESTROYED" /* OPTIONS_DESTROYED */]: {\r
+          message: `\`destroyed\` has been renamed to \`unmounted\`.`\r
+      },\r
+      ["WATCH_ARRAY" /* WATCH_ARRAY */]: {\r
+          message: `"watch" option or vm.$watch on an array value will no longer ` +\r
+              `trigger on array mutation unless the "deep" option is specified. ` +\r
+              `If current usage is intended, you can disable the compat behavior and ` +\r
+              `suppress this warning with:` +\r
+              `\n\n  configureCompat({ ${"WATCH_ARRAY" /* WATCH_ARRAY */}: false })\n`,\r
+          link: `https://v3.vuejs.org/guide/migration/watch.html`\r
+      },\r
+      ["PROPS_DEFAULT_THIS" /* PROPS_DEFAULT_THIS */]: {\r
+          message: (key) => `props default value function no longer has access to "this". The compat ` +\r
+              `build only offers access to this.$options.` +\r
+              `(found in prop "${key}")`,\r
+          link: `https://v3.vuejs.org/guide/migration/props-default-this.html`\r
+      },\r
+      ["CUSTOM_DIR" /* CUSTOM_DIR */]: {\r
+          message: (legacyHook, newHook) => `Custom directive hook "${legacyHook}" has been removed. ` +\r
+              `Use "${newHook}" instead.`,\r
+          link: `https://v3.vuejs.org/guide/migration/custom-directives.html`\r
+      },\r
+      ["V_FOR_REF" /* V_FOR_REF */]: {\r
+          message: `Ref usage on v-for no longer creates array ref values in Vue 3. ` +\r
+              `Consider using function refs or refactor to avoid ref usage altogether.`,\r
+          link: `https://v3.vuejs.org/guide/migration/array-refs.html`\r
+      },\r
+      ["V_ON_KEYCODE_MODIFIER" /* V_ON_KEYCODE_MODIFIER */]: {\r
+          message: `Using keyCode as v-on modifier is no longer supported. ` +\r
+              `Use kebab-case key name modifiers instead.`,\r
+          link: `https://v3.vuejs.org/guide/migration/keycode-modifiers.html`\r
+      },\r
+      ["ATTR_FALSE_VALUE" /* ATTR_FALSE_VALUE */]: {\r
+          message: (name) => `Attribute "${name}" with v-bind value \`false\` will render ` +\r
+              `${name}="false" instead of removing it in Vue 3. To remove the attribute, ` +\r
+              `use \`null\` or \`undefined\` instead. If the usage is intended, ` +\r
+              `you can disable the compat behavior and suppress this warning with:` +\r
+              `\n\n  configureCompat({ ${"ATTR_FALSE_VALUE" /* ATTR_FALSE_VALUE */}: false })\n`,\r
+          link: `https://v3.vuejs.org/guide/migration/attribute-coercion.html`\r
+      },\r
+      ["ATTR_ENUMERATED_COERCION" /* ATTR_ENUMERATED_COERCION */]: {\r
+          message: (name, value, coerced) => `Enumerated attribute "${name}" with v-bind value \`${value}\` will ` +\r
+              `${value === null ? `be removed` : `render the value as-is`} instead of coercing the value to "${coerced}" in Vue 3. ` +\r
+              `Always use explicit "true" or "false" values for enumerated attributes. ` +\r
+              `If the usage is intended, ` +\r
+              `you can disable the compat behavior and suppress this warning with:` +\r
+              `\n\n  configureCompat({ ${"ATTR_ENUMERATED_COERCION" /* ATTR_ENUMERATED_COERCION */}: false })\n`,\r
+          link: `https://v3.vuejs.org/guide/migration/attribute-coercion.html`\r
+      },\r
+      ["TRANSITION_CLASSES" /* TRANSITION_CLASSES */]: {\r
+          message: `` // this feature cannot be runtime-detected\r
+      },\r
+      ["TRANSITION_GROUP_ROOT" /* TRANSITION_GROUP_ROOT */]: {\r
+          message: `<TransitionGroup> no longer renders a root <span> element by ` +\r
+              `default if no "tag" prop is specified. If you do not rely on the span ` +\r
+              `for styling, you can disable the compat behavior and suppress this ` +\r
+              `warning with:` +\r
+              `\n\n  configureCompat({ ${"TRANSITION_GROUP_ROOT" /* TRANSITION_GROUP_ROOT */}: false })\n`,\r
+          link: `https://v3.vuejs.org/guide/migration/transition-group.html`\r
+      },\r
+      ["COMPONENT_ASYNC" /* COMPONENT_ASYNC */]: {\r
+          message: (comp) => {\r
+              const name = getComponentName(comp);\r
+              return (`Async component${name ? ` <${name}>` : `s`} should be explicitly created via \`defineAsyncComponent()\` ` +\r
+                  `in Vue 3. Plain functions will be treated as functional components in ` +\r
+                  `non-compat build. If you have already migrated all async component ` +\r
+                  `usage and intend to use plain functions for functional components, ` +\r
+                  `you can disable the compat behavior and suppress this ` +\r
+                  `warning with:` +\r
+                  `\n\n  configureCompat({ ${"COMPONENT_ASYNC" /* COMPONENT_ASYNC */}: false })\n`);\r
+          },\r
+          link: `https://v3.vuejs.org/guide/migration/async-components.html`\r
+      },\r
+      ["COMPONENT_FUNCTIONAL" /* COMPONENT_FUNCTIONAL */]: {\r
+          message: (comp) => {\r
+              const name = getComponentName(comp);\r
+              return (`Functional component${name ? ` <${name}>` : `s`} should be defined as a plain function in Vue 3. The "functional" ` +\r
+                  `option has been removed. NOTE: Before migrating to use plain ` +\r
+                  `functions for functional components, first make sure that all async ` +\r
+                  `components usage have been migrated and its compat behavior has ` +\r
+                  `been disabled.`);\r
+          },\r
+          link: `https://v3.vuejs.org/guide/migration/functional-components.html`\r
+      },\r
+      ["COMPONENT_V_MODEL" /* COMPONENT_V_MODEL */]: {\r
+          message: (comp) => {\r
+              const configMsg = `opt-in to ` +\r
+                  `Vue 3 behavior on a per-component basis with \`compatConfig: { ${"COMPONENT_V_MODEL" /* COMPONENT_V_MODEL */}: false }\`.`;\r
+              if (comp.props &&\r
+                  (isArray(comp.props)\r
+                      ? comp.props.includes('modelValue')\r
+                      : hasOwn(comp.props, 'modelValue'))) {\r
+                  return (`Component delcares "modelValue" prop, which is Vue 3 usage, but ` +\r
+                      `is running under Vue 2 compat v-model behavior. You can ${configMsg}`);\r
+              }\r
+              return (`v-model usage on component has changed in Vue 3. Component that expects ` +\r
+                  `to work with v-model should now use the "modelValue" prop and emit the ` +\r
+                  `"update:modelValue" event. You can update the usage and then ${configMsg}`);\r
+          },\r
+          link: `https://v3.vuejs.org/guide/migration/v-model.html`\r
+      },\r
+      ["RENDER_FUNCTION" /* RENDER_FUNCTION */]: {\r
+          message: `Vue 3's render function API has changed. ` +\r
+              `You can opt-in to the new API with:` +\r
+              `\n\n  configureCompat({ ${"RENDER_FUNCTION" /* RENDER_FUNCTION */}: false })\n` +\r
+              `\n  (This can also be done per-component via the "compatConfig" option.)`,\r
+          link: `https://v3.vuejs.org/guide/migration/render-function-api.html`\r
+      },\r
+      ["FILTERS" /* FILTERS */]: {\r
+          message: `filters have been removed in Vue 3. ` +\r
+              `The "|" symbol will be treated as native JavaScript bitwise OR operator. ` +\r
+              `Use method calls or computed properties instead.`,\r
+          link: `https://v3.vuejs.org/guide/migration/filters.html`\r
+      },\r
+      ["PRIVATE_APIS" /* PRIVATE_APIS */]: {\r
+          message: name => `"${name}" is a Vue 2 private API that no longer exists in Vue 3. ` +\r
+              `If you are seeing this warning only due to a dependency, you can ` +\r
+              `suppress this warning via { PRIVATE_APIS: 'supress-warning' }.`\r
+      }\r
+  };\r
+  const instanceWarned = Object.create(null);\r
+  const warnCount = Object.create(null);\r
+  function warnDeprecation(key, instance, ...args) {\r
+      instance = instance || getCurrentInstance();\r
+      // check user config\r
+      const config = getCompatConfigForKey(key, instance);\r
+      if (config === 'suppress-warning') {\r
+          return;\r
+      }\r
+      const dupKey = key + args.join('');\r
+      let compId = instance && formatComponentName(instance, instance.type);\r
+      if (compId === 'Anonymous' && instance) {\r
+          compId = instance.uid;\r
+      }\r
+      // skip if the same warning is emitted for the same component type\r
+      const componentDupKey = dupKey + compId;\r
+      if (componentDupKey in instanceWarned) {\r
+          return;\r
+      }\r
+      instanceWarned[componentDupKey] = true;\r
+      // same warning, but different component. skip the long message and just\r
+      // log the key and count.\r
+      if (dupKey in warnCount) {\r
+          warn$1(`(deprecation ${key}) (${++warnCount[dupKey] + 1})`);\r
+          return;\r
+      }\r
+      warnCount[dupKey] = 0;\r
+      const { message, link } = deprecationData[key];\r
+      warn$1(`(deprecation ${key}) ${typeof message === 'function' ? message(...args) : message}${link ? `\n  Details: ${link}` : ``}`);\r
+      if (!isCompatEnabled(key, instance, true)) {\r
+          console.error(`^ The above deprecation's compat behavior is disabled and will likely ` +\r
+              `lead to runtime errors.`);\r
+      }\r
+  }\r
+  const globalCompatConfig = {\r
+      MODE: 2\r
+  };\r
+  function getCompatConfigForKey(key, instance) {\r
+      const instanceConfig = instance && instance.type.compatConfig;\r
+      if (instanceConfig && key in instanceConfig) {\r
+          return instanceConfig[key];\r
+      }\r
+      return globalCompatConfig[key];\r
+  }\r
+  function isCompatEnabled(key, instance, enableForBuiltIn = false) {\r
+      // skip compat for built-in components\r
+      if (!enableForBuiltIn && instance && instance.type.__isBuiltIn) {\r
+          return false;\r
+      }\r
+      const rawMode = getCompatConfigForKey('MODE', instance) || 2;\r
+      const val = getCompatConfigForKey(key, instance);\r
+      const mode = isFunction(rawMode)\r
+          ? rawMode(instance && instance.type)\r
+          : rawMode;\r
+      if (mode === 2) {\r
+          return val !== false;\r
+      }\r
+      else {\r
+          return val === true || val === 'suppress-warning';\r
+      }\r
+  }
+
+  function emit(instance, event, ...rawArgs) {\r
+      const props = instance.vnode.props || EMPTY_OBJ;\r
+      {\r
+          const { emitsOptions, propsOptions: [propsOptions] } = instance;\r
+          if (emitsOptions) {\r
+              if (!(event in emitsOptions) &&\r
+                  !(false )) {\r
+                  if (!propsOptions || !(toHandlerKey(event) in propsOptions)) {\r
+                      warn$1(`Component emitted event "${event}" but it is neither declared in ` +\r
+                          `the emits option nor as an "${toHandlerKey(event)}" prop.`);\r
+                  }\r
+              }\r
+              else {\r
+                  const validator = emitsOptions[event];\r
+                  if (isFunction(validator)) {\r
+                      const isValid = validator(...rawArgs);\r
+                      if (!isValid) {\r
+                          warn$1(`Invalid event arguments: event validation failed for event "${event}".`);\r
+                      }\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      let args = rawArgs;\r
+      const isModelListener = event.startsWith('update:');\r
+      // for v-model update:xxx events, apply modifiers on args\r
+      const modelArg = isModelListener && event.slice(7);\r
+      if (modelArg && modelArg in props) {\r
+          const modifiersKey = `${modelArg === 'modelValue' ? 'model' : modelArg}Modifiers`;\r
+          const { number, trim } = props[modifiersKey] || EMPTY_OBJ;\r
+          if (trim) {\r
+              args = rawArgs.map(a => a.trim());\r
+          }\r
+          else if (number) {\r
+              args = rawArgs.map(toNumber);\r
+          }\r
+      }\r
+      {\r
+          devtoolsComponentEmit(instance, event, args);\r
+      }\r
+      {\r
+          const lowerCaseEvent = event.toLowerCase();\r
+          if (lowerCaseEvent !== event && props[toHandlerKey(lowerCaseEvent)]) {\r
+              warn$1(`Event "${lowerCaseEvent}" is emitted in component ` +\r
+                  `${formatComponentName(instance, instance.type)} but the handler is registered for "${event}". ` +\r
+                  `Note that HTML attributes are case-insensitive and you cannot use ` +\r
+                  `v-on to listen to camelCase events when using in-DOM templates. ` +\r
+                  `You should probably use "${hyphenate(event)}" instead of "${event}".`);\r
+          }\r
+      }\r
+      let handlerName;\r
+      let handler = props[(handlerName = toHandlerKey(event))] ||\r
+          // also try camelCase event handler (#2249)\r
+          props[(handlerName = toHandlerKey(camelize(event)))];\r
+      // for v-model update:xxx events, also trigger kebab-case equivalent\r
+      // for props passed via kebab-case\r
+      if (!handler && isModelListener) {\r
+          handler = props[(handlerName = toHandlerKey(hyphenate(event)))];\r
+      }\r
+      if (handler) {\r
+          callWithAsyncErrorHandling(handler, instance, 6 /* COMPONENT_EVENT_HANDLER */, args);\r
+      }\r
+      const onceHandler = props[handlerName + `Once`];\r
+      if (onceHandler) {\r
+          if (!instance.emitted) {\r
+              instance.emitted = {};\r
+          }\r
+          else if (instance.emitted[handlerName]) {\r
+              return;\r
+          }\r
+          instance.emitted[handlerName] = true;\r
+          callWithAsyncErrorHandling(onceHandler, instance, 6 /* COMPONENT_EVENT_HANDLER */, args);\r
+      }\r
+  }\r
+  function normalizeEmitsOptions(comp, appContext, asMixin = false) {\r
+      const cache = appContext.emitsCache;\r
+      const cached = cache.get(comp);\r
+      if (cached !== undefined) {\r
+          return cached;\r
+      }\r
+      const raw = comp.emits;\r
+      let normalized = {};\r
+      // apply mixin/extends props\r
+      let hasExtends = false;\r
+      if (!isFunction(comp)) {\r
+          const extendEmits = (raw) => {\r
+              const normalizedFromExtend = normalizeEmitsOptions(raw, appContext, true);\r
+              if (normalizedFromExtend) {\r
+                  hasExtends = true;\r
+                  extend(normalized, normalizedFromExtend);\r
+              }\r
+          };\r
+          if (!asMixin && appContext.mixins.length) {\r
+              appContext.mixins.forEach(extendEmits);\r
+          }\r
+          if (comp.extends) {\r
+              extendEmits(comp.extends);\r
+          }\r
+          if (comp.mixins) {\r
+              comp.mixins.forEach(extendEmits);\r
+          }\r
+      }\r
+      if (!raw && !hasExtends) {\r
+          cache.set(comp, null);\r
+          return null;\r
+      }\r
+      if (isArray(raw)) {\r
+          raw.forEach(key => (normalized[key] = null));\r
+      }\r
+      else {\r
+          extend(normalized, raw);\r
+      }\r
+      cache.set(comp, normalized);\r
+      return normalized;\r
+  }\r
+  // Check if an incoming prop key is a declared emit event listener.\r
+  // e.g. With `emits: { click: null }`, props named `onClick` and `onclick` are\r
+  // both considered matched listeners.\r
+  function isEmitListener(options, key) {\r
+      if (!options || !isOn(key)) {\r
+          return false;\r
+      }\r
+      key = key.slice(2).replace(/Once$/, '');\r
+      return (hasOwn(options, key[0].toLowerCase() + key.slice(1)) ||\r
+          hasOwn(options, hyphenate(key)) ||\r
+          hasOwn(options, key));\r
+  }
+
+  /**\r
+   * mark the current rendering instance for asset resolution (e.g.\r
+   * resolveComponent, resolveDirective) during render\r
+   */\r
+  let currentRenderingInstance = null;\r
+  let currentScopeId = null;\r
+  /**\r
+   * Note: rendering calls maybe nested. The function returns the parent rendering\r
+   * instance if present, which should be restored after the render is done:\r
+   *\r
+   * ```js\r
+   * const prev = setCurrentRenderingInstance(i)\r
+   * // ...render\r
+   * setCurrentRenderingInstance(prev)\r
+   * ```\r
+   */\r
+  function setCurrentRenderingInstance(instance) {\r
+      const prev = currentRenderingInstance;\r
+      currentRenderingInstance = instance;\r
+      currentScopeId = (instance && instance.type.__scopeId) || null;\r
+      return prev;\r
+  }\r
+  /**\r
+   * Set scope id when creating hoisted vnodes.\r
+   * @private compiler helper\r
+   */\r
+  function pushScopeId(id) {\r
+      currentScopeId = id;\r
+  }\r
+  /**\r
+   * Technically we no longer need this after 3.0.8 but we need to keep the same\r
+   * API for backwards compat w/ code generated by compilers.\r
+   * @private\r
+   */\r
+  function popScopeId() {\r
+      currentScopeId = null;\r
+  }\r
+  /**\r
+   * Only for backwards compat\r
+   * @private\r
+   */\r
+  const withScopeId = (_id) => withCtx;\r
+  /**\r
+   * Wrap a slot function to memoize current rendering instance\r
+   * @private compiler helper\r
+   */\r
+  function withCtx(fn, ctx = currentRenderingInstance, isNonScopedSlot // false only\r
+  ) {\r
+      if (!ctx)\r
+          return fn;\r
+      // already normalized\r
+      if (fn._n) {\r
+          return fn;\r
+      }\r
+      const renderFnWithContext = (...args) => {\r
+          // If a user calls a compiled slot inside a template expression (#1745), it\r
+          // can mess up block tracking, so by default we disable block tracking and\r
+          // force bail out when invoking a compiled slot (indicated by the ._d flag).\r
+          // This isn't necessary if rendering a compiled `<slot>`, so we flip the\r
+          // ._d flag off when invoking the wrapped fn inside `renderSlot`.\r
+          if (renderFnWithContext._d) {\r
+              setBlockTracking(-1);\r
+          }\r
+          const prevInstance = setCurrentRenderingInstance(ctx);\r
+          const res = fn(...args);\r
+          setCurrentRenderingInstance(prevInstance);\r
+          if (renderFnWithContext._d) {\r
+              setBlockTracking(1);\r
+          }\r
+          {\r
+              devtoolsComponentUpdated(ctx);\r
+          }\r
+          return res;\r
+      };\r
+      // mark normalized to avoid duplicated wrapping\r
+      renderFnWithContext._n = true;\r
+      // mark this as compiled by default\r
+      // this is used in vnode.ts -> normalizeChildren() to set the slot\r
+      // rendering flag.\r
+      renderFnWithContext._c = true;\r
+      // disable block tracking by default\r
+      renderFnWithContext._d = true;\r
+      return renderFnWithContext;\r
+  }
+
+  /**\r
+   * dev only flag to track whether $attrs was used during render.\r
+   * If $attrs was used during render then the warning for failed attrs\r
+   * fallthrough can be suppressed.\r
+   */\r
+  let accessedAttrs = false;\r
+  function markAttrsAccessed() {\r
+      accessedAttrs = true;\r
+  }\r
+  function renderComponentRoot(instance) {\r
+      const { type: Component, vnode, proxy, withProxy, props, propsOptions: [propsOptions], slots, attrs, emit, render, renderCache, data, setupState, ctx, inheritAttrs } = instance;\r
+      let result;\r
+      const prev = setCurrentRenderingInstance(instance);\r
+      {\r
+          accessedAttrs = false;\r
+      }\r
+      try {\r
+          let fallthroughAttrs;\r
+          if (vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */) {\r
+              // withProxy is a proxy with a different `has` trap only for\r
+              // runtime-compiled render functions using `with` block.\r
+              const proxyToUse = withProxy || proxy;\r
+              result = normalizeVNode(render.call(proxyToUse, proxyToUse, renderCache, props, setupState, data, ctx));\r
+              fallthroughAttrs = attrs;\r
+          }\r
+          else {\r
+              // functional\r
+              const render = Component;\r
+              // in dev, mark attrs accessed if optional props (attrs === props)\r
+              if (true && attrs === props) {\r
+                  markAttrsAccessed();\r
+              }\r
+              result = normalizeVNode(render.length > 1\r
+                  ? render(props, true\r
+                      ? {\r
+                          get attrs() {\r
+                              markAttrsAccessed();\r
+                              return attrs;\r
+                          },\r
+                          slots,\r
+                          emit\r
+                      }\r
+                      : { attrs, slots, emit })\r
+                  : render(props, null /* we know it doesn't need it */));\r
+              fallthroughAttrs = Component.props\r
+                  ? attrs\r
+                  : getFunctionalFallthrough(attrs);\r
+          }\r
+          // attr merging\r
+          // in dev mode, comments are preserved, and it's possible for a template\r
+          // to have comments along side the root element which makes it a fragment\r
+          let root = result;\r
+          let setRoot = undefined;\r
+          if (true &&\r
+              result.patchFlag > 0 &&\r
+              result.patchFlag & 2048 /* DEV_ROOT_FRAGMENT */) {\r
+              ;\r
+              [root, setRoot] = getChildRoot(result);\r
+          }\r
+          if (fallthroughAttrs && inheritAttrs !== false) {\r
+              const keys = Object.keys(fallthroughAttrs);\r
+              const { shapeFlag } = root;\r
+              if (keys.length) {\r
+                  if (shapeFlag & (1 /* ELEMENT */ | 6 /* COMPONENT */)) {\r
+                      if (propsOptions && keys.some(isModelListener)) {\r
+                          // If a v-model listener (onUpdate:xxx) has a corresponding declared\r
+                          // prop, it indicates this component expects to handle v-model and\r
+                          // it should not fallthrough.\r
+                          // related: #1543, #1643, #1989\r
+                          fallthroughAttrs = filterModelListeners(fallthroughAttrs, propsOptions);\r
+                      }\r
+                      root = cloneVNode(root, fallthroughAttrs);\r
+                  }\r
+                  else if (true && !accessedAttrs && root.type !== Comment) {\r
+                      const allAttrs = Object.keys(attrs);\r
+                      const eventAttrs = [];\r
+                      const extraAttrs = [];\r
+                      for (let i = 0, l = allAttrs.length; i < l; i++) {\r
+                          const key = allAttrs[i];\r
+                          if (isOn(key)) {\r
+                              // ignore v-model handlers when they fail to fallthrough\r
+                              if (!isModelListener(key)) {\r
+                                  // remove `on`, lowercase first letter to reflect event casing\r
+                                  // accurately\r
+                                  eventAttrs.push(key[2].toLowerCase() + key.slice(3));\r
+                              }\r
+                          }\r
+                          else {\r
+                              extraAttrs.push(key);\r
+                          }\r
+                      }\r
+                      if (extraAttrs.length) {\r
+                          warn$1(`Extraneous non-props attributes (` +\r
+                              `${extraAttrs.join(', ')}) ` +\r
+                              `were passed to component but could not be automatically inherited ` +\r
+                              `because component renders fragment or text root nodes.`);\r
+                      }\r
+                      if (eventAttrs.length) {\r
+                          warn$1(`Extraneous non-emits event listeners (` +\r
+                              `${eventAttrs.join(', ')}) ` +\r
+                              `were passed to component but could not be automatically inherited ` +\r
+                              `because component renders fragment or text root nodes. ` +\r
+                              `If the listener is intended to be a component custom event listener only, ` +\r
+                              `declare it using the "emits" option.`);\r
+                      }\r
+                  }\r
+              }\r
+          }\r
+          if (false &&\r
+              isCompatEnabled("INSTANCE_ATTRS_CLASS_STYLE" /* INSTANCE_ATTRS_CLASS_STYLE */, instance) &&\r
+              vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */ &&\r
+              root.shapeFlag & (1 /* ELEMENT */ | 6 /* COMPONENT */)) ;\r
+          // inherit directives\r
+          if (vnode.dirs) {\r
+              if (true && !isElementRoot(root)) {\r
+                  warn$1(`Runtime directive used on component with non-element root node. ` +\r
+                      `The directives will not function as intended.`);\r
+              }\r
+              root.dirs = root.dirs ? root.dirs.concat(vnode.dirs) : vnode.dirs;\r
+          }\r
+          // inherit transition data\r
+          if (vnode.transition) {\r
+              if (true && !isElementRoot(root)) {\r
+                  warn$1(`Component inside <Transition> renders non-element root node ` +\r
+                      `that cannot be animated.`);\r
+              }\r
+              root.transition = vnode.transition;\r
+          }\r
+          if (true && setRoot) {\r
+              setRoot(root);\r
+          }\r
+          else {\r
+              result = root;\r
+          }\r
+      }\r
+      catch (err) {\r
+          blockStack.length = 0;\r
+          handleError(err, instance, 1 /* RENDER_FUNCTION */);\r
+          result = createVNode(Comment);\r
+      }\r
+      setCurrentRenderingInstance(prev);\r
+      return result;\r
+  }\r
+  /**\r
+   * dev only\r
+   * In dev mode, template root level comments are rendered, which turns the\r
+   * template into a fragment root, but we need to locate the single element\r
+   * root for attrs and scope id processing.\r
+   */\r
+  const getChildRoot = (vnode) => {\r
+      const rawChildren = vnode.children;\r
+      const dynamicChildren = vnode.dynamicChildren;\r
+      const childRoot = filterSingleRoot(rawChildren);\r
+      if (!childRoot) {\r
+          return [vnode, undefined];\r
+      }\r
+      const index = rawChildren.indexOf(childRoot);\r
+      const dynamicIndex = dynamicChildren ? dynamicChildren.indexOf(childRoot) : -1;\r
+      const setRoot = (updatedRoot) => {\r
+          rawChildren[index] = updatedRoot;\r
+          if (dynamicChildren) {\r
+              if (dynamicIndex > -1) {\r
+                  dynamicChildren[dynamicIndex] = updatedRoot;\r
+              }\r
+              else if (updatedRoot.patchFlag > 0) {\r
+                  vnode.dynamicChildren = [...dynamicChildren, updatedRoot];\r
+              }\r
+          }\r
+      };\r
+      return [normalizeVNode(childRoot), setRoot];\r
+  };\r
+  function filterSingleRoot(children) {\r
+      let singleRoot;\r
+      for (let i = 0; i < children.length; i++) {\r
+          const child = children[i];\r
+          if (isVNode(child)) {\r
+              // ignore user comment\r
+              if (child.type !== Comment || child.children === 'v-if') {\r
+                  if (singleRoot) {\r
+                      // has more than 1 non-comment child, return now\r
+                      return;\r
+                  }\r
+                  else {\r
+                      singleRoot = child;\r
+                  }\r
+              }\r
+          }\r
+          else {\r
+              return;\r
+          }\r
+      }\r
+      return singleRoot;\r
+  }\r
+  const getFunctionalFallthrough = (attrs) => {\r
+      let res;\r
+      for (const key in attrs) {\r
+          if (key === 'class' || key === 'style' || isOn(key)) {\r
+              (res || (res = {}))[key] = attrs[key];\r
+          }\r
+      }\r
+      return res;\r
+  };\r
+  const filterModelListeners = (attrs, props) => {\r
+      const res = {};\r
+      for (const key in attrs) {\r
+          if (!isModelListener(key) || !(key.slice(9) in props)) {\r
+              res[key] = attrs[key];\r
+          }\r
+      }\r
+      return res;\r
+  };\r
+  const isElementRoot = (vnode) => {\r
+      return (vnode.shapeFlag & (6 /* COMPONENT */ | 1 /* ELEMENT */) ||\r
+          vnode.type === Comment // potential v-if branch switch\r
+      );\r
+  };\r
+  function shouldUpdateComponent(prevVNode, nextVNode, optimized) {\r
+      const { props: prevProps, children: prevChildren, component } = prevVNode;\r
+      const { props: nextProps, children: nextChildren, patchFlag } = nextVNode;\r
+      const emits = component.emitsOptions;\r
+      // Parent component's render function was hot-updated. Since this may have\r
+      // caused the child component's slots content to have changed, we need to\r
+      // force the child to update as well.\r
+      if ((prevChildren || nextChildren) && isHmrUpdating) {\r
+          return true;\r
+      }\r
+      // force child update for runtime directive or transition on component vnode.\r
+      if (nextVNode.dirs || nextVNode.transition) {\r
+          return true;\r
+      }\r
+      if (optimized && patchFlag >= 0) {\r
+          if (patchFlag & 1024 /* DYNAMIC_SLOTS */) {\r
+              // slot content that references values that might have changed,\r
+              // e.g. in a v-for\r
+              return true;\r
+          }\r
+          if (patchFlag & 16 /* FULL_PROPS */) {\r
+              if (!prevProps) {\r
+                  return !!nextProps;\r
+              }\r
+              // presence of this flag indicates props are always non-null\r
+              return hasPropsChanged(prevProps, nextProps, emits);\r
+          }\r
+          else if (patchFlag & 8 /* PROPS */) {\r
+              const dynamicProps = nextVNode.dynamicProps;\r
+              for (let i = 0; i < dynamicProps.length; i++) {\r
+                  const key = dynamicProps[i];\r
+                  if (nextProps[key] !== prevProps[key] &&\r
+                      !isEmitListener(emits, key)) {\r
+                      return true;\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      else {\r
+          // this path is only taken by manually written render functions\r
+          // so presence of any children leads to a forced update\r
+          if (prevChildren || nextChildren) {\r
+              if (!nextChildren || !nextChildren.$stable) {\r
+                  return true;\r
+              }\r
+          }\r
+          if (prevProps === nextProps) {\r
+              return false;\r
+          }\r
+          if (!prevProps) {\r
+              return !!nextProps;\r
+          }\r
+          if (!nextProps) {\r
+              return true;\r
+          }\r
+          return hasPropsChanged(prevProps, nextProps, emits);\r
+      }\r
+      return false;\r
+  }\r
+  function hasPropsChanged(prevProps, nextProps, emitsOptions) {\r
+      const nextKeys = Object.keys(nextProps);\r
+      if (nextKeys.length !== Object.keys(prevProps).length) {\r
+          return true;\r
+      }\r
+      for (let i = 0; i < nextKeys.length; i++) {\r
+          const key = nextKeys[i];\r
+          if (nextProps[key] !== prevProps[key] &&\r
+              !isEmitListener(emitsOptions, key)) {\r
+              return true;\r
+          }\r
+      }\r
+      return false;\r
+  }\r
+  function updateHOCHostEl({ vnode, parent }, el // HostNode\r
+  ) {\r
+      while (parent && parent.subTree === vnode) {\r
+          (vnode = parent.vnode).el = el;\r
+          parent = parent.parent;\r
+      }\r
+  }
+
+  const isSuspense = (type) => type.__isSuspense;\r
+  // Suspense exposes a component-like API, and is treated like a component\r
+  // in the compiler, but internally it's a special built-in type that hooks\r
+  // directly into the renderer.\r
+  const SuspenseImpl = {\r
+      name: 'Suspense',\r
+      // In order to make Suspense tree-shakable, we need to avoid importing it\r
+      // directly in the renderer. The renderer checks for the __isSuspense flag\r
+      // on a vnode's type and calls the `process` method, passing in renderer\r
+      // internals.\r
+      __isSuspense: true,\r
+      process(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, \r
+      // platform-specific impl passed from renderer\r
+      rendererInternals) {\r
+          if (n1 == null) {\r
+              mountSuspense(n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, rendererInternals);\r
+          }\r
+          else {\r
+              patchSuspense(n1, n2, container, anchor, parentComponent, isSVG, slotScopeIds, optimized, rendererInternals);\r
+          }\r
+      },\r
+      hydrate: hydrateSuspense,\r
+      create: createSuspenseBoundary,\r
+      normalize: normalizeSuspenseChildren\r
+  };\r
+  // Force-casted public typing for h and TSX props inference\r
+  const Suspense = (SuspenseImpl );\r
+  function triggerEvent(vnode, name) {\r
+      const eventListener = vnode.props && vnode.props[name];\r
+      if (isFunction(eventListener)) {\r
+          eventListener();\r
+      }\r
+  }\r
+  function mountSuspense(vnode, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, rendererInternals) {\r
+      const { p: patch, o: { createElement } } = rendererInternals;\r
+      const hiddenContainer = createElement('div');\r
+      const suspense = (vnode.suspense = createSuspenseBoundary(vnode, parentSuspense, parentComponent, container, hiddenContainer, anchor, isSVG, slotScopeIds, optimized, rendererInternals));\r
+      // start mounting the content subtree in an off-dom container\r
+      patch(null, (suspense.pendingBranch = vnode.ssContent), hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds);\r
+      // now check if we have encountered any async deps\r
+      if (suspense.deps > 0) {\r
+          // has async\r
+          // invoke @fallback event\r
+          triggerEvent(vnode, 'onPending');\r
+          triggerEvent(vnode, 'onFallback');\r
+          // mount the fallback tree\r
+          patch(null, vnode.ssFallback, container, anchor, parentComponent, null, // fallback tree will not have suspense context\r
+          isSVG, slotScopeIds);\r
+          setActiveBranch(suspense, vnode.ssFallback);\r
+      }\r
+      else {\r
+          // Suspense has no async deps. Just resolve.\r
+          suspense.resolve();\r
+      }\r
+  }\r
+  function patchSuspense(n1, n2, container, anchor, parentComponent, isSVG, slotScopeIds, optimized, { p: patch, um: unmount, o: { createElement } }) {\r
+      const suspense = (n2.suspense = n1.suspense);\r
+      suspense.vnode = n2;\r
+      n2.el = n1.el;\r
+      const newBranch = n2.ssContent;\r
+      const newFallback = n2.ssFallback;\r
+      const { activeBranch, pendingBranch, isInFallback, isHydrating } = suspense;\r
+      if (pendingBranch) {\r
+          suspense.pendingBranch = newBranch;\r
+          if (isSameVNodeType(newBranch, pendingBranch)) {\r
+              // same root type but content may have changed.\r
+              patch(pendingBranch, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r
+              if (suspense.deps <= 0) {\r
+                  suspense.resolve();\r
+              }\r
+              else if (isInFallback) {\r
+                  patch(activeBranch, newFallback, container, anchor, parentComponent, null, // fallback tree will not have suspense context\r
+                  isSVG, slotScopeIds, optimized);\r
+                  setActiveBranch(suspense, newFallback);\r
+              }\r
+          }\r
+          else {\r
+              // toggled before pending tree is resolved\r
+              suspense.pendingId++;\r
+              if (isHydrating) {\r
+                  // if toggled before hydration is finished, the current DOM tree is\r
+                  // no longer valid. set it as the active branch so it will be unmounted\r
+                  // when resolved\r
+                  suspense.isHydrating = false;\r
+                  suspense.activeBranch = pendingBranch;\r
+              }\r
+              else {\r
+                  unmount(pendingBranch, parentComponent, suspense);\r
+              }\r
+              // increment pending ID. this is used to invalidate async callbacks\r
+              // reset suspense state\r
+              suspense.deps = 0;\r
+              // discard effects from pending branch\r
+              suspense.effects.length = 0;\r
+              // discard previous container\r
+              suspense.hiddenContainer = createElement('div');\r
+              if (isInFallback) {\r
+                  // already in fallback state\r
+                  patch(null, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r
+                  if (suspense.deps <= 0) {\r
+                      suspense.resolve();\r
+                  }\r
+                  else {\r
+                      patch(activeBranch, newFallback, container, anchor, parentComponent, null, // fallback tree will not have suspense context\r
+                      isSVG, slotScopeIds, optimized);\r
+                      setActiveBranch(suspense, newFallback);\r
+                  }\r
+              }\r
+              else if (activeBranch && isSameVNodeType(newBranch, activeBranch)) {\r
+                  // toggled "back" to current active branch\r
+                  patch(activeBranch, newBranch, container, anchor, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r
+                  // force resolve\r
+                  suspense.resolve(true);\r
+              }\r
+              else {\r
+                  // switched to a 3rd branch\r
+                  patch(null, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r
+                  if (suspense.deps <= 0) {\r
+                      suspense.resolve();\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      else {\r
+          if (activeBranch && isSameVNodeType(newBranch, activeBranch)) {\r
+              // root did not change, just normal patch\r
+              patch(activeBranch, newBranch, container, anchor, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r
+              setActiveBranch(suspense, newBranch);\r
+          }\r
+          else {\r
+              // root node toggled\r
+              // invoke @pending event\r
+              triggerEvent(n2, 'onPending');\r
+              // mount pending branch in off-dom container\r
+              suspense.pendingBranch = newBranch;\r
+              suspense.pendingId++;\r
+              patch(null, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, isSVG, slotScopeIds, optimized);\r
+              if (suspense.deps <= 0) {\r
+                  // incoming branch has no async deps, resolve now.\r
+                  suspense.resolve();\r
+              }\r
+              else {\r
+                  const { timeout, pendingId } = suspense;\r
+                  if (timeout > 0) {\r
+                      setTimeout(() => {\r
+                          if (suspense.pendingId === pendingId) {\r
+                              suspense.fallback(newFallback);\r
+                          }\r
+                      }, timeout);\r
+                  }\r
+                  else if (timeout === 0) {\r
+                      suspense.fallback(newFallback);\r
+                  }\r
+              }\r
+          }\r
+      }\r
+  }\r
+  let hasWarned = false;\r
+  function createSuspenseBoundary(vnode, parent, parentComponent, container, hiddenContainer, anchor, isSVG, slotScopeIds, optimized, rendererInternals, isHydrating = false) {\r
+      /* istanbul ignore if */\r
+      if (!hasWarned) {\r
+          hasWarned = true;\r
+          // @ts-ignore `console.info` cannot be null error\r
+          console[console.info ? 'info' : 'log'](`<Suspense> is an experimental feature and its API will likely change.`);\r
+      }\r
+      const { p: patch, m: move, um: unmount, n: next, o: { parentNode, remove } } = rendererInternals;\r
+      const timeout = toNumber(vnode.props && vnode.props.timeout);\r
+      const suspense = {\r
+          vnode,\r
+          parent,\r
+          parentComponent,\r
+          isSVG,\r
+          container,\r
+          hiddenContainer,\r
+          anchor,\r
+          deps: 0,\r
+          pendingId: 0,\r
+          timeout: typeof timeout === 'number' ? timeout : -1,\r
+          activeBranch: null,\r
+          pendingBranch: null,\r
+          isInFallback: true,\r
+          isHydrating,\r
+          isUnmounted: false,\r
+          effects: [],\r
+          resolve(resume = false) {\r
+              {\r
+                  if (!resume && !suspense.pendingBranch) {\r
+                      throw new Error(`suspense.resolve() is called without a pending branch.`);\r
+                  }\r
+                  if (suspense.isUnmounted) {\r
+                      throw new Error(`suspense.resolve() is called on an already unmounted suspense boundary.`);\r
+                  }\r
+              }\r
+              const { vnode, activeBranch, pendingBranch, pendingId, effects, parentComponent, container } = suspense;\r
+              if (suspense.isHydrating) {\r
+                  suspense.isHydrating = false;\r
+              }\r
+              else if (!resume) {\r
+                  const delayEnter = activeBranch &&\r
+                      pendingBranch.transition &&\r
+                      pendingBranch.transition.mode === 'out-in';\r
+                  if (delayEnter) {\r
+                      activeBranch.transition.afterLeave = () => {\r
+                          if (pendingId === suspense.pendingId) {\r
+                              move(pendingBranch, container, anchor, 0 /* ENTER */);\r
+                          }\r
+                      };\r
+                  }\r
+                  // this is initial anchor on mount\r
+                  let { anchor } = suspense;\r
+                  // unmount current active tree\r
+                  if (activeBranch) {\r
+                      // if the fallback tree was mounted, it may have been moved\r
+                      // as part of a parent suspense. get the latest anchor for insertion\r
+                      anchor = next(activeBranch);\r
+                      unmount(activeBranch, parentComponent, suspense, true);\r
+                  }\r
+                  if (!delayEnter) {\r
+                      // move content from off-dom container to actual container\r
+                      move(pendingBranch, container, anchor, 0 /* ENTER */);\r
+                  }\r
+              }\r
+              setActiveBranch(suspense, pendingBranch);\r
+              suspense.pendingBranch = null;\r
+              suspense.isInFallback = false;\r
+              // flush buffered effects\r
+              // check if there is a pending parent suspense\r
+              let parent = suspense.parent;\r
+              let hasUnresolvedAncestor = false;\r
+              while (parent) {\r
+                  if (parent.pendingBranch) {\r
+                      // found a pending parent suspense, merge buffered post jobs\r
+                      // into that parent\r
+                      parent.effects.push(...effects);\r
+                      hasUnresolvedAncestor = true;\r
+                      break;\r
+                  }\r
+                  parent = parent.parent;\r
+              }\r
+              // no pending parent suspense, flush all jobs\r
+              if (!hasUnresolvedAncestor) {\r
+                  queuePostFlushCb(effects);\r
+              }\r
+              suspense.effects = [];\r
+              // invoke @resolve event\r
+              triggerEvent(vnode, 'onResolve');\r
+          },\r
+          fallback(fallbackVNode) {\r
+              if (!suspense.pendingBranch) {\r
+                  return;\r
+              }\r
+              const { vnode, activeBranch, parentComponent, container, isSVG } = suspense;\r
+              // invoke @fallback event\r
+              triggerEvent(vnode, 'onFallback');\r
+              const anchor = next(activeBranch);\r
+              const mountFallback = () => {\r
+                  if (!suspense.isInFallback) {\r
+                      return;\r
+                  }\r
+                  // mount the fallback tree\r
+                  patch(null, fallbackVNode, container, anchor, parentComponent, null, // fallback tree will not have suspense context\r
+                  isSVG, slotScopeIds, optimized);\r
+                  setActiveBranch(suspense, fallbackVNode);\r
+              };\r
+              const delayEnter = fallbackVNode.transition && fallbackVNode.transition.mode === 'out-in';\r
+              if (delayEnter) {\r
+                  activeBranch.transition.afterLeave = mountFallback;\r
+              }\r
+              suspense.isInFallback = true;\r
+              // unmount current active branch\r
+              unmount(activeBranch, parentComponent, null, // no suspense so unmount hooks fire now\r
+              true // shouldRemove\r
+              );\r
+              if (!delayEnter) {\r
+                  mountFallback();\r
+              }\r
+          },\r
+          move(container, anchor, type) {\r
+              suspense.activeBranch &&\r
+                  move(suspense.activeBranch, container, anchor, type);\r
+              suspense.container = container;\r
+          },\r
+          next() {\r
+              return suspense.activeBranch && next(suspense.activeBranch);\r
+          },\r
+          registerDep(instance, setupRenderEffect) {\r
+              const isInPendingSuspense = !!suspense.pendingBranch;\r
+              if (isInPendingSuspense) {\r
+                  suspense.deps++;\r
+              }\r
+              const hydratedEl = instance.vnode.el;\r
+              instance\r
+                  .asyncDep.catch(err => {\r
+                  handleError(err, instance, 0 /* SETUP_FUNCTION */);\r
+              })\r
+                  .then(asyncSetupResult => {\r
+                  // retry when the setup() promise resolves.\r
+                  // component may have been unmounted before resolve.\r
+                  if (instance.isUnmounted ||\r
+                      suspense.isUnmounted ||\r
+                      suspense.pendingId !== instance.suspenseId) {\r
+                      return;\r
+                  }\r
+                  // retry from this component\r
+                  instance.asyncResolved = true;\r
+                  const { vnode } = instance;\r
+                  {\r
+                      pushWarningContext(vnode);\r
+                  }\r
+                  handleSetupResult(instance, asyncSetupResult, false);\r
+                  if (hydratedEl) {\r
+                      // vnode may have been replaced if an update happened before the\r
+                      // async dep is resolved.\r
+                      vnode.el = hydratedEl;\r
+                  }\r
+                  const placeholder = !hydratedEl && instance.subTree.el;\r
+                  setupRenderEffect(instance, vnode, \r
+                  // component may have been moved before resolve.\r
+                  // if this is not a hydration, instance.subTree will be the comment\r
+                  // placeholder.\r
+                  parentNode(hydratedEl || instance.subTree.el), \r
+                  // anchor will not be used if this is hydration, so only need to\r
+                  // consider the comment placeholder case.\r
+                  hydratedEl ? null : next(instance.subTree), suspense, isSVG, optimized);\r
+                  if (placeholder) {\r
+                      remove(placeholder);\r
+                  }\r
+                  updateHOCHostEl(instance, vnode.el);\r
+                  {\r
+                      popWarningContext();\r
+                  }\r
+                  // only decrease deps count if suspense is not already resolved\r
+                  if (isInPendingSuspense && --suspense.deps === 0) {\r
+                      suspense.resolve();\r
+                  }\r
+              });\r
+          },\r
+          unmount(parentSuspense, doRemove) {\r
+              suspense.isUnmounted = true;\r
+              if (suspense.activeBranch) {\r
+                  unmount(suspense.activeBranch, parentComponent, parentSuspense, doRemove);\r
+              }\r
+              if (suspense.pendingBranch) {\r
+                  unmount(suspense.pendingBranch, parentComponent, parentSuspense, doRemove);\r
+              }\r
+          }\r
+      };\r
+      return suspense;\r
+  }\r
+  function hydrateSuspense(node, vnode, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, rendererInternals, hydrateNode) {\r
+      /* eslint-disable no-restricted-globals */\r
+      const suspense = (vnode.suspense = createSuspenseBoundary(vnode, parentSuspense, parentComponent, node.parentNode, document.createElement('div'), null, isSVG, slotScopeIds, optimized, rendererInternals, true /* hydrating */));\r
+      // there are two possible scenarios for server-rendered suspense:\r
+      // - success: ssr content should be fully resolved\r
+      // - failure: ssr content should be the fallback branch.\r
+      // however, on the client we don't really know if it has failed or not\r
+      // attempt to hydrate the DOM assuming it has succeeded, but we still\r
+      // need to construct a suspense boundary first\r
+      const result = hydrateNode(node, (suspense.pendingBranch = vnode.ssContent), parentComponent, suspense, slotScopeIds, optimized);\r
+      if (suspense.deps === 0) {\r
+          suspense.resolve();\r
+      }\r
+      return result;\r
+      /* eslint-enable no-restricted-globals */\r
+  }\r
+  function normalizeSuspenseChildren(vnode) {\r
+      const { shapeFlag, children } = vnode;\r
+      const isSlotChildren = shapeFlag & 32 /* SLOTS_CHILDREN */;\r
+      vnode.ssContent = normalizeSuspenseSlot(isSlotChildren ? children.default : children);\r
+      vnode.ssFallback = isSlotChildren\r
+          ? normalizeSuspenseSlot(children.fallback)\r
+          : createVNode(Comment);\r
+  }\r
+  function normalizeSuspenseSlot(s) {\r
+      let block;\r
+      if (isFunction(s)) {\r
+          const isCompiledSlot = s._c;\r
+          if (isCompiledSlot) {\r
+              // disableTracking: false\r
+              // allow block tracking for compiled slots\r
+              // (see ./componentRenderContext.ts)\r
+              s._d = false;\r
+              openBlock();\r
+          }\r
+          s = s();\r
+          if (isCompiledSlot) {\r
+              s._d = true;\r
+              block = currentBlock;\r
+              closeBlock();\r
+          }\r
+      }\r
+      if (isArray(s)) {\r
+          const singleChild = filterSingleRoot(s);\r
+          if (!singleChild) {\r
+              warn$1(`<Suspense> slots expect a single root node.`);\r
+          }\r
+          s = singleChild;\r
+      }\r
+      s = normalizeVNode(s);\r
+      if (block && !s.dynamicChildren) {\r
+          s.dynamicChildren = block.filter(c => c !== s);\r
+      }\r
+      return s;\r
+  }\r
+  function queueEffectWithSuspense(fn, suspense) {\r
+      if (suspense && suspense.pendingBranch) {\r
+          if (isArray(fn)) {\r
+              suspense.effects.push(...fn);\r
+          }\r
+          else {\r
+              suspense.effects.push(fn);\r
+          }\r
+      }\r
+      else {\r
+          queuePostFlushCb(fn);\r
+      }\r
+  }\r
+  function setActiveBranch(suspense, branch) {\r
+      suspense.activeBranch = branch;\r
+      const { vnode, parentComponent } = suspense;\r
+      const el = (vnode.el = branch.el);\r
+      // in case suspense is the root node of a component,\r
+      // recursively update the HOC el\r
+      if (parentComponent && parentComponent.subTree === vnode) {\r
+          parentComponent.vnode.el = el;\r
+          updateHOCHostEl(parentComponent, el);\r
+      }\r
+  }
+
+  function provide(key, value) {\r
+      if (!currentInstance) {\r
+          {\r
+              warn$1(`provide() can only be used inside setup().`);\r
+          }\r
+      }\r
+      else {\r
+          let provides = currentInstance.provides;\r
+          // by default an instance inherits its parent's provides object\r
+          // but when it needs to provide values of its own, it creates its\r
+          // own provides object using parent provides object as prototype.\r
+          // this way in `inject` we can simply look up injections from direct\r
+          // parent and let the prototype chain do the work.\r
+          const parentProvides = currentInstance.parent && currentInstance.parent.provides;\r
+          if (parentProvides === provides) {\r
+              provides = currentInstance.provides = Object.create(parentProvides);\r
+          }\r
+          // TS doesn't allow symbol as index type\r
+          provides[key] = value;\r
+      }\r
+  }\r
+  function inject(key, defaultValue, treatDefaultAsFactory = false) {\r
+      // fallback to `currentRenderingInstance` so that this can be called in\r
+      // a functional component\r
+      const instance = currentInstance || currentRenderingInstance;\r
+      if (instance) {\r
+          // #2400\r
+          // to support `app.use` plugins,\r
+          // fallback to appContext's `provides` if the intance is at root\r
+          const provides = instance.parent == null\r
+              ? instance.vnode.appContext && instance.vnode.appContext.provides\r
+              : instance.parent.provides;\r
+          if (provides && key in provides) {\r
+              // TS doesn't allow symbol as index type\r
+              return provides[key];\r
+          }\r
+          else if (arguments.length > 1) {\r
+              return treatDefaultAsFactory && isFunction(defaultValue)\r
+                  ? defaultValue.call(instance.proxy)\r
+                  : defaultValue;\r
+          }\r
+          else {\r
+              warn$1(`injection "${String(key)}" not found.`);\r
+          }\r
+      }\r
+      else {\r
+          warn$1(`inject() can only be used inside setup() or functional components.`);\r
+      }\r
+  }
+
+  function useTransitionState() {\r
+      const state = {\r
+          isMounted: false,\r
+          isLeaving: false,\r
+          isUnmounting: false,\r
+          leavingVNodes: new Map()\r
+      };\r
+      onMounted(() => {\r
+          state.isMounted = true;\r
+      });\r
+      onBeforeUnmount(() => {\r
+          state.isUnmounting = true;\r
+      });\r
+      return state;\r
+  }\r
+  const TransitionHookValidator = [Function, Array];\r
+  const BaseTransitionImpl = {\r
+      name: `BaseTransition`,\r
+      props: {\r
+          mode: String,\r
+          appear: Boolean,\r
+          persisted: Boolean,\r
+          // enter\r
+          onBeforeEnter: TransitionHookValidator,\r
+          onEnter: TransitionHookValidator,\r
+          onAfterEnter: TransitionHookValidator,\r
+          onEnterCancelled: TransitionHookValidator,\r
+          // leave\r
+          onBeforeLeave: TransitionHookValidator,\r
+          onLeave: TransitionHookValidator,\r
+          onAfterLeave: TransitionHookValidator,\r
+          onLeaveCancelled: TransitionHookValidator,\r
+          // appear\r
+          onBeforeAppear: TransitionHookValidator,\r
+          onAppear: TransitionHookValidator,\r
+          onAfterAppear: TransitionHookValidator,\r
+          onAppearCancelled: TransitionHookValidator\r
+      },\r
+      setup(props, { slots }) {\r
+          const instance = getCurrentInstance();\r
+          const state = useTransitionState();\r
+          let prevTransitionKey;\r
+          return () => {\r
+              const children = slots.default && getTransitionRawChildren(slots.default(), true);\r
+              if (!children || !children.length) {\r
+                  return;\r
+              }\r
+              // warn multiple elements\r
+              if (children.length > 1) {\r
+                  warn$1('<transition> can only be used on a single element or component. Use ' +\r
+                      '<transition-group> for lists.');\r
+              }\r
+              // there's no need to track reactivity for these props so use the raw\r
+              // props for a bit better perf\r
+              const rawProps = toRaw(props);\r
+              const { mode } = rawProps;\r
+              // check mode\r
+              if (mode && !['in-out', 'out-in', 'default'].includes(mode)) {\r
+                  warn$1(`invalid <transition> mode: ${mode}`);\r
+              }\r
+              // at this point children has a guaranteed length of 1.\r
+              const child = children[0];\r
+              if (state.isLeaving) {\r
+                  return emptyPlaceholder(child);\r
+              }\r
+              // in the case of <transition><keep-alive/></transition>, we need to\r
+              // compare the type of the kept-alive children.\r
+              const innerChild = getKeepAliveChild(child);\r
+              if (!innerChild) {\r
+                  return emptyPlaceholder(child);\r
+              }\r
+              const enterHooks = resolveTransitionHooks(innerChild, rawProps, state, instance);\r
+              setTransitionHooks(innerChild, enterHooks);\r
+              const oldChild = instance.subTree;\r
+              const oldInnerChild = oldChild && getKeepAliveChild(oldChild);\r
+              let transitionKeyChanged = false;\r
+              const { getTransitionKey } = innerChild.type;\r
+              if (getTransitionKey) {\r
+                  const key = getTransitionKey();\r
+                  if (prevTransitionKey === undefined) {\r
+                      prevTransitionKey = key;\r
+                  }\r
+                  else if (key !== prevTransitionKey) {\r
+                      prevTransitionKey = key;\r
+                      transitionKeyChanged = true;\r
+                  }\r
+              }\r
+              // handle mode\r
+              if (oldInnerChild &&\r
+                  oldInnerChild.type !== Comment &&\r
+                  (!isSameVNodeType(innerChild, oldInnerChild) || transitionKeyChanged)) {\r
+                  const leavingHooks = resolveTransitionHooks(oldInnerChild, rawProps, state, instance);\r
+                  // update old tree's hooks in case of dynamic transition\r
+                  setTransitionHooks(oldInnerChild, leavingHooks);\r
+                  // switching between different views\r
+                  if (mode === 'out-in') {\r
+                      state.isLeaving = true;\r
+                      // return placeholder node and queue update when leave finishes\r
+                      leavingHooks.afterLeave = () => {\r
+                          state.isLeaving = false;\r
+                          instance.update();\r
+                      };\r
+                      return emptyPlaceholder(child);\r
+                  }\r
+                  else if (mode === 'in-out' && innerChild.type !== Comment) {\r
+                      leavingHooks.delayLeave = (el, earlyRemove, delayedLeave) => {\r
+                          const leavingVNodesCache = getLeavingNodesForType(state, oldInnerChild);\r
+                          leavingVNodesCache[String(oldInnerChild.key)] = oldInnerChild;\r
+                          // early removal callback\r
+                          el._leaveCb = () => {\r
+                              earlyRemove();\r
+                              el._leaveCb = undefined;\r
+                              delete enterHooks.delayedLeave;\r
+                          };\r
+                          enterHooks.delayedLeave = delayedLeave;\r
+                      };\r
+                  }\r
+              }\r
+              return child;\r
+          };\r
+      }\r
+  };\r
+  // export the public type for h/tsx inference\r
+  // also to avoid inline import() in generated d.ts files\r
+  const BaseTransition = BaseTransitionImpl;\r
+  function getLeavingNodesForType(state, vnode) {\r
+      const { leavingVNodes } = state;\r
+      let leavingVNodesCache = leavingVNodes.get(vnode.type);\r
+      if (!leavingVNodesCache) {\r
+          leavingVNodesCache = Object.create(null);\r
+          leavingVNodes.set(vnode.type, leavingVNodesCache);\r
+      }\r
+      return leavingVNodesCache;\r
+  }\r
+  // The transition hooks are attached to the vnode as vnode.transition\r
+  // and will be called at appropriate timing in the renderer.\r
+  function resolveTransitionHooks(vnode, props, state, instance) {\r
+      const { appear, mode, persisted = false, onBeforeEnter, onEnter, onAfterEnter, onEnterCancelled, onBeforeLeave, onLeave, onAfterLeave, onLeaveCancelled, onBeforeAppear, onAppear, onAfterAppear, onAppearCancelled } = props;\r
+      const key = String(vnode.key);\r
+      const leavingVNodesCache = getLeavingNodesForType(state, vnode);\r
+      const callHook = (hook, args) => {\r
+          hook &&\r
+              callWithAsyncErrorHandling(hook, instance, 9 /* TRANSITION_HOOK */, args);\r
+      };\r
+      const hooks = {\r
+          mode,\r
+          persisted,\r
+          beforeEnter(el) {\r
+              let hook = onBeforeEnter;\r
+              if (!state.isMounted) {\r
+                  if (appear) {\r
+                      hook = onBeforeAppear || onBeforeEnter;\r
+                  }\r
+                  else {\r
+                      return;\r
+                  }\r
+              }\r
+              // for same element (v-show)\r
+              if (el._leaveCb) {\r
+                  el._leaveCb(true /* cancelled */);\r
+              }\r
+              // for toggled element with same key (v-if)\r
+              const leavingVNode = leavingVNodesCache[key];\r
+              if (leavingVNode &&\r
+                  isSameVNodeType(vnode, leavingVNode) &&\r
+                  leavingVNode.el._leaveCb) {\r
+                  // force early removal (not cancelled)\r
+                  leavingVNode.el._leaveCb();\r
+              }\r
+              callHook(hook, [el]);\r
+          },\r
+          enter(el) {\r
+              let hook = onEnter;\r
+              let afterHook = onAfterEnter;\r
+              let cancelHook = onEnterCancelled;\r
+              if (!state.isMounted) {\r
+                  if (appear) {\r
+                      hook = onAppear || onEnter;\r
+                      afterHook = onAfterAppear || onAfterEnter;\r
+                      cancelHook = onAppearCancelled || onEnterCancelled;\r
+                  }\r
+                  else {\r
+                      return;\r
+                  }\r
+              }\r
+              let called = false;\r
+              const done = (el._enterCb = (cancelled) => {\r
+                  if (called)\r
+                      return;\r
+                  called = true;\r
+                  if (cancelled) {\r
+                      callHook(cancelHook, [el]);\r
+                  }\r
+                  else {\r
+                      callHook(afterHook, [el]);\r
+                  }\r
+                  if (hooks.delayedLeave) {\r
+                      hooks.delayedLeave();\r
+                  }\r
+                  el._enterCb = undefined;\r
+              });\r
+              if (hook) {\r
+                  hook(el, done);\r
+                  if (hook.length <= 1) {\r
+                      done();\r
+                  }\r
+              }\r
+              else {\r
+                  done();\r
+              }\r
+          },\r
+          leave(el, remove) {\r
+              const key = String(vnode.key);\r
+              if (el._enterCb) {\r
+                  el._enterCb(true /* cancelled */);\r
+              }\r
+              if (state.isUnmounting) {\r
+                  return remove();\r
+              }\r
+              callHook(onBeforeLeave, [el]);\r
+              let called = false;\r
+              const done = (el._leaveCb = (cancelled) => {\r
+                  if (called)\r
+                      return;\r
+                  called = true;\r
+                  remove();\r
+                  if (cancelled) {\r
+                      callHook(onLeaveCancelled, [el]);\r
+                  }\r
+                  else {\r
+                      callHook(onAfterLeave, [el]);\r
+                  }\r
+                  el._leaveCb = undefined;\r
+                  if (leavingVNodesCache[key] === vnode) {\r
+                      delete leavingVNodesCache[key];\r
+                  }\r
+              });\r
+              leavingVNodesCache[key] = vnode;\r
+              if (onLeave) {\r
+                  onLeave(el, done);\r
+                  if (onLeave.length <= 1) {\r
+                      done();\r
+                  }\r
+              }\r
+              else {\r
+                  done();\r
+              }\r
+          },\r
+          clone(vnode) {\r
+              return resolveTransitionHooks(vnode, props, state, instance);\r
+          }\r
+      };\r
+      return hooks;\r
+  }\r
+  // the placeholder really only handles one special case: KeepAlive\r
+  // in the case of a KeepAlive in a leave phase we need to return a KeepAlive\r
+  // placeholder with empty content to avoid the KeepAlive instance from being\r
+  // unmounted.\r
+  function emptyPlaceholder(vnode) {\r
+      if (isKeepAlive(vnode)) {\r
+          vnode = cloneVNode(vnode);\r
+          vnode.children = null;\r
+          return vnode;\r
+      }\r
+  }\r
+  function getKeepAliveChild(vnode) {\r
+      return isKeepAlive(vnode)\r
+          ? vnode.children\r
+              ? vnode.children[0]\r
+              : undefined\r
+          : vnode;\r
+  }\r
+  function setTransitionHooks(vnode, hooks) {\r
+      if (vnode.shapeFlag & 6 /* COMPONENT */ && vnode.component) {\r
+          setTransitionHooks(vnode.component.subTree, hooks);\r
+      }\r
+      else if (vnode.shapeFlag & 128 /* SUSPENSE */) {\r
+          vnode.ssContent.transition = hooks.clone(vnode.ssContent);\r
+          vnode.ssFallback.transition = hooks.clone(vnode.ssFallback);\r
+      }\r
+      else {\r
+          vnode.transition = hooks;\r
+      }\r
+  }\r
+  function getTransitionRawChildren(children, keepComment = false) {\r
+      let ret = [];\r
+      let keyedFragmentCount = 0;\r
+      for (let i = 0; i < children.length; i++) {\r
+          const child = children[i];\r
+          // handle fragment children case, e.g. v-for\r
+          if (child.type === Fragment) {\r
+              if (child.patchFlag & 128 /* KEYED_FRAGMENT */)\r
+                  keyedFragmentCount++;\r
+              ret = ret.concat(getTransitionRawChildren(child.children, keepComment));\r
+          }\r
+          // comment placeholders should be skipped, e.g. v-if\r
+          else if (keepComment || child.type !== Comment) {\r
+              ret.push(child);\r
+          }\r
+      }\r
+      // #1126 if a transition children list contains multiple sub fragments, these\r
+      // fragments will be merged into a flat children array. Since each v-for\r
+      // fragment may contain different static bindings inside, we need to de-op\r
+      // these children to force full diffs to ensure correct behavior.\r
+      if (keyedFragmentCount > 1) {\r
+          for (let i = 0; i < ret.length; i++) {\r
+              ret[i].patchFlag = -2 /* BAIL */;\r
+          }\r
+      }\r
+      return ret;\r
+  }
+
+  // implementation, close to no-op\r
+  function defineComponent(options) {\r
+      return isFunction(options) ? { setup: options, name: options.name } : options;\r
+  }
+
+  const isAsyncWrapper = (i) => !!i.type.__asyncLoader;\r
+  function defineAsyncComponent(source) {\r
+      if (isFunction(source)) {\r
+          source = { loader: source };\r
+      }\r
+      const { loader, loadingComponent, errorComponent, delay = 200, timeout, // undefined = never times out\r
+      suspensible = true, onError: userOnError } = source;\r
+      let pendingRequest = null;\r
+      let resolvedComp;\r
+      let retries = 0;\r
+      const retry = () => {\r
+          retries++;\r
+          pendingRequest = null;\r
+          return load();\r
+      };\r
+      const load = () => {\r
+          let thisRequest;\r
+          return (pendingRequest ||\r
+              (thisRequest = pendingRequest =\r
+                  loader()\r
+                      .catch(err => {\r
+                      err = err instanceof Error ? err : new Error(String(err));\r
+                      if (userOnError) {\r
+                          return new Promise((resolve, reject) => {\r
+                              const userRetry = () => resolve(retry());\r
+                              const userFail = () => reject(err);\r
+                              userOnError(err, userRetry, userFail, retries + 1);\r
+                          });\r
+                      }\r
+                      else {\r
+                          throw err;\r
+                      }\r
+                  })\r
+                      .then((comp) => {\r
+                      if (thisRequest !== pendingRequest && pendingRequest) {\r
+                          return pendingRequest;\r
+                      }\r
+                      if (!comp) {\r
+                          warn$1(`Async component loader resolved to undefined. ` +\r
+                              `If you are using retry(), make sure to return its return value.`);\r
+                      }\r
+                      // interop module default\r
+                      if (comp &&\r
+                          (comp.__esModule || comp[Symbol.toStringTag] === 'Module')) {\r
+                          comp = comp.default;\r
+                      }\r
+                      if (comp && !isObject(comp) && !isFunction(comp)) {\r
+                          throw new Error(`Invalid async component load result: ${comp}`);\r
+                      }\r
+                      resolvedComp = comp;\r
+                      return comp;\r
+                  })));\r
+      };\r
+      return defineComponent({\r
+          name: 'AsyncComponentWrapper',\r
+          __asyncLoader: load,\r
+          get __asyncResolved() {\r
+              return resolvedComp;\r
+          },\r
+          setup() {\r
+              const instance = currentInstance;\r
+              // already resolved\r
+              if (resolvedComp) {\r
+                  return () => createInnerComp(resolvedComp, instance);\r
+              }\r
+              const onError = (err) => {\r
+                  pendingRequest = null;\r
+                  handleError(err, instance, 13 /* ASYNC_COMPONENT_LOADER */, !errorComponent /* do not throw in dev if user provided error component */);\r
+              };\r
+              // suspense-controlled or SSR.\r
+              if ((suspensible && instance.suspense) ||\r
+                  (false )) {\r
+                  return load()\r
+                      .then(comp => {\r
+                      return () => createInnerComp(comp, instance);\r
+                  })\r
+                      .catch(err => {\r
+                      onError(err);\r
+                      return () => errorComponent\r
+                          ? createVNode(errorComponent, {\r
+                              error: err\r
+                          })\r
+                          : null;\r
+                  });\r
+              }\r
+              const loaded = ref(false);\r
+              const error = ref();\r
+              const delayed = ref(!!delay);\r
+              if (delay) {\r
+                  setTimeout(() => {\r
+                      delayed.value = false;\r
+                  }, delay);\r
+              }\r
+              if (timeout != null) {\r
+                  setTimeout(() => {\r
+                      if (!loaded.value && !error.value) {\r
+                          const err = new Error(`Async component timed out after ${timeout}ms.`);\r
+                          onError(err);\r
+                          error.value = err;\r
+                      }\r
+                  }, timeout);\r
+              }\r
+              load()\r
+                  .then(() => {\r
+                  loaded.value = true;\r
+                  if (instance.parent && isKeepAlive(instance.parent.vnode)) {\r
+                      // parent is keep-alive, force update so the loaded component's\r
+                      // name is taken into account\r
+                      queueJob(instance.parent.update);\r
+                  }\r
+              })\r
+                  .catch(err => {\r
+                  onError(err);\r
+                  error.value = err;\r
+              });\r
+              return () => {\r
+                  if (loaded.value && resolvedComp) {\r
+                      return createInnerComp(resolvedComp, instance);\r
+                  }\r
+                  else if (error.value && errorComponent) {\r
+                      return createVNode(errorComponent, {\r
+                          error: error.value\r
+                      });\r
+                  }\r
+                  else if (loadingComponent && !delayed.value) {\r
+                      return createVNode(loadingComponent);\r
+                  }\r
+              };\r
+          }\r
+      });\r
+  }\r
+  function createInnerComp(comp, { vnode: { ref, props, children } }) {\r
+      const vnode = createVNode(comp, props, children);\r
+      // ensure inner component inherits the async wrapper's ref owner\r
+      vnode.ref = ref;\r
+      return vnode;\r
+  }
+
+  const isKeepAlive = (vnode) => vnode.type.__isKeepAlive;\r
+  const KeepAliveImpl = {\r
+      name: `KeepAlive`,\r
+      // Marker for special handling inside the renderer. We are not using a ===\r
+      // check directly on KeepAlive in the renderer, because importing it directly\r
+      // would prevent it from being tree-shaken.\r
+      __isKeepAlive: true,\r
+      props: {\r
+          include: [String, RegExp, Array],\r
+          exclude: [String, RegExp, Array],\r
+          max: [String, Number]\r
+      },\r
+      setup(props, { slots }) {\r
+          const instance = getCurrentInstance();\r
+          // KeepAlive communicates with the instantiated renderer via the\r
+          // ctx where the renderer passes in its internals,\r
+          // and the KeepAlive instance exposes activate/deactivate implementations.\r
+          // The whole point of this is to avoid importing KeepAlive directly in the\r
+          // renderer to facilitate tree-shaking.\r
+          const sharedContext = instance.ctx;\r
+          // if the internal renderer is not registered, it indicates that this is server-side rendering,\r
+          // for KeepAlive, we just need to render its children\r
+          if (!sharedContext.renderer) {\r
+              return slots.default;\r
+          }\r
+          const cache = new Map();\r
+          const keys = new Set();\r
+          let current = null;\r
+          {\r
+              instance.__v_cache = cache;\r
+          }\r
+          const parentSuspense = instance.suspense;\r
+          const { renderer: { p: patch, m: move, um: _unmount, o: { createElement } } } = sharedContext;\r
+          const storageContainer = createElement('div');\r
+          sharedContext.activate = (vnode, container, anchor, isSVG, optimized) => {\r
+              const instance = vnode.component;\r
+              move(vnode, container, anchor, 0 /* ENTER */, parentSuspense);\r
+              // in case props have changed\r
+              patch(instance.vnode, vnode, container, anchor, instance, parentSuspense, isSVG, vnode.slotScopeIds, optimized);\r
+              queuePostRenderEffect(() => {\r
+                  instance.isDeactivated = false;\r
+                  if (instance.a) {\r
+                      invokeArrayFns(instance.a);\r
+                  }\r
+                  const vnodeHook = vnode.props && vnode.props.onVnodeMounted;\r
+                  if (vnodeHook) {\r
+                      invokeVNodeHook(vnodeHook, instance.parent, vnode);\r
+                  }\r
+              }, parentSuspense);\r
+              {\r
+                  // Update components tree\r
+                  devtoolsComponentAdded(instance);\r
+              }\r
+          };\r
+          sharedContext.deactivate = (vnode) => {\r
+              const instance = vnode.component;\r
+              move(vnode, storageContainer, null, 1 /* LEAVE */, parentSuspense);\r
+              queuePostRenderEffect(() => {\r
+                  if (instance.da) {\r
+                      invokeArrayFns(instance.da);\r
+                  }\r
+                  const vnodeHook = vnode.props && vnode.props.onVnodeUnmounted;\r
+                  if (vnodeHook) {\r
+                      invokeVNodeHook(vnodeHook, instance.parent, vnode);\r
+                  }\r
+                  instance.isDeactivated = true;\r
+              }, parentSuspense);\r
+              {\r
+                  // Update components tree\r
+                  devtoolsComponentAdded(instance);\r
+              }\r
+          };\r
+          function unmount(vnode) {\r
+              // reset the shapeFlag so it can be properly unmounted\r
+              resetShapeFlag(vnode);\r
+              _unmount(vnode, instance, parentSuspense);\r
+          }\r
+          function pruneCache(filter) {\r
+              cache.forEach((vnode, key) => {\r
+                  const name = getComponentName(vnode.type);\r
+                  if (name && (!filter || !filter(name))) {\r
+                      pruneCacheEntry(key);\r
+                  }\r
+              });\r
+          }\r
+          function pruneCacheEntry(key) {\r
+              const cached = cache.get(key);\r
+              if (!current || cached.type !== current.type) {\r
+                  unmount(cached);\r
+              }\r
+              else if (current) {\r
+                  // current active instance should no longer be kept-alive.\r
+                  // we can't unmount it now but it might be later, so reset its flag now.\r
+                  resetShapeFlag(current);\r
+              }\r
+              cache.delete(key);\r
+              keys.delete(key);\r
+          }\r
+          // prune cache on include/exclude prop change\r
+          watch(() => [props.include, props.exclude], ([include, exclude]) => {\r
+              include && pruneCache(name => matches(include, name));\r
+              exclude && pruneCache(name => !matches(exclude, name));\r
+          }, \r
+          // prune post-render after `current` has been updated\r
+          { flush: 'post', deep: true });\r
+          // cache sub tree after render\r
+          let pendingCacheKey = null;\r
+          const cacheSubtree = () => {\r
+              // fix #1621, the pendingCacheKey could be 0\r
+              if (pendingCacheKey != null) {\r
+                  cache.set(pendingCacheKey, getInnerChild(instance.subTree));\r
+              }\r
+          };\r
+          onMounted(cacheSubtree);\r
+          onUpdated(cacheSubtree);\r
+          onBeforeUnmount(() => {\r
+              cache.forEach(cached => {\r
+                  const { subTree, suspense } = instance;\r
+                  const vnode = getInnerChild(subTree);\r
+                  if (cached.type === vnode.type) {\r
+                      // current instance will be unmounted as part of keep-alive's unmount\r
+                      resetShapeFlag(vnode);\r
+                      // but invoke its deactivated hook here\r
+                      const da = vnode.component.da;\r
+                      da && queuePostRenderEffect(da, suspense);\r
+                      return;\r
+                  }\r
+                  unmount(cached);\r
+              });\r
+          });\r
+          return () => {\r
+              pendingCacheKey = null;\r
+              if (!slots.default) {\r
+                  return null;\r
+              }\r
+              const children = slots.default();\r
+              const rawVNode = children[0];\r
+              if (children.length > 1) {\r
+                  {\r
+                      warn$1(`KeepAlive should contain exactly one component child.`);\r
+                  }\r
+                  current = null;\r
+                  return children;\r
+              }\r
+              else if (!isVNode(rawVNode) ||\r
+                  (!(rawVNode.shapeFlag & 4 /* STATEFUL_COMPONENT */) &&\r
+                      !(rawVNode.shapeFlag & 128 /* SUSPENSE */))) {\r
+                  current = null;\r
+                  return rawVNode;\r
+              }\r
+              let vnode = getInnerChild(rawVNode);\r
+              const comp = vnode.type;\r
+              // for async components, name check should be based in its loaded\r
+              // inner component if available\r
+              const name = getComponentName(isAsyncWrapper(vnode)\r
+                  ? vnode.type.__asyncResolved || {}\r
+                  : comp);\r
+              const { include, exclude, max } = props;\r
+              if ((include && (!name || !matches(include, name))) ||\r
+                  (exclude && name && matches(exclude, name))) {\r
+                  current = vnode;\r
+                  return rawVNode;\r
+              }\r
+              const key = vnode.key == null ? comp : vnode.key;\r
+              const cachedVNode = cache.get(key);\r
+              // clone vnode if it's reused because we are going to mutate it\r
+              if (vnode.el) {\r
+                  vnode = cloneVNode(vnode);\r
+                  if (rawVNode.shapeFlag & 128 /* SUSPENSE */) {\r
+                      rawVNode.ssContent = vnode;\r
+                  }\r
+              }\r
+              // #1513 it's possible for the returned vnode to be cloned due to attr\r
+              // fallthrough or scopeId, so the vnode here may not be the final vnode\r
+              // that is mounted. Instead of caching it directly, we store the pending\r
+              // key and cache `instance.subTree` (the normalized vnode) in\r
+              // beforeMount/beforeUpdate hooks.\r
+              pendingCacheKey = key;\r
+              if (cachedVNode) {\r
+                  // copy over mounted state\r
+                  vnode.el = cachedVNode.el;\r
+                  vnode.component = cachedVNode.component;\r
+                  if (vnode.transition) {\r
+                      // recursively update transition hooks on subTree\r
+                      setTransitionHooks(vnode, vnode.transition);\r
+                  }\r
+                  // avoid vnode being mounted as fresh\r
+                  vnode.shapeFlag |= 512 /* COMPONENT_KEPT_ALIVE */;\r
+                  // make this key the freshest\r
+                  keys.delete(key);\r
+                  keys.add(key);\r
+              }\r
+              else {\r
+                  keys.add(key);\r
+                  // prune oldest entry\r
+                  if (max && keys.size > parseInt(max, 10)) {\r
+                      pruneCacheEntry(keys.values().next().value);\r
+                  }\r
+              }\r
+              // avoid vnode being unmounted\r
+              vnode.shapeFlag |= 256 /* COMPONENT_SHOULD_KEEP_ALIVE */;\r
+              current = vnode;\r
+              return rawVNode;\r
+          };\r
+      }\r
+  };\r
+  // export the public type for h/tsx inference\r
+  // also to avoid inline import() in generated d.ts files\r
+  const KeepAlive = KeepAliveImpl;\r
+  function matches(pattern, name) {\r
+      if (isArray(pattern)) {\r
+          return pattern.some((p) => matches(p, name));\r
+      }\r
+      else if (isString(pattern)) {\r
+          return pattern.split(',').indexOf(name) > -1;\r
+      }\r
+      else if (pattern.test) {\r
+          return pattern.test(name);\r
+      }\r
+      /* istanbul ignore next */\r
+      return false;\r
+  }\r
+  function onActivated(hook, target) {\r
+      registerKeepAliveHook(hook, "a" /* ACTIVATED */, target);\r
+  }\r
+  function onDeactivated(hook, target) {\r
+      registerKeepAliveHook(hook, "da" /* DEACTIVATED */, target);\r
+  }\r
+  function registerKeepAliveHook(hook, type, target = currentInstance) {\r
+      // cache the deactivate branch check wrapper for injected hooks so the same\r
+      // hook can be properly deduped by the scheduler. "__wdc" stands for "with\r
+      // deactivation check".\r
+      const wrappedHook = hook.__wdc ||\r
+          (hook.__wdc = () => {\r
+              // only fire the hook if the target instance is NOT in a deactivated branch.\r
+              let current = target;\r
+              while (current) {\r
+                  if (current.isDeactivated) {\r
+                      return;\r
+                  }\r
+                  current = current.parent;\r
+              }\r
+              hook();\r
+          });\r
+      injectHook(type, wrappedHook, target);\r
+      // In addition to registering it on the target instance, we walk up the parent\r
+      // chain and register it on all ancestor instances that are keep-alive roots.\r
+      // This avoids the need to walk the entire component tree when invoking these\r
+      // hooks, and more importantly, avoids the need to track child components in\r
+      // arrays.\r
+      if (target) {\r
+          let current = target.parent;\r
+          while (current && current.parent) {\r
+              if (isKeepAlive(current.parent.vnode)) {\r
+                  injectToKeepAliveRoot(wrappedHook, type, target, current);\r
+              }\r
+              current = current.parent;\r
+          }\r
+      }\r
+  }\r
+  function injectToKeepAliveRoot(hook, type, target, keepAliveRoot) {\r
+      // injectHook wraps the original for error handling, so make sure to remove\r
+      // the wrapped version.\r
+      const injected = injectHook(type, hook, keepAliveRoot, true /* prepend */);\r
+      onUnmounted(() => {\r
+          remove(keepAliveRoot[type], injected);\r
+      }, target);\r
+  }\r
+  function resetShapeFlag(vnode) {\r
+      let shapeFlag = vnode.shapeFlag;\r
+      if (shapeFlag & 256 /* COMPONENT_SHOULD_KEEP_ALIVE */) {\r
+          shapeFlag -= 256 /* COMPONENT_SHOULD_KEEP_ALIVE */;\r
+      }\r
+      if (shapeFlag & 512 /* COMPONENT_KEPT_ALIVE */) {\r
+          shapeFlag -= 512 /* COMPONENT_KEPT_ALIVE */;\r
+      }\r
+      vnode.shapeFlag = shapeFlag;\r
+  }\r
+  function getInnerChild(vnode) {\r
+      return vnode.shapeFlag & 128 /* SUSPENSE */ ? vnode.ssContent : vnode;\r
+  }
+
+  function injectHook(type, hook, target = currentInstance, prepend = false) {\r
+      if (target) {\r
+          const hooks = target[type] || (target[type] = []);\r
+          // cache the error handling wrapper for injected hooks so the same hook\r
+          // can be properly deduped by the scheduler. "__weh" stands for "with error\r
+          // handling".\r
+          const wrappedHook = hook.__weh ||\r
+              (hook.__weh = (...args) => {\r
+                  if (target.isUnmounted) {\r
+                      return;\r
+                  }\r
+                  // disable tracking inside all lifecycle hooks\r
+                  // since they can potentially be called inside effects.\r
+                  pauseTracking();\r
+                  // Set currentInstance during hook invocation.\r
+                  // This assumes the hook does not synchronously trigger other hooks, which\r
+                  // can only be false when the user does something really funky.\r
+                  setCurrentInstance(target);\r
+                  const res = callWithAsyncErrorHandling(hook, target, type, args);\r
+                  unsetCurrentInstance();\r
+                  resetTracking();\r
+                  return res;\r
+              });\r
+          if (prepend) {\r
+              hooks.unshift(wrappedHook);\r
+          }\r
+          else {\r
+              hooks.push(wrappedHook);\r
+          }\r
+          return wrappedHook;\r
+      }\r
+      else {\r
+          const apiName = toHandlerKey(ErrorTypeStrings[type].replace(/ hook$/, ''));\r
+          warn$1(`${apiName} is called when there is no active component instance to be ` +\r
+              `associated with. ` +\r
+              `Lifecycle injection APIs can only be used during execution of setup().` +\r
+              (` If you are using async setup(), make sure to register lifecycle ` +\r
+                      `hooks before the first await statement.`\r
+                  ));\r
+      }\r
+  }\r
+  const createHook = (lifecycle) => (hook, target = currentInstance) => \r
+  // post-create lifecycle registrations are noops during SSR (except for serverPrefetch)\r
+  (!isInSSRComponentSetup || lifecycle === "sp" /* SERVER_PREFETCH */) &&\r
+      injectHook(lifecycle, hook, target);\r
+  const onBeforeMount = createHook("bm" /* BEFORE_MOUNT */);\r
+  const onMounted = createHook("m" /* MOUNTED */);\r
+  const onBeforeUpdate = createHook("bu" /* BEFORE_UPDATE */);\r
+  const onUpdated = createHook("u" /* UPDATED */);\r
+  const onBeforeUnmount = createHook("bum" /* BEFORE_UNMOUNT */);\r
+  const onUnmounted = createHook("um" /* UNMOUNTED */);\r
+  const onServerPrefetch = createHook("sp" /* SERVER_PREFETCH */);\r
+  const onRenderTriggered = createHook("rtg" /* RENDER_TRIGGERED */);\r
+  const onRenderTracked = createHook("rtc" /* RENDER_TRACKED */);\r
+  function onErrorCaptured(hook, target = currentInstance) {\r
+      injectHook("ec" /* ERROR_CAPTURED */, hook, target);\r
+  }
+
+  function createDuplicateChecker() {\r
+      const cache = Object.create(null);\r
+      return (type, key) => {\r
+          if (cache[key]) {\r
+              warn$1(`${type} property "${key}" is already defined in ${cache[key]}.`);\r
+          }\r
+          else {\r
+              cache[key] = type;\r
+          }\r
+      };\r
+  }\r
+  let shouldCacheAccess = true;\r
+  function applyOptions(instance) {\r
+      const options = resolveMergedOptions(instance);\r
+      const publicThis = instance.proxy;\r
+      const ctx = instance.ctx;\r
+      // do not cache property access on public proxy during state initialization\r
+      shouldCacheAccess = false;\r
+      // call beforeCreate first before accessing other options since\r
+      // the hook may mutate resolved options (#2791)\r
+      if (options.beforeCreate) {\r
+          callHook(options.beforeCreate, instance, "bc" /* BEFORE_CREATE */);\r
+      }\r
+      const { \r
+      // state\r
+      data: dataOptions, computed: computedOptions, methods, watch: watchOptions, provide: provideOptions, inject: injectOptions, \r
+      // lifecycle\r
+      created, beforeMount, mounted, beforeUpdate, updated, activated, deactivated, beforeDestroy, beforeUnmount, destroyed, unmounted, render, renderTracked, renderTriggered, errorCaptured, serverPrefetch, \r
+      // public API\r
+      expose, inheritAttrs, \r
+      // assets\r
+      components, directives, filters } = options;\r
+      const checkDuplicateProperties = createDuplicateChecker() ;\r
+      {\r
+          const [propsOptions] = instance.propsOptions;\r
+          if (propsOptions) {\r
+              for (const key in propsOptions) {\r
+                  checkDuplicateProperties("Props" /* PROPS */, key);\r
+              }\r
+          }\r
+      }\r
+      // options initialization order (to be consistent with Vue 2):\r
+      // - props (already done outside of this function)\r
+      // - inject\r
+      // - methods\r
+      // - data (deferred since it relies on `this` access)\r
+      // - computed\r
+      // - watch (deferred since it relies on `this` access)\r
+      if (injectOptions) {\r
+          resolveInjections(injectOptions, ctx, checkDuplicateProperties, instance.appContext.config.unwrapInjectedRef);\r
+      }\r
+      if (methods) {\r
+          for (const key in methods) {\r
+              const methodHandler = methods[key];\r
+              if (isFunction(methodHandler)) {\r
+                  // In dev mode, we use the `createRenderContext` function to define\r
+                  // methods to the proxy target, and those are read-only but\r
+                  // reconfigurable, so it needs to be redefined here\r
+                  {\r
+                      Object.defineProperty(ctx, key, {\r
+                          value: methodHandler.bind(publicThis),\r
+                          configurable: true,\r
+                          enumerable: true,\r
+                          writable: true\r
+                      });\r
+                  }\r
+                  {\r
+                      checkDuplicateProperties("Methods" /* METHODS */, key);\r
+                  }\r
+              }\r
+              else {\r
+                  warn$1(`Method "${key}" has type "${typeof methodHandler}" in the component definition. ` +\r
+                      `Did you reference the function correctly?`);\r
+              }\r
+          }\r
+      }\r
+      if (dataOptions) {\r
+          if (!isFunction(dataOptions)) {\r
+              warn$1(`The data option must be a function. ` +\r
+                  `Plain object usage is no longer supported.`);\r
+          }\r
+          const data = dataOptions.call(publicThis, publicThis);\r
+          if (isPromise(data)) {\r
+              warn$1(`data() returned a Promise - note data() cannot be async; If you ` +\r
+                  `intend to perform data fetching before component renders, use ` +\r
+                  `async setup() + <Suspense>.`);\r
+          }\r
+          if (!isObject(data)) {\r
+              warn$1(`data() should return an object.`);\r
+          }\r
+          else {\r
+              instance.data = reactive(data);\r
+              {\r
+                  for (const key in data) {\r
+                      checkDuplicateProperties("Data" /* DATA */, key);\r
+                      // expose data on ctx during dev\r
+                      if (key[0] !== '$' && key[0] !== '_') {\r
+                          Object.defineProperty(ctx, key, {\r
+                              configurable: true,\r
+                              enumerable: true,\r
+                              get: () => data[key],\r
+                              set: NOOP\r
+                          });\r
+                      }\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      // state initialization complete at this point - start caching access\r
+      shouldCacheAccess = true;\r
+      if (computedOptions) {\r
+          for (const key in computedOptions) {\r
+              const opt = computedOptions[key];\r
+              const get = isFunction(opt)\r
+                  ? opt.bind(publicThis, publicThis)\r
+                  : isFunction(opt.get)\r
+                      ? opt.get.bind(publicThis, publicThis)\r
+                      : NOOP;\r
+              if (get === NOOP) {\r
+                  warn$1(`Computed property "${key}" has no getter.`);\r
+              }\r
+              const set = !isFunction(opt) && isFunction(opt.set)\r
+                  ? opt.set.bind(publicThis)\r
+                  : () => {\r
+                          warn$1(`Write operation failed: computed property "${key}" is readonly.`);\r
+                      }\r
+                      ;\r
+              const c = computed({\r
+                  get,\r
+                  set\r
+              });\r
+              Object.defineProperty(ctx, key, {\r
+                  enumerable: true,\r
+                  configurable: true,\r
+                  get: () => c.value,\r
+                  set: v => (c.value = v)\r
+              });\r
+              {\r
+                  checkDuplicateProperties("Computed" /* COMPUTED */, key);\r
+              }\r
+          }\r
+      }\r
+      if (watchOptions) {\r
+          for (const key in watchOptions) {\r
+              createWatcher(watchOptions[key], ctx, publicThis, key);\r
+          }\r
+      }\r
+      if (provideOptions) {\r
+          const provides = isFunction(provideOptions)\r
+              ? provideOptions.call(publicThis)\r
+              : provideOptions;\r
+          Reflect.ownKeys(provides).forEach(key => {\r
+              provide(key, provides[key]);\r
+          });\r
+      }\r
+      if (created) {\r
+          callHook(created, instance, "c" /* CREATED */);\r
+      }\r
+      function registerLifecycleHook(register, hook) {\r
+          if (isArray(hook)) {\r
+              hook.forEach(_hook => register(_hook.bind(publicThis)));\r
+          }\r
+          else if (hook) {\r
+              register(hook.bind(publicThis));\r
+          }\r
+      }\r
+      registerLifecycleHook(onBeforeMount, beforeMount);\r
+      registerLifecycleHook(onMounted, mounted);\r
+      registerLifecycleHook(onBeforeUpdate, beforeUpdate);\r
+      registerLifecycleHook(onUpdated, updated);\r
+      registerLifecycleHook(onActivated, activated);\r
+      registerLifecycleHook(onDeactivated, deactivated);\r
+      registerLifecycleHook(onErrorCaptured, errorCaptured);\r
+      registerLifecycleHook(onRenderTracked, renderTracked);\r
+      registerLifecycleHook(onRenderTriggered, renderTriggered);\r
+      registerLifecycleHook(onBeforeUnmount, beforeUnmount);\r
+      registerLifecycleHook(onUnmounted, unmounted);\r
+      registerLifecycleHook(onServerPrefetch, serverPrefetch);\r
+      if (isArray(expose)) {\r
+          if (expose.length) {\r
+              const exposed = instance.exposed || (instance.exposed = {});\r
+              expose.forEach(key => {\r
+                  Object.defineProperty(exposed, key, {\r
+                      get: () => publicThis[key],\r
+                      set: val => (publicThis[key] = val)\r
+                  });\r
+              });\r
+          }\r
+          else if (!instance.exposed) {\r
+              instance.exposed = {};\r
+          }\r
+      }\r
+      // options that are handled when creating the instance but also need to be\r
+      // applied from mixins\r
+      if (render && instance.render === NOOP) {\r
+          instance.render = render;\r
+      }\r
+      if (inheritAttrs != null) {\r
+          instance.inheritAttrs = inheritAttrs;\r
+      }\r
+      // asset options.\r
+      if (components)\r
+          instance.components = components;\r
+      if (directives)\r
+          instance.directives = directives;\r
+  }\r
+  function resolveInjections(injectOptions, ctx, checkDuplicateProperties = NOOP, unwrapRef = false) {\r
+      if (isArray(injectOptions)) {\r
+          injectOptions = normalizeInject(injectOptions);\r
+      }\r
+      for (const key in injectOptions) {\r
+          const opt = injectOptions[key];\r
+          let injected;\r
+          if (isObject(opt)) {\r
+              if ('default' in opt) {\r
+                  injected = inject(opt.from || key, opt.default, true /* treat default function as factory */);\r
+              }\r
+              else {\r
+                  injected = inject(opt.from || key);\r
+              }\r
+          }\r
+          else {\r
+              injected = inject(opt);\r
+          }\r
+          if (isRef(injected)) {\r
+              // TODO remove the check in 3.3\r
+              if (unwrapRef) {\r
+                  Object.defineProperty(ctx, key, {\r
+                      enumerable: true,\r
+                      configurable: true,\r
+                      get: () => injected.value,\r
+                      set: v => (injected.value = v)\r
+                  });\r
+              }\r
+              else {\r
+                  {\r
+                      warn$1(`injected property "${key}" is a ref and will be auto-unwrapped ` +\r
+                          `and no longer needs \`.value\` in the next minor release. ` +\r
+                          `To opt-in to the new behavior now, ` +\r
+                          `set \`app.config.unwrapInjectedRef = true\` (this config is ` +\r
+                          `temporary and will not be needed in the future.)`);\r
+                  }\r
+                  ctx[key] = injected;\r
+              }\r
+          }\r
+          else {\r
+              ctx[key] = injected;\r
+          }\r
+          {\r
+              checkDuplicateProperties("Inject" /* INJECT */, key);\r
+          }\r
+      }\r
+  }\r
+  function callHook(hook, instance, type) {\r
+      callWithAsyncErrorHandling(isArray(hook)\r
+          ? hook.map(h => h.bind(instance.proxy))\r
+          : hook.bind(instance.proxy), instance, type);\r
+  }\r
+  function createWatcher(raw, ctx, publicThis, key) {\r
+      const getter = key.includes('.')\r
+          ? createPathGetter(publicThis, key)\r
+          : () => publicThis[key];\r
+      if (isString(raw)) {\r
+          const handler = ctx[raw];\r
+          if (isFunction(handler)) {\r
+              watch(getter, handler);\r
+          }\r
+          else {\r
+              warn$1(`Invalid watch handler specified by key "${raw}"`, handler);\r
+          }\r
+      }\r
+      else if (isFunction(raw)) {\r
+          watch(getter, raw.bind(publicThis));\r
+      }\r
+      else if (isObject(raw)) {\r
+          if (isArray(raw)) {\r
+              raw.forEach(r => createWatcher(r, ctx, publicThis, key));\r
+          }\r
+          else {\r
+              const handler = isFunction(raw.handler)\r
+                  ? raw.handler.bind(publicThis)\r
+                  : ctx[raw.handler];\r
+              if (isFunction(handler)) {\r
+                  watch(getter, handler, raw);\r
+              }\r
+              else {\r
+                  warn$1(`Invalid watch handler specified by key "${raw.handler}"`, handler);\r
+              }\r
+          }\r
+      }\r
+      else {\r
+          warn$1(`Invalid watch option: "${key}"`, raw);\r
+      }\r
+  }\r
+  /**\r
+   * Resolve merged options and cache it on the component.\r
+   * This is done only once per-component since the merging does not involve\r
+   * instances.\r
+   */\r
+  function resolveMergedOptions(instance) {\r
+      const base = instance.type;\r
+      const { mixins, extends: extendsOptions } = base;\r
+      const { mixins: globalMixins, optionsCache: cache, config: { optionMergeStrategies } } = instance.appContext;\r
+      const cached = cache.get(base);\r
+      let resolved;\r
+      if (cached) {\r
+          resolved = cached;\r
+      }\r
+      else if (!globalMixins.length && !mixins && !extendsOptions) {\r
+          {\r
+              resolved = base;\r
+          }\r
+      }\r
+      else {\r
+          resolved = {};\r
+          if (globalMixins.length) {\r
+              globalMixins.forEach(m => mergeOptions(resolved, m, optionMergeStrategies, true));\r
+          }\r
+          mergeOptions(resolved, base, optionMergeStrategies);\r
+      }\r
+      cache.set(base, resolved);\r
+      return resolved;\r
+  }\r
+  function mergeOptions(to, from, strats, asMixin = false) {\r
+      const { mixins, extends: extendsOptions } = from;\r
+      if (extendsOptions) {\r
+          mergeOptions(to, extendsOptions, strats, true);\r
+      }\r
+      if (mixins) {\r
+          mixins.forEach((m) => mergeOptions(to, m, strats, true));\r
+      }\r
+      for (const key in from) {\r
+          if (asMixin && key === 'expose') {\r
+              warn$1(`"expose" option is ignored when declared in mixins or extends. ` +\r
+                      `It should only be declared in the base component itself.`);\r
+          }\r
+          else {\r
+              const strat = internalOptionMergeStrats[key] || (strats && strats[key]);\r
+              to[key] = strat ? strat(to[key], from[key]) : from[key];\r
+          }\r
+      }\r
+      return to;\r
+  }\r
+  const internalOptionMergeStrats = {\r
+      data: mergeDataFn,\r
+      props: mergeObjectOptions,\r
+      emits: mergeObjectOptions,\r
+      // objects\r
+      methods: mergeObjectOptions,\r
+      computed: mergeObjectOptions,\r
+      // lifecycle\r
+      beforeCreate: mergeAsArray,\r
+      created: mergeAsArray,\r
+      beforeMount: mergeAsArray,\r
+      mounted: mergeAsArray,\r
+      beforeUpdate: mergeAsArray,\r
+      updated: mergeAsArray,\r
+      beforeDestroy: mergeAsArray,\r
+      beforeUnmount: mergeAsArray,\r
+      destroyed: mergeAsArray,\r
+      unmounted: mergeAsArray,\r
+      activated: mergeAsArray,\r
+      deactivated: mergeAsArray,\r
+      errorCaptured: mergeAsArray,\r
+      serverPrefetch: mergeAsArray,\r
+      // assets\r
+      components: mergeObjectOptions,\r
+      directives: mergeObjectOptions,\r
+      // watch\r
+      watch: mergeWatchOptions,\r
+      // provide / inject\r
+      provide: mergeDataFn,\r
+      inject: mergeInject\r
+  };\r
+  function mergeDataFn(to, from) {\r
+      if (!from) {\r
+          return to;\r
+      }\r
+      if (!to) {\r
+          return from;\r
+      }\r
+      return function mergedDataFn() {\r
+          return (extend)(isFunction(to) ? to.call(this, this) : to, isFunction(from) ? from.call(this, this) : from);\r
+      };\r
+  }\r
+  function mergeInject(to, from) {\r
+      return mergeObjectOptions(normalizeInject(to), normalizeInject(from));\r
+  }\r
+  function normalizeInject(raw) {\r
+      if (isArray(raw)) {\r
+          const res = {};\r
+          for (let i = 0; i < raw.length; i++) {\r
+              res[raw[i]] = raw[i];\r
+          }\r
+          return res;\r
+      }\r
+      return raw;\r
+  }\r
+  function mergeAsArray(to, from) {\r
+      return to ? [...new Set([].concat(to, from))] : from;\r
+  }\r
+  function mergeObjectOptions(to, from) {\r
+      return to ? extend(extend(Object.create(null), to), from) : from;\r
+  }\r
+  function mergeWatchOptions(to, from) {\r
+      if (!to)\r
+          return from;\r
+      if (!from)\r
+          return to;\r
+      const merged = extend(Object.create(null), to);\r
+      for (const key in from) {\r
+          merged[key] = mergeAsArray(to[key], from[key]);\r
+      }\r
+      return merged;\r
+  }
+
+  function initProps(instance, rawProps, isStateful, // result of bitwise flag comparison\r
+  isSSR = false) {\r
+      const props = {};\r
+      const attrs = {};\r
+      def(attrs, InternalObjectKey, 1);\r
+      instance.propsDefaults = Object.create(null);\r
+      setFullProps(instance, rawProps, props, attrs);\r
+      // ensure all declared prop keys are present\r
+      for (const key in instance.propsOptions[0]) {\r
+          if (!(key in props)) {\r
+              props[key] = undefined;\r
+          }\r
+      }\r
+      // validation\r
+      {\r
+          validateProps(rawProps || {}, props, instance);\r
+      }\r
+      if (isStateful) {\r
+          // stateful\r
+          instance.props = isSSR ? props : shallowReactive(props);\r
+      }\r
+      else {\r
+          if (!instance.type.props) {\r
+              // functional w/ optional props, props === attrs\r
+              instance.props = attrs;\r
+          }\r
+          else {\r
+              // functional w/ declared props\r
+              instance.props = props;\r
+          }\r
+      }\r
+      instance.attrs = attrs;\r
+  }\r
+  function updateProps(instance, rawProps, rawPrevProps, optimized) {\r
+      const { props, attrs, vnode: { patchFlag } } = instance;\r
+      const rawCurrentProps = toRaw(props);\r
+      const [options] = instance.propsOptions;\r
+      let hasAttrsChanged = false;\r
+      if (\r
+      // always force full diff in dev\r
+      // - #1942 if hmr is enabled with sfc component\r
+      // - vite#872 non-sfc component used by sfc component\r
+      !((instance.type.__hmrId ||\r
+              (instance.parent && instance.parent.type.__hmrId))) &&\r
+          (optimized || patchFlag > 0) &&\r
+          !(patchFlag & 16 /* FULL_PROPS */)) {\r
+          if (patchFlag & 8 /* PROPS */) {\r
+              // Compiler-generated props & no keys change, just set the updated\r
+              // the props.\r
+              const propsToUpdate = instance.vnode.dynamicProps;\r
+              for (let i = 0; i < propsToUpdate.length; i++) {\r
+                  let key = propsToUpdate[i];\r
+                  // PROPS flag guarantees rawProps to be non-null\r
+                  const value = rawProps[key];\r
+                  if (options) {\r
+                      // attr / props separation was done on init and will be consistent\r
+                      // in this code path, so just check if attrs have it.\r
+                      if (hasOwn(attrs, key)) {\r
+                          if (value !== attrs[key]) {\r
+                              attrs[key] = value;\r
+                              hasAttrsChanged = true;\r
+                          }\r
+                      }\r
+                      else {\r
+                          const camelizedKey = camelize(key);\r
+                          props[camelizedKey] = resolvePropValue(options, rawCurrentProps, camelizedKey, value, instance, false /* isAbsent */);\r
+                      }\r
+                  }\r
+                  else {\r
+                      if (value !== attrs[key]) {\r
+                          attrs[key] = value;\r
+                          hasAttrsChanged = true;\r
+                      }\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      else {\r
+          // full props update.\r
+          if (setFullProps(instance, rawProps, props, attrs)) {\r
+              hasAttrsChanged = true;\r
+          }\r
+          // in case of dynamic props, check if we need to delete keys from\r
+          // the props object\r
+          let kebabKey;\r
+          for (const key in rawCurrentProps) {\r
+              if (!rawProps ||\r
+                  // for camelCase\r
+                  (!hasOwn(rawProps, key) &&\r
+                      // it's possible the original props was passed in as kebab-case\r
+                      // and converted to camelCase (#955)\r
+                      ((kebabKey = hyphenate(key)) === key || !hasOwn(rawProps, kebabKey)))) {\r
+                  if (options) {\r
+                      if (rawPrevProps &&\r
+                          // for camelCase\r
+                          (rawPrevProps[key] !== undefined ||\r
+                              // for kebab-case\r
+                              rawPrevProps[kebabKey] !== undefined)) {\r
+                          props[key] = resolvePropValue(options, rawCurrentProps, key, undefined, instance, true /* isAbsent */);\r
+                      }\r
+                  }\r
+                  else {\r
+                      delete props[key];\r
+                  }\r
+              }\r
+          }\r
+          // in the case of functional component w/o props declaration, props and\r
+          // attrs point to the same object so it should already have been updated.\r
+          if (attrs !== rawCurrentProps) {\r
+              for (const key in attrs) {\r
+                  if (!rawProps || !hasOwn(rawProps, key)) {\r
+                      delete attrs[key];\r
+                      hasAttrsChanged = true;\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      // trigger updates for $attrs in case it's used in component slots\r
+      if (hasAttrsChanged) {\r
+          trigger(instance, "set" /* SET */, '$attrs');\r
+      }\r
+      {\r
+          validateProps(rawProps || {}, props, instance);\r
+      }\r
+  }\r
+  function setFullProps(instance, rawProps, props, attrs) {\r
+      const [options, needCastKeys] = instance.propsOptions;\r
+      let hasAttrsChanged = false;\r
+      let rawCastValues;\r
+      if (rawProps) {\r
+          for (let key in rawProps) {\r
+              // key, ref are reserved and never passed down\r
+              if (isReservedProp(key)) {\r
+                  continue;\r
+              }\r
+              const value = rawProps[key];\r
+              // prop option names are camelized during normalization, so to support\r
+              // kebab -> camel conversion here we need to camelize the key.\r
+              let camelKey;\r
+              if (options && hasOwn(options, (camelKey = camelize(key)))) {\r
+                  if (!needCastKeys || !needCastKeys.includes(camelKey)) {\r
+                      props[camelKey] = value;\r
+                  }\r
+                  else {\r
+                      (rawCastValues || (rawCastValues = {}))[camelKey] = value;\r
+                  }\r
+              }\r
+              else if (!isEmitListener(instance.emitsOptions, key)) {\r
+                  if (value !== attrs[key]) {\r
+                      attrs[key] = value;\r
+                      hasAttrsChanged = true;\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      if (needCastKeys) {\r
+          const rawCurrentProps = toRaw(props);\r
+          const castValues = rawCastValues || EMPTY_OBJ;\r
+          for (let i = 0; i < needCastKeys.length; i++) {\r
+              const key = needCastKeys[i];\r
+              props[key] = resolvePropValue(options, rawCurrentProps, key, castValues[key], instance, !hasOwn(castValues, key));\r
+          }\r
+      }\r
+      return hasAttrsChanged;\r
+  }\r
+  function resolvePropValue(options, props, key, value, instance, isAbsent) {\r
+      const opt = options[key];\r
+      if (opt != null) {\r
+          const hasDefault = hasOwn(opt, 'default');\r
+          // default values\r
+          if (hasDefault && value === undefined) {\r
+              const defaultValue = opt.default;\r
+              if (opt.type !== Function && isFunction(defaultValue)) {\r
+                  const { propsDefaults } = instance;\r
+                  if (key in propsDefaults) {\r
+                      value = propsDefaults[key];\r
+                  }\r
+                  else {\r
+                      setCurrentInstance(instance);\r
+                      value = propsDefaults[key] = defaultValue.call(null, props);\r
+                      unsetCurrentInstance();\r
+                  }\r
+              }\r
+              else {\r
+                  value = defaultValue;\r
+              }\r
+          }\r
+          // boolean casting\r
+          if (opt[0 /* shouldCast */]) {\r
+              if (isAbsent && !hasDefault) {\r
+                  value = false;\r
+              }\r
+              else if (opt[1 /* shouldCastTrue */] &&\r
+                  (value === '' || value === hyphenate(key))) {\r
+                  value = true;\r
+              }\r
+          }\r
+      }\r
+      return value;\r
+  }\r
+  function normalizePropsOptions(comp, appContext, asMixin = false) {\r
+      const cache = appContext.propsCache;\r
+      const cached = cache.get(comp);\r
+      if (cached) {\r
+          return cached;\r
+      }\r
+      const raw = comp.props;\r
+      const normalized = {};\r
+      const needCastKeys = [];\r
+      // apply mixin/extends props\r
+      let hasExtends = false;\r
+      if (!isFunction(comp)) {\r
+          const extendProps = (raw) => {\r
+              hasExtends = true;\r
+              const [props, keys] = normalizePropsOptions(raw, appContext, true);\r
+              extend(normalized, props);\r
+              if (keys)\r
+                  needCastKeys.push(...keys);\r
+          };\r
+          if (!asMixin && appContext.mixins.length) {\r
+              appContext.mixins.forEach(extendProps);\r
+          }\r
+          if (comp.extends) {\r
+              extendProps(comp.extends);\r
+          }\r
+          if (comp.mixins) {\r
+              comp.mixins.forEach(extendProps);\r
+          }\r
+      }\r
+      if (!raw && !hasExtends) {\r
+          cache.set(comp, EMPTY_ARR);\r
+          return EMPTY_ARR;\r
+      }\r
+      if (isArray(raw)) {\r
+          for (let i = 0; i < raw.length; i++) {\r
+              if (!isString(raw[i])) {\r
+                  warn$1(`props must be strings when using array syntax.`, raw[i]);\r
+              }\r
+              const normalizedKey = camelize(raw[i]);\r
+              if (validatePropName(normalizedKey)) {\r
+                  normalized[normalizedKey] = EMPTY_OBJ;\r
+              }\r
+          }\r
+      }\r
+      else if (raw) {\r
+          if (!isObject(raw)) {\r
+              warn$1(`invalid props options`, raw);\r
+          }\r
+          for (const key in raw) {\r
+              const normalizedKey = camelize(key);\r
+              if (validatePropName(normalizedKey)) {\r
+                  const opt = raw[key];\r
+                  const prop = (normalized[normalizedKey] =\r
+                      isArray(opt) || isFunction(opt) ? { type: opt } : opt);\r
+                  if (prop) {\r
+                      const booleanIndex = getTypeIndex(Boolean, prop.type);\r
+                      const stringIndex = getTypeIndex(String, prop.type);\r
+                      prop[0 /* shouldCast */] = booleanIndex > -1;\r
+                      prop[1 /* shouldCastTrue */] =\r
+                          stringIndex < 0 || booleanIndex < stringIndex;\r
+                      // if the prop needs boolean casting or default value\r
+                      if (booleanIndex > -1 || hasOwn(prop, 'default')) {\r
+                          needCastKeys.push(normalizedKey);\r
+                      }\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      const res = [normalized, needCastKeys];\r
+      cache.set(comp, res);\r
+      return res;\r
+  }\r
+  function validatePropName(key) {\r
+      if (key[0] !== '$') {\r
+          return true;\r
+      }\r
+      else {\r
+          warn$1(`Invalid prop name: "${key}" is a reserved property.`);\r
+      }\r
+      return false;\r
+  }\r
+  // use function string name to check type constructors\r
+  // so that it works across vms / iframes.\r
+  function getType(ctor) {\r
+      const match = ctor && ctor.toString().match(/^\s*function (\w+)/);\r
+      return match ? match[1] : ctor === null ? 'null' : '';\r
+  }\r
+  function isSameType(a, b) {\r
+      return getType(a) === getType(b);\r
+  }\r
+  function getTypeIndex(type, expectedTypes) {\r
+      if (isArray(expectedTypes)) {\r
+          return expectedTypes.findIndex(t => isSameType(t, type));\r
+      }\r
+      else if (isFunction(expectedTypes)) {\r
+          return isSameType(expectedTypes, type) ? 0 : -1;\r
+      }\r
+      return -1;\r
+  }\r
+  /**\r
+   * dev only\r
+   */\r
+  function validateProps(rawProps, props, instance) {\r
+      const resolvedValues = toRaw(props);\r
+      const options = instance.propsOptions[0];\r
+      for (const key in options) {\r
+          let opt = options[key];\r
+          if (opt == null)\r
+              continue;\r
+          validateProp(key, resolvedValues[key], opt, !hasOwn(rawProps, key) && !hasOwn(rawProps, hyphenate(key)));\r
+      }\r
+  }\r
+  /**\r
+   * dev only\r
+   */\r
+  function validateProp(name, value, prop, isAbsent) {\r
+      const { type, required, validator } = prop;\r
+      // required!\r
+      if (required && isAbsent) {\r
+          warn$1('Missing required prop: "' + name + '"');\r
+          return;\r
+      }\r
+      // missing but optional\r
+      if (value == null && !prop.required) {\r
+          return;\r
+      }\r
+      // type check\r
+      if (type != null && type !== true) {\r
+          let isValid = false;\r
+          const types = isArray(type) ? type : [type];\r
+          const expectedTypes = [];\r
+          // value is valid as long as one of the specified types match\r
+          for (let i = 0; i < types.length && !isValid; i++) {\r
+              const { valid, expectedType } = assertType(value, types[i]);\r
+              expectedTypes.push(expectedType || '');\r
+              isValid = valid;\r
+          }\r
+          if (!isValid) {\r
+              warn$1(getInvalidTypeMessage(name, value, expectedTypes));\r
+              return;\r
+          }\r
+      }\r
+      // custom validator\r
+      if (validator && !validator(value)) {\r
+          warn$1('Invalid prop: custom validator check failed for prop "' + name + '".');\r
+      }\r
+  }\r
+  const isSimpleType = /*#__PURE__*/ makeMap('String,Number,Boolean,Function,Symbol,BigInt');\r
+  /**\r
+   * dev only\r
+   */\r
+  function assertType(value, type) {\r
+      let valid;\r
+      const expectedType = getType(type);\r
+      if (isSimpleType(expectedType)) {\r
+          const t = typeof value;\r
+          valid = t === expectedType.toLowerCase();\r
+          // for primitive wrapper objects\r
+          if (!valid && t === 'object') {\r
+              valid = value instanceof type;\r
+          }\r
+      }\r
+      else if (expectedType === 'Object') {\r
+          valid = isObject(value);\r
+      }\r
+      else if (expectedType === 'Array') {\r
+          valid = isArray(value);\r
+      }\r
+      else if (expectedType === 'null') {\r
+          valid = value === null;\r
+      }\r
+      else {\r
+          valid = value instanceof type;\r
+      }\r
+      return {\r
+          valid,\r
+          expectedType\r
+      };\r
+  }\r
+  /**\r
+   * dev only\r
+   */\r
+  function getInvalidTypeMessage(name, value, expectedTypes) {\r
+      let message = `Invalid prop: type check failed for prop "${name}".` +\r
+          ` Expected ${expectedTypes.map(capitalize).join(' | ')}`;\r
+      const expectedType = expectedTypes[0];\r
+      const receivedType = toRawType(value);\r
+      const expectedValue = styleValue(value, expectedType);\r
+      const receivedValue = styleValue(value, receivedType);\r
+      // check if we need to specify expected value\r
+      if (expectedTypes.length === 1 &&\r
+          isExplicable(expectedType) &&\r
+          !isBoolean(expectedType, receivedType)) {\r
+          message += ` with value ${expectedValue}`;\r
+      }\r
+      message += `, got ${receivedType} `;\r
+      // check if we need to specify received value\r
+      if (isExplicable(receivedType)) {\r
+          message += `with value ${receivedValue}.`;\r
+      }\r
+      return message;\r
+  }\r
+  /**\r
+   * dev only\r
+   */\r
+  function styleValue(value, type) {\r
+      if (type === 'String') {\r
+          return `"${value}"`;\r
+      }\r
+      else if (type === 'Number') {\r
+          return `${Number(value)}`;\r
+      }\r
+      else {\r
+          return `${value}`;\r
+      }\r
+  }\r
+  /**\r
+   * dev only\r
+   */\r
+  function isExplicable(type) {\r
+      const explicitTypes = ['string', 'number', 'boolean'];\r
+      return explicitTypes.some(elem => type.toLowerCase() === elem);\r
+  }\r
+  /**\r
+   * dev only\r
+   */\r
+  function isBoolean(...args) {\r
+      return args.some(elem => elem.toLowerCase() === 'boolean');\r
+  }
+
+  const isInternalKey = (key) => key[0] === '_' || key === '$stable';\r
+  const normalizeSlotValue = (value) => isArray(value)\r
+      ? value.map(normalizeVNode)\r
+      : [normalizeVNode(value)];\r
+  const normalizeSlot = (key, rawSlot, ctx) => {\r
+      const normalized = withCtx((...args) => {\r
+          if (currentInstance) {\r
+              warn$1(`Slot "${key}" invoked outside of the render function: ` +\r
+                  `this will not track dependencies used in the slot. ` +\r
+                  `Invoke the slot function inside the render function instead.`);\r
+          }\r
+          return normalizeSlotValue(rawSlot(...args));\r
+      }, ctx);\r
+      normalized._c = false;\r
+      return normalized;\r
+  };\r
+  const normalizeObjectSlots = (rawSlots, slots, instance) => {\r
+      const ctx = rawSlots._ctx;\r
+      for (const key in rawSlots) {\r
+          if (isInternalKey(key))\r
+              continue;\r
+          const value = rawSlots[key];\r
+          if (isFunction(value)) {\r
+              slots[key] = normalizeSlot(key, value, ctx);\r
+          }\r
+          else if (value != null) {\r
+              {\r
+                  warn$1(`Non-function value encountered for slot "${key}". ` +\r
+                      `Prefer function slots for better performance.`);\r
+              }\r
+              const normalized = normalizeSlotValue(value);\r
+              slots[key] = () => normalized;\r
+          }\r
+      }\r
+  };\r
+  const normalizeVNodeSlots = (instance, children) => {\r
+      if (!isKeepAlive(instance.vnode) &&\r
+          !(false )) {\r
+          warn$1(`Non-function value encountered for default slot. ` +\r
+              `Prefer function slots for better performance.`);\r
+      }\r
+      const normalized = normalizeSlotValue(children);\r
+      instance.slots.default = () => normalized;\r
+  };\r
+  const initSlots = (instance, children) => {\r
+      if (instance.vnode.shapeFlag & 32 /* SLOTS_CHILDREN */) {\r
+          const type = children._;\r
+          if (type) {\r
+              // users can get the shallow readonly version of the slots object through `this.$slots`,\r
+              // we should avoid the proxy object polluting the slots of the internal instance\r
+              instance.slots = toRaw(children);\r
+              // make compiler marker non-enumerable\r
+              def(children, '_', type);\r
+          }\r
+          else {\r
+              normalizeObjectSlots(children, (instance.slots = {}));\r
+          }\r
+      }\r
+      else {\r
+          instance.slots = {};\r
+          if (children) {\r
+              normalizeVNodeSlots(instance, children);\r
+          }\r
+      }\r
+      def(instance.slots, InternalObjectKey, 1);\r
+  };\r
+  const updateSlots = (instance, children, optimized) => {\r
+      const { vnode, slots } = instance;\r
+      let needDeletionCheck = true;\r
+      let deletionComparisonTarget = EMPTY_OBJ;\r
+      if (vnode.shapeFlag & 32 /* SLOTS_CHILDREN */) {\r
+          const type = children._;\r
+          if (type) {\r
+              // compiled slots.\r
+              if (isHmrUpdating) {\r
+                  // Parent was HMR updated so slot content may have changed.\r
+                  // force update slots and mark instance for hmr as well\r
+                  extend(slots, children);\r
+              }\r
+              else if (optimized && type === 1 /* STABLE */) {\r
+                  // compiled AND stable.\r
+                  // no need to update, and skip stale slots removal.\r
+                  needDeletionCheck = false;\r
+              }\r
+              else {\r
+                  // compiled but dynamic (v-if/v-for on slots) - update slots, but skip\r
+                  // normalization.\r
+                  extend(slots, children);\r
+                  // #2893\r
+                  // when rendering the optimized slots by manually written render function,\r
+                  // we need to delete the `slots._` flag if necessary to make subsequent updates reliable,\r
+                  // i.e. let the `renderSlot` create the bailed Fragment\r
+                  if (!optimized && type === 1 /* STABLE */) {\r
+                      delete slots._;\r
+                  }\r
+              }\r
+          }\r
+          else {\r
+              needDeletionCheck = !children.$stable;\r
+              normalizeObjectSlots(children, slots);\r
+          }\r
+          deletionComparisonTarget = children;\r
+      }\r
+      else if (children) {\r
+          // non slot object children (direct value) passed to a component\r
+          normalizeVNodeSlots(instance, children);\r
+          deletionComparisonTarget = { default: 1 };\r
+      }\r
+      // delete stale slots\r
+      if (needDeletionCheck) {\r
+          for (const key in slots) {\r
+              if (!isInternalKey(key) && !(key in deletionComparisonTarget)) {\r
+                  delete slots[key];\r
+              }\r
+          }\r
+      }\r
+  };
+
+  /**\r
+  Runtime helper for applying directives to a vnode. Example usage:\r
+
+  const comp = resolveComponent('comp')\r
+  const foo = resolveDirective('foo')\r
+  const bar = resolveDirective('bar')\r
+
+  return withDirectives(h(comp), [\r
+    [foo, this.x],\r
+    [bar, this.y]\r
+  ])\r
+  */\r
+  const isBuiltInDirective = /*#__PURE__*/ makeMap('bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text');\r
+  function validateDirectiveName(name) {\r
+      if (isBuiltInDirective(name)) {\r
+          warn$1('Do not use built-in directive ids as custom directive id: ' + name);\r
+      }\r
+  }\r
+  /**\r
+   * Adds directives to a VNode.\r
+   */\r
+  function withDirectives(vnode, directives) {\r
+      const internalInstance = currentRenderingInstance;\r
+      if (internalInstance === null) {\r
+          warn$1(`withDirectives can only be used inside render functions.`);\r
+          return vnode;\r
+      }\r
+      const instance = internalInstance.proxy;\r
+      const bindings = vnode.dirs || (vnode.dirs = []);\r
+      for (let i = 0; i < directives.length; i++) {\r
+          let [dir, value, arg, modifiers = EMPTY_OBJ] = directives[i];\r
+          if (isFunction(dir)) {\r
+              dir = {\r
+                  mounted: dir,\r
+                  updated: dir\r
+              };\r
+          }\r
+          if (dir.deep) {\r
+              traverse(value);\r
+          }\r
+          bindings.push({\r
+              dir,\r
+              instance,\r
+              value,\r
+              oldValue: void 0,\r
+              arg,\r
+              modifiers\r
+          });\r
+      }\r
+      return vnode;\r
+  }\r
+  function invokeDirectiveHook(vnode, prevVNode, instance, name) {\r
+      const bindings = vnode.dirs;\r
+      const oldBindings = prevVNode && prevVNode.dirs;\r
+      for (let i = 0; i < bindings.length; i++) {\r
+          const binding = bindings[i];\r
+          if (oldBindings) {\r
+              binding.oldValue = oldBindings[i].value;\r
+          }\r
+          let hook = binding.dir[name];\r
+          if (hook) {\r
+              // disable tracking inside all lifecycle hooks\r
+              // since they can potentially be called inside effects.\r
+              pauseTracking();\r
+              callWithAsyncErrorHandling(hook, instance, 8 /* DIRECTIVE_HOOK */, [\r
+                  vnode.el,\r
+                  binding,\r
+                  vnode,\r
+                  prevVNode\r
+              ]);\r
+              resetTracking();\r
+          }\r
+      }\r
+  }
+
+  function createAppContext() {\r
+      return {\r
+          app: null,\r
+          config: {\r
+              isNativeTag: NO,\r
+              performance: false,\r
+              globalProperties: {},\r
+              optionMergeStrategies: {},\r
+              errorHandler: undefined,\r
+              warnHandler: undefined,\r
+              compilerOptions: {}\r
+          },\r
+          mixins: [],\r
+          components: {},\r
+          directives: {},\r
+          provides: Object.create(null),\r
+          optionsCache: new WeakMap(),\r
+          propsCache: new WeakMap(),\r
+          emitsCache: new WeakMap()\r
+      };\r
+  }\r
+  let uid = 0;\r
+  function createAppAPI(render, hydrate) {\r
+      return function createApp(rootComponent, rootProps = null) {\r
+          if (rootProps != null && !isObject(rootProps)) {\r
+              warn$1(`root props passed to app.mount() must be an object.`);\r
+              rootProps = null;\r
+          }\r
+          const context = createAppContext();\r
+          const installedPlugins = new Set();\r
+          let isMounted = false;\r
+          const app = (context.app = {\r
+              _uid: uid++,\r
+              _component: rootComponent,\r
+              _props: rootProps,\r
+              _container: null,\r
+              _context: context,\r
+              _instance: null,\r
+              version,\r
+              get config() {\r
+                  return context.config;\r
+              },\r
+              set config(v) {\r
+                  {\r
+                      warn$1(`app.config cannot be replaced. Modify individual options instead.`);\r
+                  }\r
+              },\r
+              use(plugin, ...options) {\r
+                  if (installedPlugins.has(plugin)) {\r
+                      warn$1(`Plugin has already been applied to target app.`);\r
+                  }\r
+                  else if (plugin && isFunction(plugin.install)) {\r
+                      installedPlugins.add(plugin);\r
+                      plugin.install(app, ...options);\r
+                  }\r
+                  else if (isFunction(plugin)) {\r
+                      installedPlugins.add(plugin);\r
+                      plugin(app, ...options);\r
+                  }\r
+                  else {\r
+                      warn$1(`A plugin must either be a function or an object with an "install" ` +\r
+                          `function.`);\r
+                  }\r
+                  return app;\r
+              },\r
+              mixin(mixin) {\r
+                  {\r
+                      if (!context.mixins.includes(mixin)) {\r
+                          context.mixins.push(mixin);\r
+                      }\r
+                      else {\r
+                          warn$1('Mixin has already been applied to target app' +\r
+                              (mixin.name ? `: ${mixin.name}` : ''));\r
+                      }\r
+                  }\r
+                  return app;\r
+              },\r
+              component(name, component) {\r
+                  {\r
+                      validateComponentName(name, context.config);\r
+                  }\r
+                  if (!component) {\r
+                      return context.components[name];\r
+                  }\r
+                  if (context.components[name]) {\r
+                      warn$1(`Component "${name}" has already been registered in target app.`);\r
+                  }\r
+                  context.components[name] = component;\r
+                  return app;\r
+              },\r
+              directive(name, directive) {\r
+                  {\r
+                      validateDirectiveName(name);\r
+                  }\r
+                  if (!directive) {\r
+                      return context.directives[name];\r
+                  }\r
+                  if (context.directives[name]) {\r
+                      warn$1(`Directive "${name}" has already been registered in target app.`);\r
+                  }\r
+                  context.directives[name] = directive;\r
+                  return app;\r
+              },\r
+              mount(rootContainer, isHydrate, isSVG) {\r
+                  if (!isMounted) {\r
+                      const vnode = createVNode(rootComponent, rootProps);\r
+                      // store app context on the root VNode.\r
+                      // this will be set on the root instance on initial mount.\r
+                      vnode.appContext = context;\r
+                      // HMR root reload\r
+                      {\r
+                          context.reload = () => {\r
+                              render(cloneVNode(vnode), rootContainer, isSVG);\r
+                          };\r
+                      }\r
+                      if (isHydrate && hydrate) {\r
+                          hydrate(vnode, rootContainer);\r
+                      }\r
+                      else {\r
+                          render(vnode, rootContainer, isSVG);\r
+                      }\r
+                      isMounted = true;\r
+                      app._container = rootContainer;\r
+                      rootContainer.__vue_app__ = app;\r
+                      {\r
+                          app._instance = vnode.component;\r
+                          devtoolsInitApp(app, version);\r
+                      }\r
+                      return vnode.component.proxy;\r
+                  }\r
+                  else {\r
+                      warn$1(`App has already been mounted.\n` +\r
+                          `If you want to remount the same app, move your app creation logic ` +\r
+                          `into a factory function and create fresh app instances for each ` +\r
+                          `mount - e.g. \`const createMyApp = () => createApp(App)\``);\r
+                  }\r
+              },\r
+              unmount() {\r
+                  if (isMounted) {\r
+                      render(null, app._container);\r
+                      {\r
+                          app._instance = null;\r
+                          devtoolsUnmountApp(app);\r
+                      }\r
+                      delete app._container.__vue_app__;\r
+                  }\r
+                  else {\r
+                      warn$1(`Cannot unmount an app that is not mounted.`);\r
+                  }\r
+              },\r
+              provide(key, value) {\r
+                  if (key in context.provides) {\r
+                      warn$1(`App already provides property with key "${String(key)}". ` +\r
+                          `It will be overwritten with the new value.`);\r
+                  }\r
+                  // TypeScript doesn't allow symbols as index type\r
+                  // https://github.com/Microsoft/TypeScript/issues/24587\r
+                  context.provides[key] = value;\r
+                  return app;\r
+              }\r
+          });\r
+          return app;\r
+      };\r
+  }
+
+  let hasMismatch = false;\r
+  const isSVGContainer = (container) => /svg/.test(container.namespaceURI) && container.tagName !== 'foreignObject';\r
+  const isComment = (node) => node.nodeType === 8 /* COMMENT */;\r
+  // Note: hydration is DOM-specific\r
+  // But we have to place it in core due to tight coupling with core - splitting\r
+  // it out creates a ton of unnecessary complexity.\r
+  // Hydration also depends on some renderer internal logic which needs to be\r
+  // passed in via arguments.\r
+  function createHydrationFunctions(rendererInternals) {\r
+      const { mt: mountComponent, p: patch, o: { patchProp, nextSibling, parentNode, remove, insert, createComment } } = rendererInternals;\r
+      const hydrate = (vnode, container) => {\r
+          if (!container.hasChildNodes()) {\r
+              warn$1(`Attempting to hydrate existing markup but container is empty. ` +\r
+                      `Performing full mount instead.`);\r
+              patch(null, vnode, container);\r
+              flushPostFlushCbs();\r
+              return;\r
+          }\r
+          hasMismatch = false;\r
+          hydrateNode(container.firstChild, vnode, null, null, null);\r
+          flushPostFlushCbs();\r
+          if (hasMismatch && !false) {\r
+              // this error should show up in production\r
+              console.error(`Hydration completed but contains mismatches.`);\r
+          }\r
+      };\r
+      const hydrateNode = (node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized = false) => {\r
+          const isFragmentStart = isComment(node) && node.data === '[';\r
+          const onMismatch = () => handleMismatch(node, vnode, parentComponent, parentSuspense, slotScopeIds, isFragmentStart);\r
+          const { type, ref, shapeFlag } = vnode;\r
+          const domType = node.nodeType;\r
+          vnode.el = node;\r
+          let nextNode = null;\r
+          switch (type) {\r
+              case Text:\r
+                  if (domType !== 3 /* TEXT */) {\r
+                      nextNode = onMismatch();\r
+                  }\r
+                  else {\r
+                      if (node.data !== vnode.children) {\r
+                          hasMismatch = true;\r
+                          warn$1(`Hydration text mismatch:` +\r
+                                  `\n- Client: ${JSON.stringify(node.data)}` +\r
+                                  `\n- Server: ${JSON.stringify(vnode.children)}`);\r
+                          node.data = vnode.children;\r
+                      }\r
+                      nextNode = nextSibling(node);\r
+                  }\r
+                  break;\r
+              case Comment:\r
+                  if (domType !== 8 /* COMMENT */ || isFragmentStart) {\r
+                      nextNode = onMismatch();\r
+                  }\r
+                  else {\r
+                      nextNode = nextSibling(node);\r
+                  }\r
+                  break;\r
+              case Static:\r
+                  if (domType !== 1 /* ELEMENT */) {\r
+                      nextNode = onMismatch();\r
+                  }\r
+                  else {\r
+                      // determine anchor, adopt content\r
+                      nextNode = node;\r
+                      // if the static vnode has its content stripped during build,\r
+                      // adopt it from the server-rendered HTML.\r
+                      const needToAdoptContent = !vnode.children.length;\r
+                      for (let i = 0; i < vnode.staticCount; i++) {\r
+                          if (needToAdoptContent)\r
+                              vnode.children += nextNode.outerHTML;\r
+                          if (i === vnode.staticCount - 1) {\r
+                              vnode.anchor = nextNode;\r
+                          }\r
+                          nextNode = nextSibling(nextNode);\r
+                      }\r
+                      return nextNode;\r
+                  }\r
+                  break;\r
+              case Fragment:\r
+                  if (!isFragmentStart) {\r
+                      nextNode = onMismatch();\r
+                  }\r
+                  else {\r
+                      nextNode = hydrateFragment(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized);\r
+                  }\r
+                  break;\r
+              default:\r
+                  if (shapeFlag & 1 /* ELEMENT */) {\r
+                      if (domType !== 1 /* ELEMENT */ ||\r
+                          vnode.type.toLowerCase() !==\r
+                              node.tagName.toLowerCase()) {\r
+                          nextNode = onMismatch();\r
+                      }\r
+                      else {\r
+                          nextNode = hydrateElement(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized);\r
+                      }\r
+                  }\r
+                  else if (shapeFlag & 6 /* COMPONENT */) {\r
+                      // when setting up the render effect, if the initial vnode already\r
+                      // has .el set, the component will perform hydration instead of mount\r
+                      // on its sub-tree.\r
+                      vnode.slotScopeIds = slotScopeIds;\r
+                      const container = parentNode(node);\r
+                      mountComponent(vnode, container, null, parentComponent, parentSuspense, isSVGContainer(container), optimized);\r
+                      // component may be async, so in the case of fragments we cannot rely\r
+                      // on component's rendered output to determine the end of the fragment\r
+                      // instead, we do a lookahead to find the end anchor node.\r
+                      nextNode = isFragmentStart\r
+                          ? locateClosingAsyncAnchor(node)\r
+                          : nextSibling(node);\r
+                      // #3787\r
+                      // if component is async, it may get moved / unmounted before its\r
+                      // inner component is loaded, so we need to give it a placeholder\r
+                      // vnode that matches its adopted DOM.\r
+                      if (isAsyncWrapper(vnode)) {\r
+                          let subTree;\r
+                          if (isFragmentStart) {\r
+                              subTree = createVNode(Fragment);\r
+                              subTree.anchor = nextNode\r
+                                  ? nextNode.previousSibling\r
+                                  : container.lastChild;\r
+                          }\r
+                          else {\r
+                              subTree =\r
+                                  node.nodeType === 3 ? createTextVNode('') : createVNode('div');\r
+                          }\r
+                          subTree.el = node;\r
+                          vnode.component.subTree = subTree;\r
+                      }\r
+                  }\r
+                  else if (shapeFlag & 64 /* TELEPORT */) {\r
+                      if (domType !== 8 /* COMMENT */) {\r
+                          nextNode = onMismatch();\r
+                      }\r
+                      else {\r
+                          nextNode = vnode.type.hydrate(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized, rendererInternals, hydrateChildren);\r
+                      }\r
+                  }\r
+                  else if (shapeFlag & 128 /* SUSPENSE */) {\r
+                      nextNode = vnode.type.hydrate(node, vnode, parentComponent, parentSuspense, isSVGContainer(parentNode(node)), slotScopeIds, optimized, rendererInternals, hydrateNode);\r
+                  }\r
+                  else {\r
+                      warn$1('Invalid HostVNode type:', type, `(${typeof type})`);\r
+                  }\r
+          }\r
+          if (ref != null) {\r
+              setRef(ref, null, parentSuspense, vnode);\r
+          }\r
+          return nextNode;\r
+      };\r
+      const hydrateElement = (el, vnode, parentComponent, parentSuspense, slotScopeIds, optimized) => {\r
+          optimized = optimized || !!vnode.dynamicChildren;\r
+          const { type, props, patchFlag, shapeFlag, dirs } = vnode;\r
+          // #4006 for form elements with non-string v-model value bindings\r
+          // e.g. <option :value="obj">, <input type="checkbox" :true-value="1">\r
+          const forcePatchValue = (type === 'input' && dirs) || type === 'option';\r
+          // skip props & children if this is hoisted static nodes\r
+          if (forcePatchValue || patchFlag !== -1 /* HOISTED */) {\r
+              if (dirs) {\r
+                  invokeDirectiveHook(vnode, null, parentComponent, 'created');\r
+              }\r
+              // props\r
+              if (props) {\r
+                  if (forcePatchValue ||\r
+                      !optimized ||\r
+                      patchFlag & (16 /* FULL_PROPS */ | 32 /* HYDRATE_EVENTS */)) {\r
+                      for (const key in props) {\r
+                          if ((forcePatchValue && key.endsWith('value')) ||\r
+                              (isOn(key) && !isReservedProp(key))) {\r
+                              patchProp(el, key, null, props[key]);\r
+                          }\r
+                      }\r
+                  }\r
+                  else if (props.onClick) {\r
+                      // Fast path for click listeners (which is most often) to avoid\r
+                      // iterating through props.\r
+                      patchProp(el, 'onClick', null, props.onClick);\r
+                  }\r
+              }\r
+              // vnode / directive hooks\r
+              let vnodeHooks;\r
+              if ((vnodeHooks = props && props.onVnodeBeforeMount)) {\r
+                  invokeVNodeHook(vnodeHooks, parentComponent, vnode);\r
+              }\r
+              if (dirs) {\r
+                  invokeDirectiveHook(vnode, null, parentComponent, 'beforeMount');\r
+              }\r
+              if ((vnodeHooks = props && props.onVnodeMounted) || dirs) {\r
+                  queueEffectWithSuspense(() => {\r
+                      vnodeHooks && invokeVNodeHook(vnodeHooks, parentComponent, vnode);\r
+                      dirs && invokeDirectiveHook(vnode, null, parentComponent, 'mounted');\r
+                  }, parentSuspense);\r
+              }\r
+              // children\r
+              if (shapeFlag & 16 /* ARRAY_CHILDREN */ &&\r
+                  // skip if element has innerHTML / textContent\r
+                  !(props && (props.innerHTML || props.textContent))) {\r
+                  let next = hydrateChildren(el.firstChild, vnode, el, parentComponent, parentSuspense, slotScopeIds, optimized);\r
+                  let hasWarned = false;\r
+                  while (next) {\r
+                      hasMismatch = true;\r
+                      if (!hasWarned) {\r
+                          warn$1(`Hydration children mismatch in <${vnode.type}>: ` +\r
+                              `server rendered element contains more child nodes than client vdom.`);\r
+                          hasWarned = true;\r
+                      }\r
+                      // The SSRed DOM contains more nodes than it should. Remove them.\r
+                      const cur = next;\r
+                      next = next.nextSibling;\r
+                      remove(cur);\r
+                  }\r
+              }\r
+              else if (shapeFlag & 8 /* TEXT_CHILDREN */) {\r
+                  if (el.textContent !== vnode.children) {\r
+                      hasMismatch = true;\r
+                      warn$1(`Hydration text content mismatch in <${vnode.type}>:\n` +\r
+                              `- Client: ${el.textContent}\n` +\r
+                              `- Server: ${vnode.children}`);\r
+                      el.textContent = vnode.children;\r
+                  }\r
+              }\r
+          }\r
+          return el.nextSibling;\r
+      };\r
+      const hydrateChildren = (node, parentVNode, container, parentComponent, parentSuspense, slotScopeIds, optimized) => {\r
+          optimized = optimized || !!parentVNode.dynamicChildren;\r
+          const children = parentVNode.children;\r
+          const l = children.length;\r
+          let hasWarned = false;\r
+          for (let i = 0; i < l; i++) {\r
+              const vnode = optimized\r
+                  ? children[i]\r
+                  : (children[i] = normalizeVNode(children[i]));\r
+              if (node) {\r
+                  node = hydrateNode(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized);\r
+              }\r
+              else if (vnode.type === Text && !vnode.children) {\r
+                  continue;\r
+              }\r
+              else {\r
+                  hasMismatch = true;\r
+                  if (!hasWarned) {\r
+                      warn$1(`Hydration children mismatch in <${container.tagName.toLowerCase()}>: ` +\r
+                          `server rendered element contains fewer child nodes than client vdom.`);\r
+                      hasWarned = true;\r
+                  }\r
+                  // the SSRed DOM didn't contain enough nodes. Mount the missing ones.\r
+                  patch(null, vnode, container, null, parentComponent, parentSuspense, isSVGContainer(container), slotScopeIds);\r
+              }\r
+          }\r
+          return node;\r
+      };\r
+      const hydrateFragment = (node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized) => {\r
+          const { slotScopeIds: fragmentSlotScopeIds } = vnode;\r
+          if (fragmentSlotScopeIds) {\r
+              slotScopeIds = slotScopeIds\r
+                  ? slotScopeIds.concat(fragmentSlotScopeIds)\r
+                  : fragmentSlotScopeIds;\r
+          }\r
+          const container = parentNode(node);\r
+          const next = hydrateChildren(nextSibling(node), vnode, container, parentComponent, parentSuspense, slotScopeIds, optimized);\r
+          if (next && isComment(next) && next.data === ']') {\r
+              return nextSibling((vnode.anchor = next));\r
+          }\r
+          else {\r
+              // fragment didn't hydrate successfully, since we didn't get a end anchor\r
+              // back. This should have led to node/children mismatch warnings.\r
+              hasMismatch = true;\r
+              // since the anchor is missing, we need to create one and insert it\r
+              insert((vnode.anchor = createComment(`]`)), container, next);\r
+              return next;\r
+          }\r
+      };\r
+      const handleMismatch = (node, vnode, parentComponent, parentSuspense, slotScopeIds, isFragment) => {\r
+          hasMismatch = true;\r
+          warn$1(`Hydration node mismatch:\n- Client vnode:`, vnode.type, `\n- Server rendered DOM:`, node, node.nodeType === 3 /* TEXT */\r
+                  ? `(text)`\r
+                  : isComment(node) && node.data === '['\r
+                      ? `(start of fragment)`\r
+                      : ``);\r
+          vnode.el = null;\r
+          if (isFragment) {\r
+              // remove excessive fragment nodes\r
+              const end = locateClosingAsyncAnchor(node);\r
+              while (true) {\r
+                  const next = nextSibling(node);\r
+                  if (next && next !== end) {\r
+                      remove(next);\r
+                  }\r
+                  else {\r
+                      break;\r
+                  }\r
+              }\r
+          }\r
+          const next = nextSibling(node);\r
+          const container = parentNode(node);\r
+          remove(node);\r
+          patch(null, vnode, container, next, parentComponent, parentSuspense, isSVGContainer(container), slotScopeIds);\r
+          return next;\r
+      };\r
+      const locateClosingAsyncAnchor = (node) => {\r
+          let match = 0;\r
+          while (node) {\r
+              node = nextSibling(node);\r
+              if (node && isComment(node)) {\r
+                  if (node.data === '[')\r
+                      match++;\r
+                  if (node.data === ']') {\r
+                      if (match === 0) {\r
+                          return nextSibling(node);\r
+                      }\r
+                      else {\r
+                          match--;\r
+                      }\r
+                  }\r
+              }\r
+          }\r
+          return node;\r
+      };\r
+      return [hydrate, hydrateNode];\r
+  }
+
+  let supported;\r
+  let perf;\r
+  function startMeasure(instance, type) {\r
+      if (instance.appContext.config.performance && isSupported()) {\r
+          perf.mark(`vue-${type}-${instance.uid}`);\r
+      }\r
+      {\r
+          devtoolsPerfStart(instance, type, supported ? perf.now() : Date.now());\r
+      }\r
+  }\r
+  function endMeasure(instance, type) {\r
+      if (instance.appContext.config.performance && isSupported()) {\r
+          const startTag = `vue-${type}-${instance.uid}`;\r
+          const endTag = startTag + `:end`;\r
+          perf.mark(endTag);\r
+          perf.measure(`<${formatComponentName(instance, instance.type)}> ${type}`, startTag, endTag);\r
+          perf.clearMarks(startTag);\r
+          perf.clearMarks(endTag);\r
+      }\r
+      {\r
+          devtoolsPerfEnd(instance, type, supported ? perf.now() : Date.now());\r
+      }\r
+  }\r
+  function isSupported() {\r
+      if (supported !== undefined) {\r
+          return supported;\r
+      }\r
+      /* eslint-disable no-restricted-globals */\r
+      if (typeof window !== 'undefined' && window.performance) {\r
+          supported = true;\r
+          perf = window.performance;\r
+      }\r
+      else {\r
+          supported = false;\r
+      }\r
+      /* eslint-enable no-restricted-globals */\r
+      return supported;\r
+  }
+
+  const queuePostRenderEffect = queueEffectWithSuspense\r
+      ;\r
+  /**\r
+   * The createRenderer function accepts two generic arguments:\r
+   * HostNode and HostElement, corresponding to Node and Element types in the\r
+   * host environment. For example, for runtime-dom, HostNode would be the DOM\r
+   * `Node` interface and HostElement would be the DOM `Element` interface.\r
+   *\r
+   * Custom renderers can pass in the platform specific types like this:\r
+   *\r
+   * ``` js\r
+   * const { render, createApp } = createRenderer<Node, Element>({\r
+   *   patchProp,\r
+   *   ...nodeOps\r
+   * })\r
+   * ```\r
+   */\r
+  function createRenderer(options) {\r
+      return baseCreateRenderer(options);\r
+  }\r
+  // Separate API for creating hydration-enabled renderer.\r
+  // Hydration logic is only used when calling this function, making it\r
+  // tree-shakable.\r
+  function createHydrationRenderer(options) {\r
+      return baseCreateRenderer(options, createHydrationFunctions);\r
+  }\r
+  // implementation\r
+  function baseCreateRenderer(options, createHydrationFns) {\r
+      {\r
+          const target = getGlobalThis();\r
+          target.__VUE__ = true;\r
+          setDevtoolsHook(target.__VUE_DEVTOOLS_GLOBAL_HOOK__);\r
+      }\r
+      const { insert: hostInsert, remove: hostRemove, patchProp: hostPatchProp, createElement: hostCreateElement, createText: hostCreateText, createComment: hostCreateComment, setText: hostSetText, setElementText: hostSetElementText, parentNode: hostParentNode, nextSibling: hostNextSibling, setScopeId: hostSetScopeId = NOOP, cloneNode: hostCloneNode, insertStaticContent: hostInsertStaticContent } = options;\r
+      // Note: functions inside this closure should use `const xxx = () => {}`\r
+      // style in order to prevent being inlined by minifiers.\r
+      const patch = (n1, n2, container, anchor = null, parentComponent = null, parentSuspense = null, isSVG = false, slotScopeIds = null, optimized = isHmrUpdating ? false : !!n2.dynamicChildren) => {\r
+          if (n1 === n2) {\r
+              return;\r
+          }\r
+          // patching & not same type, unmount old tree\r
+          if (n1 && !isSameVNodeType(n1, n2)) {\r
+              anchor = getNextHostNode(n1);\r
+              unmount(n1, parentComponent, parentSuspense, true);\r
+              n1 = null;\r
+          }\r
+          if (n2.patchFlag === -2 /* BAIL */) {\r
+              optimized = false;\r
+              n2.dynamicChildren = null;\r
+          }\r
+          const { type, ref, shapeFlag } = n2;\r
+          switch (type) {\r
+              case Text:\r
+                  processText(n1, n2, container, anchor);\r
+                  break;\r
+              case Comment:\r
+                  processCommentNode(n1, n2, container, anchor);\r
+                  break;\r
+              case Static:\r
+                  if (n1 == null) {\r
+                      mountStaticNode(n2, container, anchor, isSVG);\r
+                  }\r
+                  else {\r
+                      patchStaticNode(n1, n2, container, isSVG);\r
+                  }\r
+                  break;\r
+              case Fragment:\r
+                  processFragment(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  break;\r
+              default:\r
+                  if (shapeFlag & 1 /* ELEMENT */) {\r
+                      processElement(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  }\r
+                  else if (shapeFlag & 6 /* COMPONENT */) {\r
+                      processComponent(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  }\r
+                  else if (shapeFlag & 64 /* TELEPORT */) {\r
+                      type.process(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, internals);\r
+                  }\r
+                  else if (shapeFlag & 128 /* SUSPENSE */) {\r
+                      type.process(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, internals);\r
+                  }\r
+                  else {\r
+                      warn$1('Invalid VNode type:', type, `(${typeof type})`);\r
+                  }\r
+          }\r
+          // set ref\r
+          if (ref != null && parentComponent) {\r
+              setRef(ref, n1 && n1.ref, parentSuspense, n2 || n1, !n2);\r
+          }\r
+      };\r
+      const processText = (n1, n2, container, anchor) => {\r
+          if (n1 == null) {\r
+              hostInsert((n2.el = hostCreateText(n2.children)), container, anchor);\r
+          }\r
+          else {\r
+              const el = (n2.el = n1.el);\r
+              if (n2.children !== n1.children) {\r
+                  hostSetText(el, n2.children);\r
+              }\r
+          }\r
+      };\r
+      const processCommentNode = (n1, n2, container, anchor) => {\r
+          if (n1 == null) {\r
+              hostInsert((n2.el = hostCreateComment(n2.children || '')), container, anchor);\r
+          }\r
+          else {\r
+              // there's no support for dynamic comments\r
+              n2.el = n1.el;\r
+          }\r
+      };\r
+      const mountStaticNode = (n2, container, anchor, isSVG) => {\r
+          [n2.el, n2.anchor] = hostInsertStaticContent(n2.children, container, anchor, isSVG);\r
+      };\r
+      /**\r
+       * Dev / HMR only\r
+       */\r
+      const patchStaticNode = (n1, n2, container, isSVG) => {\r
+          // static nodes are only patched during dev for HMR\r
+          if (n2.children !== n1.children) {\r
+              const anchor = hostNextSibling(n1.anchor);\r
+              // remove existing\r
+              removeStaticNode(n1);\r
+              [n2.el, n2.anchor] = hostInsertStaticContent(n2.children, container, anchor, isSVG);\r
+          }\r
+          else {\r
+              n2.el = n1.el;\r
+              n2.anchor = n1.anchor;\r
+          }\r
+      };\r
+      const moveStaticNode = ({ el, anchor }, container, nextSibling) => {\r
+          let next;\r
+          while (el && el !== anchor) {\r
+              next = hostNextSibling(el);\r
+              hostInsert(el, container, nextSibling);\r
+              el = next;\r
+          }\r
+          hostInsert(anchor, container, nextSibling);\r
+      };\r
+      const removeStaticNode = ({ el, anchor }) => {\r
+          let next;\r
+          while (el && el !== anchor) {\r
+              next = hostNextSibling(el);\r
+              hostRemove(el);\r
+              el = next;\r
+          }\r
+          hostRemove(anchor);\r
+      };\r
+      const processElement = (n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized) => {\r
+          isSVG = isSVG || n2.type === 'svg';\r
+          if (n1 == null) {\r
+              mountElement(n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+          }\r
+          else {\r
+              patchElement(n1, n2, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+          }\r
+      };\r
+      const mountElement = (vnode, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized) => {\r
+          let el;\r
+          let vnodeHook;\r
+          const { type, props, shapeFlag, transition, patchFlag, dirs } = vnode;\r
+          {\r
+              el = vnode.el = hostCreateElement(vnode.type, isSVG, props && props.is, props);\r
+              // mount children first, since some props may rely on child content\r
+              // being already rendered, e.g. `<select value>`\r
+              if (shapeFlag & 8 /* TEXT_CHILDREN */) {\r
+                  hostSetElementText(el, vnode.children);\r
+              }\r
+              else if (shapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+                  mountChildren(vnode.children, el, null, parentComponent, parentSuspense, isSVG && type !== 'foreignObject', slotScopeIds, optimized);\r
+              }\r
+              if (dirs) {\r
+                  invokeDirectiveHook(vnode, null, parentComponent, 'created');\r
+              }\r
+              // props\r
+              if (props) {\r
+                  for (const key in props) {\r
+                      if (key !== 'value' && !isReservedProp(key)) {\r
+                          hostPatchProp(el, key, null, props[key], isSVG, vnode.children, parentComponent, parentSuspense, unmountChildren);\r
+                      }\r
+                  }\r
+                  /**\r
+                   * Special case for setting value on DOM elements:\r
+                   * - it can be order-sensitive (e.g. should be set *after* min/max, #2325, #4024)\r
+                   * - it needs to be forced (#1471)\r
+                   * #2353 proposes adding another renderer option to configure this, but\r
+                   * the properties affects are so finite it is worth special casing it\r
+                   * here to reduce the complexity. (Special casing it also should not\r
+                   * affect non-DOM renderers)\r
+                   */\r
+                  if ('value' in props) {\r
+                      hostPatchProp(el, 'value', null, props.value);\r
+                  }\r
+                  if ((vnodeHook = props.onVnodeBeforeMount)) {\r
+                      invokeVNodeHook(vnodeHook, parentComponent, vnode);\r
+                  }\r
+              }\r
+              // scopeId\r
+              setScopeId(el, vnode, vnode.scopeId, slotScopeIds, parentComponent);\r
+          }\r
+          {\r
+              Object.defineProperty(el, '__vnode', {\r
+                  value: vnode,\r
+                  enumerable: false\r
+              });\r
+              Object.defineProperty(el, '__vueParentComponent', {\r
+                  value: parentComponent,\r
+                  enumerable: false\r
+              });\r
+          }\r
+          if (dirs) {\r
+              invokeDirectiveHook(vnode, null, parentComponent, 'beforeMount');\r
+          }\r
+          // #1583 For inside suspense + suspense not resolved case, enter hook should call when suspense resolved\r
+          // #1689 For inside suspense + suspense resolved case, just call it\r
+          const needCallTransitionHooks = (!parentSuspense || (parentSuspense && !parentSuspense.pendingBranch)) &&\r
+              transition &&\r
+              !transition.persisted;\r
+          if (needCallTransitionHooks) {\r
+              transition.beforeEnter(el);\r
+          }\r
+          hostInsert(el, container, anchor);\r
+          if ((vnodeHook = props && props.onVnodeMounted) ||\r
+              needCallTransitionHooks ||\r
+              dirs) {\r
+              queuePostRenderEffect(() => {\r
+                  vnodeHook && invokeVNodeHook(vnodeHook, parentComponent, vnode);\r
+                  needCallTransitionHooks && transition.enter(el);\r
+                  dirs && invokeDirectiveHook(vnode, null, parentComponent, 'mounted');\r
+              }, parentSuspense);\r
+          }\r
+      };\r
+      const setScopeId = (el, vnode, scopeId, slotScopeIds, parentComponent) => {\r
+          if (scopeId) {\r
+              hostSetScopeId(el, scopeId);\r
+          }\r
+          if (slotScopeIds) {\r
+              for (let i = 0; i < slotScopeIds.length; i++) {\r
+                  hostSetScopeId(el, slotScopeIds[i]);\r
+              }\r
+          }\r
+          if (parentComponent) {\r
+              let subTree = parentComponent.subTree;\r
+              if (subTree.patchFlag > 0 &&\r
+                  subTree.patchFlag & 2048 /* DEV_ROOT_FRAGMENT */) {\r
+                  subTree =\r
+                      filterSingleRoot(subTree.children) || subTree;\r
+              }\r
+              if (vnode === subTree) {\r
+                  const parentVNode = parentComponent.vnode;\r
+                  setScopeId(el, parentVNode, parentVNode.scopeId, parentVNode.slotScopeIds, parentComponent.parent);\r
+              }\r
+          }\r
+      };\r
+      const mountChildren = (children, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, start = 0) => {\r
+          for (let i = start; i < children.length; i++) {\r
+              const child = (children[i] = optimized\r
+                  ? cloneIfMounted(children[i])\r
+                  : normalizeVNode(children[i]));\r
+              patch(null, child, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+          }\r
+      };\r
+      const patchElement = (n1, n2, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized) => {\r
+          const el = (n2.el = n1.el);\r
+          let { patchFlag, dynamicChildren, dirs } = n2;\r
+          // #1426 take the old vnode's patch flag into account since user may clone a\r
+          // compiler-generated vnode, which de-opts to FULL_PROPS\r
+          patchFlag |= n1.patchFlag & 16 /* FULL_PROPS */;\r
+          const oldProps = n1.props || EMPTY_OBJ;\r
+          const newProps = n2.props || EMPTY_OBJ;\r
+          let vnodeHook;\r
+          if ((vnodeHook = newProps.onVnodeBeforeUpdate)) {\r
+              invokeVNodeHook(vnodeHook, parentComponent, n2, n1);\r
+          }\r
+          if (dirs) {\r
+              invokeDirectiveHook(n2, n1, parentComponent, 'beforeUpdate');\r
+          }\r
+          if (isHmrUpdating) {\r
+              // HMR updated, force full diff\r
+              patchFlag = 0;\r
+              optimized = false;\r
+              dynamicChildren = null;\r
+          }\r
+          const areChildrenSVG = isSVG && n2.type !== 'foreignObject';\r
+          if (dynamicChildren) {\r
+              patchBlockChildren(n1.dynamicChildren, dynamicChildren, el, parentComponent, parentSuspense, areChildrenSVG, slotScopeIds);\r
+              if (parentComponent && parentComponent.type.__hmrId) {\r
+                  traverseStaticChildren(n1, n2);\r
+              }\r
+          }\r
+          else if (!optimized) {\r
+              // full diff\r
+              patchChildren(n1, n2, el, null, parentComponent, parentSuspense, areChildrenSVG, slotScopeIds, false);\r
+          }\r
+          if (patchFlag > 0) {\r
+              // the presence of a patchFlag means this element's render code was\r
+              // generated by the compiler and can take the fast path.\r
+              // in this path old node and new node are guaranteed to have the same shape\r
+              // (i.e. at the exact same position in the source template)\r
+              if (patchFlag & 16 /* FULL_PROPS */) {\r
+                  // element props contain dynamic keys, full diff needed\r
+                  patchProps(el, n2, oldProps, newProps, parentComponent, parentSuspense, isSVG);\r
+              }\r
+              else {\r
+                  // class\r
+                  // this flag is matched when the element has dynamic class bindings.\r
+                  if (patchFlag & 2 /* CLASS */) {\r
+                      if (oldProps.class !== newProps.class) {\r
+                          hostPatchProp(el, 'class', null, newProps.class, isSVG);\r
+                      }\r
+                  }\r
+                  // style\r
+                  // this flag is matched when the element has dynamic style bindings\r
+                  if (patchFlag & 4 /* STYLE */) {\r
+                      hostPatchProp(el, 'style', oldProps.style, newProps.style, isSVG);\r
+                  }\r
+                  // props\r
+                  // This flag is matched when the element has dynamic prop/attr bindings\r
+                  // other than class and style. The keys of dynamic prop/attrs are saved for\r
+                  // faster iteration.\r
+                  // Note dynamic keys like :[foo]="bar" will cause this optimization to\r
+                  // bail out and go through a full diff because we need to unset the old key\r
+                  if (patchFlag & 8 /* PROPS */) {\r
+                      // if the flag is present then dynamicProps must be non-null\r
+                      const propsToUpdate = n2.dynamicProps;\r
+                      for (let i = 0; i < propsToUpdate.length; i++) {\r
+                          const key = propsToUpdate[i];\r
+                          const prev = oldProps[key];\r
+                          const next = newProps[key];\r
+                          // #1471 force patch value\r
+                          if (next !== prev || key === 'value') {\r
+                              hostPatchProp(el, key, prev, next, isSVG, n1.children, parentComponent, parentSuspense, unmountChildren);\r
+                          }\r
+                      }\r
+                  }\r
+              }\r
+              // text\r
+              // This flag is matched when the element has only dynamic text children.\r
+              if (patchFlag & 1 /* TEXT */) {\r
+                  if (n1.children !== n2.children) {\r
+                      hostSetElementText(el, n2.children);\r
+                  }\r
+              }\r
+          }\r
+          else if (!optimized && dynamicChildren == null) {\r
+              // unoptimized, full diff\r
+              patchProps(el, n2, oldProps, newProps, parentComponent, parentSuspense, isSVG);\r
+          }\r
+          if ((vnodeHook = newProps.onVnodeUpdated) || dirs) {\r
+              queuePostRenderEffect(() => {\r
+                  vnodeHook && invokeVNodeHook(vnodeHook, parentComponent, n2, n1);\r
+                  dirs && invokeDirectiveHook(n2, n1, parentComponent, 'updated');\r
+              }, parentSuspense);\r
+          }\r
+      };\r
+      // The fast path for blocks.\r
+      const patchBlockChildren = (oldChildren, newChildren, fallbackContainer, parentComponent, parentSuspense, isSVG, slotScopeIds) => {\r
+          for (let i = 0; i < newChildren.length; i++) {\r
+              const oldVNode = oldChildren[i];\r
+              const newVNode = newChildren[i];\r
+              // Determine the container (parent element) for the patch.\r
+              const container = \r
+              // oldVNode may be an errored async setup() component inside Suspense\r
+              // which will not have a mounted element\r
+              oldVNode.el &&\r
+                  // - In the case of a Fragment, we need to provide the actual parent\r
+                  // of the Fragment itself so it can move its children.\r
+                  (oldVNode.type === Fragment ||\r
+                      // - In the case of different nodes, there is going to be a replacement\r
+                      // which also requires the correct parent container\r
+                      !isSameVNodeType(oldVNode, newVNode) ||\r
+                      // - In the case of a component, it could contain anything.\r
+                      oldVNode.shapeFlag & (6 /* COMPONENT */ | 64 /* TELEPORT */))\r
+                  ? hostParentNode(oldVNode.el)\r
+                  : // In other cases, the parent container is not actually used so we\r
+                      // just pass the block element here to avoid a DOM parentNode call.\r
+                      fallbackContainer;\r
+              patch(oldVNode, newVNode, container, null, parentComponent, parentSuspense, isSVG, slotScopeIds, true);\r
+          }\r
+      };\r
+      const patchProps = (el, vnode, oldProps, newProps, parentComponent, parentSuspense, isSVG) => {\r
+          if (oldProps !== newProps) {\r
+              for (const key in newProps) {\r
+                  // empty string is not valid prop\r
+                  if (isReservedProp(key))\r
+                      continue;\r
+                  const next = newProps[key];\r
+                  const prev = oldProps[key];\r
+                  // defer patching value\r
+                  if (next !== prev && key !== 'value') {\r
+                      hostPatchProp(el, key, prev, next, isSVG, vnode.children, parentComponent, parentSuspense, unmountChildren);\r
+                  }\r
+              }\r
+              if (oldProps !== EMPTY_OBJ) {\r
+                  for (const key in oldProps) {\r
+                      if (!isReservedProp(key) && !(key in newProps)) {\r
+                          hostPatchProp(el, key, oldProps[key], null, isSVG, vnode.children, parentComponent, parentSuspense, unmountChildren);\r
+                      }\r
+                  }\r
+              }\r
+              if ('value' in newProps) {\r
+                  hostPatchProp(el, 'value', oldProps.value, newProps.value);\r
+              }\r
+          }\r
+      };\r
+      const processFragment = (n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized) => {\r
+          const fragmentStartAnchor = (n2.el = n1 ? n1.el : hostCreateText(''));\r
+          const fragmentEndAnchor = (n2.anchor = n1 ? n1.anchor : hostCreateText(''));\r
+          let { patchFlag, dynamicChildren, slotScopeIds: fragmentSlotScopeIds } = n2;\r
+          if (isHmrUpdating) {\r
+              // HMR updated, force full diff\r
+              patchFlag = 0;\r
+              optimized = false;\r
+              dynamicChildren = null;\r
+          }\r
+          // check if this is a slot fragment with :slotted scope ids\r
+          if (fragmentSlotScopeIds) {\r
+              slotScopeIds = slotScopeIds\r
+                  ? slotScopeIds.concat(fragmentSlotScopeIds)\r
+                  : fragmentSlotScopeIds;\r
+          }\r
+          if (n1 == null) {\r
+              hostInsert(fragmentStartAnchor, container, anchor);\r
+              hostInsert(fragmentEndAnchor, container, anchor);\r
+              // a fragment can only have array children\r
+              // since they are either generated by the compiler, or implicitly created\r
+              // from arrays.\r
+              mountChildren(n2.children, container, fragmentEndAnchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+          }\r
+          else {\r
+              if (patchFlag > 0 &&\r
+                  patchFlag & 64 /* STABLE_FRAGMENT */ &&\r
+                  dynamicChildren &&\r
+                  // #2715 the previous fragment could've been a BAILed one as a result\r
+                  // of renderSlot() with no valid children\r
+                  n1.dynamicChildren) {\r
+                  // a stable fragment (template root or <template v-for>) doesn't need to\r
+                  // patch children order, but it may contain dynamicChildren.\r
+                  patchBlockChildren(n1.dynamicChildren, dynamicChildren, container, parentComponent, parentSuspense, isSVG, slotScopeIds);\r
+                  if (parentComponent && parentComponent.type.__hmrId) {\r
+                      traverseStaticChildren(n1, n2);\r
+                  }\r
+                  else if (\r
+                  // #2080 if the stable fragment has a key, it's a <template v-for> that may\r
+                  //  get moved around. Make sure all root level vnodes inherit el.\r
+                  // #2134 or if it's a component root, it may also get moved around\r
+                  // as the component is being moved.\r
+                  n2.key != null ||\r
+                      (parentComponent && n2 === parentComponent.subTree)) {\r
+                      traverseStaticChildren(n1, n2, true /* shallow */);\r
+                  }\r
+              }\r
+              else {\r
+                  // keyed / unkeyed, or manual fragments.\r
+                  // for keyed & unkeyed, since they are compiler generated from v-for,\r
+                  // each child is guaranteed to be a block so the fragment will never\r
+                  // have dynamicChildren.\r
+                  patchChildren(n1, n2, container, fragmentEndAnchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+              }\r
+          }\r
+      };\r
+      const processComponent = (n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized) => {\r
+          n2.slotScopeIds = slotScopeIds;\r
+          if (n1 == null) {\r
+              if (n2.shapeFlag & 512 /* COMPONENT_KEPT_ALIVE */) {\r
+                  parentComponent.ctx.activate(n2, container, anchor, isSVG, optimized);\r
+              }\r
+              else {\r
+                  mountComponent(n2, container, anchor, parentComponent, parentSuspense, isSVG, optimized);\r
+              }\r
+          }\r
+          else {\r
+              updateComponent(n1, n2, optimized);\r
+          }\r
+      };\r
+      const mountComponent = (initialVNode, container, anchor, parentComponent, parentSuspense, isSVG, optimized) => {\r
+          const instance = (initialVNode.component = createComponentInstance(initialVNode, parentComponent, parentSuspense));\r
+          if (instance.type.__hmrId) {\r
+              registerHMR(instance);\r
+          }\r
+          {\r
+              pushWarningContext(initialVNode);\r
+              startMeasure(instance, `mount`);\r
+          }\r
+          // inject renderer internals for keepAlive\r
+          if (isKeepAlive(initialVNode)) {\r
+              instance.ctx.renderer = internals;\r
+          }\r
+          // resolve props and slots for setup context\r
+          {\r
+              {\r
+                  startMeasure(instance, `init`);\r
+              }\r
+              setupComponent(instance);\r
+              {\r
+                  endMeasure(instance, `init`);\r
+              }\r
+          }\r
+          // setup() is async. This component relies on async logic to be resolved\r
+          // before proceeding\r
+          if (instance.asyncDep) {\r
+              parentSuspense && parentSuspense.registerDep(instance, setupRenderEffect);\r
+              // Give it a placeholder if this is not hydration\r
+              // TODO handle self-defined fallback\r
+              if (!initialVNode.el) {\r
+                  const placeholder = (instance.subTree = createVNode(Comment));\r
+                  processCommentNode(null, placeholder, container, anchor);\r
+              }\r
+              return;\r
+          }\r
+          setupRenderEffect(instance, initialVNode, container, anchor, parentSuspense, isSVG, optimized);\r
+          {\r
+              popWarningContext();\r
+              endMeasure(instance, `mount`);\r
+          }\r
+      };\r
+      const updateComponent = (n1, n2, optimized) => {\r
+          const instance = (n2.component = n1.component);\r
+          if (shouldUpdateComponent(n1, n2, optimized)) {\r
+              if (instance.asyncDep &&\r
+                  !instance.asyncResolved) {\r
+                  // async & still pending - just update props and slots\r
+                  // since the component's reactive effect for render isn't set-up yet\r
+                  {\r
+                      pushWarningContext(n2);\r
+                  }\r
+                  updateComponentPreRender(instance, n2, optimized);\r
+                  {\r
+                      popWarningContext();\r
+                  }\r
+                  return;\r
+              }\r
+              else {\r
+                  // normal update\r
+                  instance.next = n2;\r
+                  // in case the child component is also queued, remove it to avoid\r
+                  // double updating the same child component in the same flush.\r
+                  invalidateJob(instance.update);\r
+                  // instance.update is the reactive effect.\r
+                  instance.update();\r
+              }\r
+          }\r
+          else {\r
+              // no update needed. just copy over properties\r
+              n2.component = n1.component;\r
+              n2.el = n1.el;\r
+              instance.vnode = n2;\r
+          }\r
+      };\r
+      const setupRenderEffect = (instance, initialVNode, container, anchor, parentSuspense, isSVG, optimized) => {\r
+          const componentUpdateFn = () => {\r
+              if (!instance.isMounted) {\r
+                  let vnodeHook;\r
+                  const { el, props } = initialVNode;\r
+                  const { bm, m, parent } = instance;\r
+                  const isAsyncWrapperVNode = isAsyncWrapper(initialVNode);\r
+                  effect.allowRecurse = false;\r
+                  // beforeMount hook\r
+                  if (bm) {\r
+                      invokeArrayFns(bm);\r
+                  }\r
+                  // onVnodeBeforeMount\r
+                  if (!isAsyncWrapperVNode &&\r
+                      (vnodeHook = props && props.onVnodeBeforeMount)) {\r
+                      invokeVNodeHook(vnodeHook, parent, initialVNode);\r
+                  }\r
+                  effect.allowRecurse = true;\r
+                  if (el && hydrateNode) {\r
+                      // vnode has adopted host node - perform hydration instead of mount.\r
+                      const hydrateSubTree = () => {\r
+                          {\r
+                              startMeasure(instance, `render`);\r
+                          }\r
+                          instance.subTree = renderComponentRoot(instance);\r
+                          {\r
+                              endMeasure(instance, `render`);\r
+                          }\r
+                          {\r
+                              startMeasure(instance, `hydrate`);\r
+                          }\r
+                          hydrateNode(el, instance.subTree, instance, parentSuspense, null);\r
+                          {\r
+                              endMeasure(instance, `hydrate`);\r
+                          }\r
+                      };\r
+                      if (isAsyncWrapperVNode) {\r
+                          initialVNode.type.__asyncLoader().then(\r
+                          // note: we are moving the render call into an async callback,\r
+                          // which means it won't track dependencies - but it's ok because\r
+                          // a server-rendered async wrapper is already in resolved state\r
+                          // and it will never need to change.\r
+                          () => !instance.isUnmounted && hydrateSubTree());\r
+                      }\r
+                      else {\r
+                          hydrateSubTree();\r
+                      }\r
+                  }\r
+                  else {\r
+                      {\r
+                          startMeasure(instance, `render`);\r
+                      }\r
+                      const subTree = (instance.subTree = renderComponentRoot(instance));\r
+                      {\r
+                          endMeasure(instance, `render`);\r
+                      }\r
+                      {\r
+                          startMeasure(instance, `patch`);\r
+                      }\r
+                      patch(null, subTree, container, anchor, instance, parentSuspense, isSVG);\r
+                      {\r
+                          endMeasure(instance, `patch`);\r
+                      }\r
+                      initialVNode.el = subTree.el;\r
+                  }\r
+                  // mounted hook\r
+                  if (m) {\r
+                      queuePostRenderEffect(m, parentSuspense);\r
+                  }\r
+                  // onVnodeMounted\r
+                  if (!isAsyncWrapperVNode &&\r
+                      (vnodeHook = props && props.onVnodeMounted)) {\r
+                      const scopedInitialVNode = initialVNode;\r
+                      queuePostRenderEffect(() => invokeVNodeHook(vnodeHook, parent, scopedInitialVNode), parentSuspense);\r
+                  }\r
+                  // activated hook for keep-alive roots.\r
+                  // #1742 activated hook must be accessed after first render\r
+                  // since the hook may be injected by a child keep-alive\r
+                  if (initialVNode.shapeFlag & 256 /* COMPONENT_SHOULD_KEEP_ALIVE */) {\r
+                      instance.a && queuePostRenderEffect(instance.a, parentSuspense);\r
+                  }\r
+                  instance.isMounted = true;\r
+                  {\r
+                      devtoolsComponentAdded(instance);\r
+                  }\r
+                  // #2458: deference mount-only object parameters to prevent memleaks\r
+                  initialVNode = container = anchor = null;\r
+              }\r
+              else {\r
+                  // updateComponent\r
+                  // This is triggered by mutation of component's own state (next: null)\r
+                  // OR parent calling processComponent (next: VNode)\r
+                  let { next, bu, u, parent, vnode } = instance;\r
+                  let originNext = next;\r
+                  let vnodeHook;\r
+                  {\r
+                      pushWarningContext(next || instance.vnode);\r
+                  }\r
+                  // Disallow component effect recursion during pre-lifecycle hooks.\r
+                  effect.allowRecurse = false;\r
+                  if (next) {\r
+                      next.el = vnode.el;\r
+                      updateComponentPreRender(instance, next, optimized);\r
+                  }\r
+                  else {\r
+                      next = vnode;\r
+                  }\r
+                  // beforeUpdate hook\r
+                  if (bu) {\r
+                      invokeArrayFns(bu);\r
+                  }\r
+                  // onVnodeBeforeUpdate\r
+                  if ((vnodeHook = next.props && next.props.onVnodeBeforeUpdate)) {\r
+                      invokeVNodeHook(vnodeHook, parent, next, vnode);\r
+                  }\r
+                  effect.allowRecurse = true;\r
+                  // render\r
+                  {\r
+                      startMeasure(instance, `render`);\r
+                  }\r
+                  const nextTree = renderComponentRoot(instance);\r
+                  {\r
+                      endMeasure(instance, `render`);\r
+                  }\r
+                  const prevTree = instance.subTree;\r
+                  instance.subTree = nextTree;\r
+                  {\r
+                      startMeasure(instance, `patch`);\r
+                  }\r
+                  patch(prevTree, nextTree, \r
+                  // parent may have changed if it's in a teleport\r
+                  hostParentNode(prevTree.el), \r
+                  // anchor may have changed if it's in a fragment\r
+                  getNextHostNode(prevTree), instance, parentSuspense, isSVG);\r
+                  {\r
+                      endMeasure(instance, `patch`);\r
+                  }\r
+                  next.el = nextTree.el;\r
+                  if (originNext === null) {\r
+                      // self-triggered update. In case of HOC, update parent component\r
+                      // vnode el. HOC is indicated by parent instance's subTree pointing\r
+                      // to child component's vnode\r
+                      updateHOCHostEl(instance, nextTree.el);\r
+                  }\r
+                  // updated hook\r
+                  if (u) {\r
+                      queuePostRenderEffect(u, parentSuspense);\r
+                  }\r
+                  // onVnodeUpdated\r
+                  if ((vnodeHook = next.props && next.props.onVnodeUpdated)) {\r
+                      queuePostRenderEffect(() => invokeVNodeHook(vnodeHook, parent, next, vnode), parentSuspense);\r
+                  }\r
+                  {\r
+                      devtoolsComponentUpdated(instance);\r
+                  }\r
+                  {\r
+                      popWarningContext();\r
+                  }\r
+              }\r
+          };\r
+          // create reactive effect for rendering\r
+          const effect = new ReactiveEffect(componentUpdateFn, () => queueJob(instance.update), instance.scope // track it in component's effect scope\r
+          );\r
+          const update = (instance.update = effect.run.bind(effect));\r
+          update.id = instance.uid;\r
+          // allowRecurse\r
+          // #1801, #2043 component render effects should allow recursive updates\r
+          effect.allowRecurse = update.allowRecurse = true;\r
+          {\r
+              effect.onTrack = instance.rtc\r
+                  ? e => invokeArrayFns(instance.rtc, e)\r
+                  : void 0;\r
+              effect.onTrigger = instance.rtg\r
+                  ? e => invokeArrayFns(instance.rtg, e)\r
+                  : void 0;\r
+              // @ts-ignore (for scheduler)\r
+              update.ownerInstance = instance;\r
+          }\r
+          update();\r
+      };\r
+      const updateComponentPreRender = (instance, nextVNode, optimized) => {\r
+          nextVNode.component = instance;\r
+          const prevProps = instance.vnode.props;\r
+          instance.vnode = nextVNode;\r
+          instance.next = null;\r
+          updateProps(instance, nextVNode.props, prevProps, optimized);\r
+          updateSlots(instance, nextVNode.children, optimized);\r
+          pauseTracking();\r
+          // props update may have triggered pre-flush watchers.\r
+          // flush them before the render update.\r
+          flushPreFlushCbs(undefined, instance.update);\r
+          resetTracking();\r
+      };\r
+      const patchChildren = (n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized = false) => {\r
+          const c1 = n1 && n1.children;\r
+          const prevShapeFlag = n1 ? n1.shapeFlag : 0;\r
+          const c2 = n2.children;\r
+          const { patchFlag, shapeFlag } = n2;\r
+          // fast path\r
+          if (patchFlag > 0) {\r
+              if (patchFlag & 128 /* KEYED_FRAGMENT */) {\r
+                  // this could be either fully-keyed or mixed (some keyed some not)\r
+                  // presence of patchFlag means children are guaranteed to be arrays\r
+                  patchKeyedChildren(c1, c2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  return;\r
+              }\r
+              else if (patchFlag & 256 /* UNKEYED_FRAGMENT */) {\r
+                  // unkeyed\r
+                  patchUnkeyedChildren(c1, c2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  return;\r
+              }\r
+          }\r
+          // children has 3 possibilities: text, array or no children.\r
+          if (shapeFlag & 8 /* TEXT_CHILDREN */) {\r
+              // text children fast path\r
+              if (prevShapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+                  unmountChildren(c1, parentComponent, parentSuspense);\r
+              }\r
+              if (c2 !== c1) {\r
+                  hostSetElementText(container, c2);\r
+              }\r
+          }\r
+          else {\r
+              if (prevShapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+                  // prev children was array\r
+                  if (shapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+                      // two arrays, cannot assume anything, do full diff\r
+                      patchKeyedChildren(c1, c2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  }\r
+                  else {\r
+                      // no new children, just unmount old\r
+                      unmountChildren(c1, parentComponent, parentSuspense, true);\r
+                  }\r
+              }\r
+              else {\r
+                  // prev children was text OR null\r
+                  // new children is array OR null\r
+                  if (prevShapeFlag & 8 /* TEXT_CHILDREN */) {\r
+                      hostSetElementText(container, '');\r
+                  }\r
+                  // mount new if array\r
+                  if (shapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+                      mountChildren(c2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  }\r
+              }\r
+          }\r
+      };\r
+      const patchUnkeyedChildren = (c1, c2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized) => {\r
+          c1 = c1 || EMPTY_ARR;\r
+          c2 = c2 || EMPTY_ARR;\r
+          const oldLength = c1.length;\r
+          const newLength = c2.length;\r
+          const commonLength = Math.min(oldLength, newLength);\r
+          let i;\r
+          for (i = 0; i < commonLength; i++) {\r
+              const nextChild = (c2[i] = optimized\r
+                  ? cloneIfMounted(c2[i])\r
+                  : normalizeVNode(c2[i]));\r
+              patch(c1[i], nextChild, container, null, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+          }\r
+          if (oldLength > newLength) {\r
+              // remove old\r
+              unmountChildren(c1, parentComponent, parentSuspense, true, false, commonLength);\r
+          }\r
+          else {\r
+              // mount new\r
+              mountChildren(c2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, commonLength);\r
+          }\r
+      };\r
+      // can be all-keyed or mixed\r
+      const patchKeyedChildren = (c1, c2, container, parentAnchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized) => {\r
+          let i = 0;\r
+          const l2 = c2.length;\r
+          let e1 = c1.length - 1; // prev ending index\r
+          let e2 = l2 - 1; // next ending index\r
+          // 1. sync from start\r
+          // (a b) c\r
+          // (a b) d e\r
+          while (i <= e1 && i <= e2) {\r
+              const n1 = c1[i];\r
+              const n2 = (c2[i] = optimized\r
+                  ? cloneIfMounted(c2[i])\r
+                  : normalizeVNode(c2[i]));\r
+              if (isSameVNodeType(n1, n2)) {\r
+                  patch(n1, n2, container, null, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+              }\r
+              else {\r
+                  break;\r
+              }\r
+              i++;\r
+          }\r
+          // 2. sync from end\r
+          // a (b c)\r
+          // d e (b c)\r
+          while (i <= e1 && i <= e2) {\r
+              const n1 = c1[e1];\r
+              const n2 = (c2[e2] = optimized\r
+                  ? cloneIfMounted(c2[e2])\r
+                  : normalizeVNode(c2[e2]));\r
+              if (isSameVNodeType(n1, n2)) {\r
+                  patch(n1, n2, container, null, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+              }\r
+              else {\r
+                  break;\r
+              }\r
+              e1--;\r
+              e2--;\r
+          }\r
+          // 3. common sequence + mount\r
+          // (a b)\r
+          // (a b) c\r
+          // i = 2, e1 = 1, e2 = 2\r
+          // (a b)\r
+          // c (a b)\r
+          // i = 0, e1 = -1, e2 = 0\r
+          if (i > e1) {\r
+              if (i <= e2) {\r
+                  const nextPos = e2 + 1;\r
+                  const anchor = nextPos < l2 ? c2[nextPos].el : parentAnchor;\r
+                  while (i <= e2) {\r
+                      patch(null, (c2[i] = optimized\r
+                          ? cloneIfMounted(c2[i])\r
+                          : normalizeVNode(c2[i])), container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                      i++;\r
+                  }\r
+              }\r
+          }\r
+          // 4. common sequence + unmount\r
+          // (a b) c\r
+          // (a b)\r
+          // i = 2, e1 = 2, e2 = 1\r
+          // a (b c)\r
+          // (b c)\r
+          // i = 0, e1 = 0, e2 = -1\r
+          else if (i > e2) {\r
+              while (i <= e1) {\r
+                  unmount(c1[i], parentComponent, parentSuspense, true);\r
+                  i++;\r
+              }\r
+          }\r
+          // 5. unknown sequence\r
+          // [i ... e1 + 1]: a b [c d e] f g\r
+          // [i ... e2 + 1]: a b [e d c h] f g\r
+          // i = 2, e1 = 4, e2 = 5\r
+          else {\r
+              const s1 = i; // prev starting index\r
+              const s2 = i; // next starting index\r
+              // 5.1 build key:index map for newChildren\r
+              const keyToNewIndexMap = new Map();\r
+              for (i = s2; i <= e2; i++) {\r
+                  const nextChild = (c2[i] = optimized\r
+                      ? cloneIfMounted(c2[i])\r
+                      : normalizeVNode(c2[i]));\r
+                  if (nextChild.key != null) {\r
+                      if (keyToNewIndexMap.has(nextChild.key)) {\r
+                          warn$1(`Duplicate keys found during update:`, JSON.stringify(nextChild.key), `Make sure keys are unique.`);\r
+                      }\r
+                      keyToNewIndexMap.set(nextChild.key, i);\r
+                  }\r
+              }\r
+              // 5.2 loop through old children left to be patched and try to patch\r
+              // matching nodes & remove nodes that are no longer present\r
+              let j;\r
+              let patched = 0;\r
+              const toBePatched = e2 - s2 + 1;\r
+              let moved = false;\r
+              // used to track whether any node has moved\r
+              let maxNewIndexSoFar = 0;\r
+              // works as Map<newIndex, oldIndex>\r
+              // Note that oldIndex is offset by +1\r
+              // and oldIndex = 0 is a special value indicating the new node has\r
+              // no corresponding old node.\r
+              // used for determining longest stable subsequence\r
+              const newIndexToOldIndexMap = new Array(toBePatched);\r
+              for (i = 0; i < toBePatched; i++)\r
+                  newIndexToOldIndexMap[i] = 0;\r
+              for (i = s1; i <= e1; i++) {\r
+                  const prevChild = c1[i];\r
+                  if (patched >= toBePatched) {\r
+                      // all new children have been patched so this can only be a removal\r
+                      unmount(prevChild, parentComponent, parentSuspense, true);\r
+                      continue;\r
+                  }\r
+                  let newIndex;\r
+                  if (prevChild.key != null) {\r
+                      newIndex = keyToNewIndexMap.get(prevChild.key);\r
+                  }\r
+                  else {\r
+                      // key-less node, try to locate a key-less node of the same type\r
+                      for (j = s2; j <= e2; j++) {\r
+                          if (newIndexToOldIndexMap[j - s2] === 0 &&\r
+                              isSameVNodeType(prevChild, c2[j])) {\r
+                              newIndex = j;\r
+                              break;\r
+                          }\r
+                      }\r
+                  }\r
+                  if (newIndex === undefined) {\r
+                      unmount(prevChild, parentComponent, parentSuspense, true);\r
+                  }\r
+                  else {\r
+                      newIndexToOldIndexMap[newIndex - s2] = i + 1;\r
+                      if (newIndex >= maxNewIndexSoFar) {\r
+                          maxNewIndexSoFar = newIndex;\r
+                      }\r
+                      else {\r
+                          moved = true;\r
+                      }\r
+                      patch(prevChild, c2[newIndex], container, null, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                      patched++;\r
+                  }\r
+              }\r
+              // 5.3 move and mount\r
+              // generate longest stable subsequence only when nodes have moved\r
+              const increasingNewIndexSequence = moved\r
+                  ? getSequence(newIndexToOldIndexMap)\r
+                  : EMPTY_ARR;\r
+              j = increasingNewIndexSequence.length - 1;\r
+              // looping backwards so that we can use last patched node as anchor\r
+              for (i = toBePatched - 1; i >= 0; i--) {\r
+                  const nextIndex = s2 + i;\r
+                  const nextChild = c2[nextIndex];\r
+                  const anchor = nextIndex + 1 < l2 ? c2[nextIndex + 1].el : parentAnchor;\r
+                  if (newIndexToOldIndexMap[i] === 0) {\r
+                      // mount new\r
+                      patch(null, nextChild, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  }\r
+                  else if (moved) {\r
+                      // move if:\r
+                      // There is no stable subsequence (e.g. a reverse)\r
+                      // OR current node is not among the stable sequence\r
+                      if (j < 0 || i !== increasingNewIndexSequence[j]) {\r
+                          move(nextChild, container, anchor, 2 /* REORDER */);\r
+                      }\r
+                      else {\r
+                          j--;\r
+                      }\r
+                  }\r
+              }\r
+          }\r
+      };\r
+      const move = (vnode, container, anchor, moveType, parentSuspense = null) => {\r
+          const { el, type, transition, children, shapeFlag } = vnode;\r
+          if (shapeFlag & 6 /* COMPONENT */) {\r
+              move(vnode.component.subTree, container, anchor, moveType);\r
+              return;\r
+          }\r
+          if (shapeFlag & 128 /* SUSPENSE */) {\r
+              vnode.suspense.move(container, anchor, moveType);\r
+              return;\r
+          }\r
+          if (shapeFlag & 64 /* TELEPORT */) {\r
+              type.move(vnode, container, anchor, internals);\r
+              return;\r
+          }\r
+          if (type === Fragment) {\r
+              hostInsert(el, container, anchor);\r
+              for (let i = 0; i < children.length; i++) {\r
+                  move(children[i], container, anchor, moveType);\r
+              }\r
+              hostInsert(vnode.anchor, container, anchor);\r
+              return;\r
+          }\r
+          if (type === Static) {\r
+              moveStaticNode(vnode, container, anchor);\r
+              return;\r
+          }\r
+          // single nodes\r
+          const needTransition = moveType !== 2 /* REORDER */ &&\r
+              shapeFlag & 1 /* ELEMENT */ &&\r
+              transition;\r
+          if (needTransition) {\r
+              if (moveType === 0 /* ENTER */) {\r
+                  transition.beforeEnter(el);\r
+                  hostInsert(el, container, anchor);\r
+                  queuePostRenderEffect(() => transition.enter(el), parentSuspense);\r
+              }\r
+              else {\r
+                  const { leave, delayLeave, afterLeave } = transition;\r
+                  const remove = () => hostInsert(el, container, anchor);\r
+                  const performLeave = () => {\r
+                      leave(el, () => {\r
+                          remove();\r
+                          afterLeave && afterLeave();\r
+                      });\r
+                  };\r
+                  if (delayLeave) {\r
+                      delayLeave(el, remove, performLeave);\r
+                  }\r
+                  else {\r
+                      performLeave();\r
+                  }\r
+              }\r
+          }\r
+          else {\r
+              hostInsert(el, container, anchor);\r
+          }\r
+      };\r
+      const unmount = (vnode, parentComponent, parentSuspense, doRemove = false, optimized = false) => {\r
+          const { type, props, ref, children, dynamicChildren, shapeFlag, patchFlag, dirs } = vnode;\r
+          // unset ref\r
+          if (ref != null) {\r
+              setRef(ref, null, parentSuspense, vnode, true);\r
+          }\r
+          if (shapeFlag & 256 /* COMPONENT_SHOULD_KEEP_ALIVE */) {\r
+              parentComponent.ctx.deactivate(vnode);\r
+              return;\r
+          }\r
+          const shouldInvokeDirs = shapeFlag & 1 /* ELEMENT */ && dirs;\r
+          const shouldInvokeVnodeHook = !isAsyncWrapper(vnode);\r
+          let vnodeHook;\r
+          if (shouldInvokeVnodeHook &&\r
+              (vnodeHook = props && props.onVnodeBeforeUnmount)) {\r
+              invokeVNodeHook(vnodeHook, parentComponent, vnode);\r
+          }\r
+          if (shapeFlag & 6 /* COMPONENT */) {\r
+              unmountComponent(vnode.component, parentSuspense, doRemove);\r
+          }\r
+          else {\r
+              if (shapeFlag & 128 /* SUSPENSE */) {\r
+                  vnode.suspense.unmount(parentSuspense, doRemove);\r
+                  return;\r
+              }\r
+              if (shouldInvokeDirs) {\r
+                  invokeDirectiveHook(vnode, null, parentComponent, 'beforeUnmount');\r
+              }\r
+              if (shapeFlag & 64 /* TELEPORT */) {\r
+                  vnode.type.remove(vnode, parentComponent, parentSuspense, optimized, internals, doRemove);\r
+              }\r
+              else if (dynamicChildren &&\r
+                  // #1153: fast path should not be taken for non-stable (v-for) fragments\r
+                  (type !== Fragment ||\r
+                      (patchFlag > 0 && patchFlag & 64 /* STABLE_FRAGMENT */))) {\r
+                  // fast path for block nodes: only need to unmount dynamic children.\r
+                  unmountChildren(dynamicChildren, parentComponent, parentSuspense, false, true);\r
+              }\r
+              else if ((type === Fragment &&\r
+                  patchFlag &\r
+                      (128 /* KEYED_FRAGMENT */ | 256 /* UNKEYED_FRAGMENT */)) ||\r
+                  (!optimized && shapeFlag & 16 /* ARRAY_CHILDREN */)) {\r
+                  unmountChildren(children, parentComponent, parentSuspense);\r
+              }\r
+              if (doRemove) {\r
+                  remove(vnode);\r
+              }\r
+          }\r
+          if ((shouldInvokeVnodeHook &&\r
+              (vnodeHook = props && props.onVnodeUnmounted)) ||\r
+              shouldInvokeDirs) {\r
+              queuePostRenderEffect(() => {\r
+                  vnodeHook && invokeVNodeHook(vnodeHook, parentComponent, vnode);\r
+                  shouldInvokeDirs &&\r
+                      invokeDirectiveHook(vnode, null, parentComponent, 'unmounted');\r
+              }, parentSuspense);\r
+          }\r
+      };\r
+      const remove = vnode => {\r
+          const { type, el, anchor, transition } = vnode;\r
+          if (type === Fragment) {\r
+              removeFragment(el, anchor);\r
+              return;\r
+          }\r
+          if (type === Static) {\r
+              removeStaticNode(vnode);\r
+              return;\r
+          }\r
+          const performRemove = () => {\r
+              hostRemove(el);\r
+              if (transition && !transition.persisted && transition.afterLeave) {\r
+                  transition.afterLeave();\r
+              }\r
+          };\r
+          if (vnode.shapeFlag & 1 /* ELEMENT */ &&\r
+              transition &&\r
+              !transition.persisted) {\r
+              const { leave, delayLeave } = transition;\r
+              const performLeave = () => leave(el, performRemove);\r
+              if (delayLeave) {\r
+                  delayLeave(vnode.el, performRemove, performLeave);\r
+              }\r
+              else {\r
+                  performLeave();\r
+              }\r
+          }\r
+          else {\r
+              performRemove();\r
+          }\r
+      };\r
+      const removeFragment = (cur, end) => {\r
+          // For fragments, directly remove all contained DOM nodes.\r
+          // (fragment child nodes cannot have transition)\r
+          let next;\r
+          while (cur !== end) {\r
+              next = hostNextSibling(cur);\r
+              hostRemove(cur);\r
+              cur = next;\r
+          }\r
+          hostRemove(end);\r
+      };\r
+      const unmountComponent = (instance, parentSuspense, doRemove) => {\r
+          if (instance.type.__hmrId) {\r
+              unregisterHMR(instance);\r
+          }\r
+          const { bum, scope, update, subTree, um } = instance;\r
+          // beforeUnmount hook\r
+          if (bum) {\r
+              invokeArrayFns(bum);\r
+          }\r
+          // stop effects in component scope\r
+          scope.stop();\r
+          // update may be null if a component is unmounted before its async\r
+          // setup has resolved.\r
+          if (update) {\r
+              // so that scheduler will no longer invoke it\r
+              update.active = false;\r
+              unmount(subTree, instance, parentSuspense, doRemove);\r
+          }\r
+          // unmounted hook\r
+          if (um) {\r
+              queuePostRenderEffect(um, parentSuspense);\r
+          }\r
+          queuePostRenderEffect(() => {\r
+              instance.isUnmounted = true;\r
+          }, parentSuspense);\r
+          // A component with async dep inside a pending suspense is unmounted before\r
+          // its async dep resolves. This should remove the dep from the suspense, and\r
+          // cause the suspense to resolve immediately if that was the last dep.\r
+          if (parentSuspense &&\r
+              parentSuspense.pendingBranch &&\r
+              !parentSuspense.isUnmounted &&\r
+              instance.asyncDep &&\r
+              !instance.asyncResolved &&\r
+              instance.suspenseId === parentSuspense.pendingId) {\r
+              parentSuspense.deps--;\r
+              if (parentSuspense.deps === 0) {\r
+                  parentSuspense.resolve();\r
+              }\r
+          }\r
+          {\r
+              devtoolsComponentRemoved(instance);\r
+          }\r
+      };\r
+      const unmountChildren = (children, parentComponent, parentSuspense, doRemove = false, optimized = false, start = 0) => {\r
+          for (let i = start; i < children.length; i++) {\r
+              unmount(children[i], parentComponent, parentSuspense, doRemove, optimized);\r
+          }\r
+      };\r
+      const getNextHostNode = vnode => {\r
+          if (vnode.shapeFlag & 6 /* COMPONENT */) {\r
+              return getNextHostNode(vnode.component.subTree);\r
+          }\r
+          if (vnode.shapeFlag & 128 /* SUSPENSE */) {\r
+              return vnode.suspense.next();\r
+          }\r
+          return hostNextSibling((vnode.anchor || vnode.el));\r
+      };\r
+      const render = (vnode, container, isSVG) => {\r
+          if (vnode == null) {\r
+              if (container._vnode) {\r
+                  unmount(container._vnode, null, null, true);\r
+              }\r
+          }\r
+          else {\r
+              patch(container._vnode || null, vnode, container, null, null, null, isSVG);\r
+          }\r
+          flushPostFlushCbs();\r
+          container._vnode = vnode;\r
+      };\r
+      const internals = {\r
+          p: patch,\r
+          um: unmount,\r
+          m: move,\r
+          r: remove,\r
+          mt: mountComponent,\r
+          mc: mountChildren,\r
+          pc: patchChildren,\r
+          pbc: patchBlockChildren,\r
+          n: getNextHostNode,\r
+          o: options\r
+      };\r
+      let hydrate;\r
+      let hydrateNode;\r
+      if (createHydrationFns) {\r
+          [hydrate, hydrateNode] = createHydrationFns(internals);\r
+      }\r
+      return {\r
+          render,\r
+          hydrate,\r
+          createApp: createAppAPI(render, hydrate)\r
+      };\r
+  }\r
+  function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {\r
+      if (isArray(rawRef)) {\r
+          rawRef.forEach((r, i) => setRef(r, oldRawRef && (isArray(oldRawRef) ? oldRawRef[i] : oldRawRef), parentSuspense, vnode, isUnmount));\r
+          return;\r
+      }\r
+      if (isAsyncWrapper(vnode) && !isUnmount) {\r
+          // when mounting async components, nothing needs to be done,\r
+          // because the template ref is forwarded to inner component\r
+          return;\r
+      }\r
+      const refValue = vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */\r
+          ? getExposeProxy(vnode.component) || vnode.component.proxy\r
+          : vnode.el;\r
+      const value = isUnmount ? null : refValue;\r
+      const { i: owner, r: ref } = rawRef;\r
+      if (!owner) {\r
+          warn$1(`Missing ref owner context. ref cannot be used on hoisted vnodes. ` +\r
+              `A vnode with ref must be created inside the render function.`);\r
+          return;\r
+      }\r
+      const oldRef = oldRawRef && oldRawRef.r;\r
+      const refs = owner.refs === EMPTY_OBJ ? (owner.refs = {}) : owner.refs;\r
+      const setupState = owner.setupState;\r
+      // dynamic ref changed. unset old ref\r
+      if (oldRef != null && oldRef !== ref) {\r
+          if (isString(oldRef)) {\r
+              refs[oldRef] = null;\r
+              if (hasOwn(setupState, oldRef)) {\r
+                  setupState[oldRef] = null;\r
+              }\r
+          }\r
+          else if (isRef(oldRef)) {\r
+              oldRef.value = null;\r
+          }\r
+      }\r
+      if (isString(ref)) {\r
+          const doSet = () => {\r
+              {\r
+                  refs[ref] = value;\r
+              }\r
+              if (hasOwn(setupState, ref)) {\r
+                  setupState[ref] = value;\r
+              }\r
+          };\r
+          // #1789: for non-null values, set them after render\r
+          // null values means this is unmount and it should not overwrite another\r
+          // ref with the same key\r
+          if (value) {\r
+              doSet.id = -1;\r
+              queuePostRenderEffect(doSet, parentSuspense);\r
+          }\r
+          else {\r
+              doSet();\r
+          }\r
+      }\r
+      else if (isRef(ref)) {\r
+          const doSet = () => {\r
+              ref.value = value;\r
+          };\r
+          if (value) {\r
+              doSet.id = -1;\r
+              queuePostRenderEffect(doSet, parentSuspense);\r
+          }\r
+          else {\r
+              doSet();\r
+          }\r
+      }\r
+      else if (isFunction(ref)) {\r
+          callWithErrorHandling(ref, owner, 12 /* FUNCTION_REF */, [value, refs]);\r
+      }\r
+      else {\r
+          warn$1('Invalid template ref type:', value, `(${typeof value})`);\r
+      }\r
+  }\r
+  function invokeVNodeHook(hook, instance, vnode, prevVNode = null) {\r
+      callWithAsyncErrorHandling(hook, instance, 7 /* VNODE_HOOK */, [\r
+          vnode,\r
+          prevVNode\r
+      ]);\r
+  }\r
+  /**\r
+   * #1156\r
+   * When a component is HMR-enabled, we need to make sure that all static nodes\r
+   * inside a block also inherit the DOM element from the previous tree so that\r
+   * HMR updates (which are full updates) can retrieve the element for patching.\r
+   *\r
+   * #2080\r
+   * Inside keyed `template` fragment static children, if a fragment is moved,\r
+   * the children will always moved so that need inherit el form previous nodes\r
+   * to ensure correct moved position.\r
+   */\r
+  function traverseStaticChildren(n1, n2, shallow = false) {\r
+      const ch1 = n1.children;\r
+      const ch2 = n2.children;\r
+      if (isArray(ch1) && isArray(ch2)) {\r
+          for (let i = 0; i < ch1.length; i++) {\r
+              // this is only called in the optimized path so array children are\r
+              // guaranteed to be vnodes\r
+              const c1 = ch1[i];\r
+              let c2 = ch2[i];\r
+              if (c2.shapeFlag & 1 /* ELEMENT */ && !c2.dynamicChildren) {\r
+                  if (c2.patchFlag <= 0 || c2.patchFlag === 32 /* HYDRATE_EVENTS */) {\r
+                      c2 = ch2[i] = cloneIfMounted(ch2[i]);\r
+                      c2.el = c1.el;\r
+                  }\r
+                  if (!shallow)\r
+                      traverseStaticChildren(c1, c2);\r
+              }\r
+              // also inherit for comment nodes, but not placeholders (e.g. v-if which\r
+              // would have received .el during block patch)\r
+              if (c2.type === Comment && !c2.el) {\r
+                  c2.el = c1.el;\r
+              }\r
+          }\r
+      }\r
+  }\r
+  // https://en.wikipedia.org/wiki/Longest_increasing_subsequence\r
+  function getSequence(arr) {\r
+      const p = arr.slice();\r
+      const result = [0];\r
+      let i, j, u, v, c;\r
+      const len = arr.length;\r
+      for (i = 0; i < len; i++) {\r
+          const arrI = arr[i];\r
+          if (arrI !== 0) {\r
+              j = result[result.length - 1];\r
+              if (arr[j] < arrI) {\r
+                  p[i] = j;\r
+                  result.push(i);\r
+                  continue;\r
+              }\r
+              u = 0;\r
+              v = result.length - 1;\r
+              while (u < v) {\r
+                  c = (u + v) >> 1;\r
+                  if (arr[result[c]] < arrI) {\r
+                      u = c + 1;\r
+                  }\r
+                  else {\r
+                      v = c;\r
+                  }\r
+              }\r
+              if (arrI < arr[result[u]]) {\r
+                  if (u > 0) {\r
+                      p[i] = result[u - 1];\r
+                  }\r
+                  result[u] = i;\r
+              }\r
+          }\r
+      }\r
+      u = result.length;\r
+      v = result[u - 1];\r
+      while (u-- > 0) {\r
+          result[u] = v;\r
+          v = p[v];\r
+      }\r
+      return result;\r
+  }
+
+  const isTeleport = (type) => type.__isTeleport;\r
+  const isTeleportDisabled = (props) => props && (props.disabled || props.disabled === '');\r
+  const isTargetSVG = (target) => typeof SVGElement !== 'undefined' && target instanceof SVGElement;\r
+  const resolveTarget = (props, select) => {\r
+      const targetSelector = props && props.to;\r
+      if (isString(targetSelector)) {\r
+          if (!select) {\r
+              warn$1(`Current renderer does not support string target for Teleports. ` +\r
+                      `(missing querySelector renderer option)`);\r
+              return null;\r
+          }\r
+          else {\r
+              const target = select(targetSelector);\r
+              if (!target) {\r
+                  warn$1(`Failed to locate Teleport target with selector "${targetSelector}". ` +\r
+                          `Note the target element must exist before the component is mounted - ` +\r
+                          `i.e. the target cannot be rendered by the component itself, and ` +\r
+                          `ideally should be outside of the entire Vue component tree.`);\r
+              }\r
+              return target;\r
+          }\r
+      }\r
+      else {\r
+          if (!targetSelector && !isTeleportDisabled(props)) {\r
+              warn$1(`Invalid Teleport target: ${targetSelector}`);\r
+          }\r
+          return targetSelector;\r
+      }\r
+  };\r
+  const TeleportImpl = {\r
+      __isTeleport: true,\r
+      process(n1, n2, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized, internals) {\r
+          const { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, o: { insert, querySelector, createText, createComment } } = internals;\r
+          const disabled = isTeleportDisabled(n2.props);\r
+          let { shapeFlag, children, dynamicChildren } = n2;\r
+          // #3302\r
+          // HMR updated, force full diff\r
+          if (isHmrUpdating) {\r
+              optimized = false;\r
+              dynamicChildren = null;\r
+          }\r
+          if (n1 == null) {\r
+              // insert anchors in the main view\r
+              const placeholder = (n2.el = createComment('teleport start')\r
+                  );\r
+              const mainAnchor = (n2.anchor = createComment('teleport end')\r
+                  );\r
+              insert(placeholder, container, anchor);\r
+              insert(mainAnchor, container, anchor);\r
+              const target = (n2.target = resolveTarget(n2.props, querySelector));\r
+              const targetAnchor = (n2.targetAnchor = createText(''));\r
+              if (target) {\r
+                  insert(targetAnchor, target);\r
+                  // #2652 we could be teleporting from a non-SVG tree into an SVG tree\r
+                  isSVG = isSVG || isTargetSVG(target);\r
+              }\r
+              else if (!disabled) {\r
+                  warn$1('Invalid Teleport target on mount:', target, `(${typeof target})`);\r
+              }\r
+              const mount = (container, anchor) => {\r
+                  // Teleport *always* has Array children. This is enforced in both the\r
+                  // compiler and vnode children normalization.\r
+                  if (shapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+                      mountChildren(children, container, anchor, parentComponent, parentSuspense, isSVG, slotScopeIds, optimized);\r
+                  }\r
+              };\r
+              if (disabled) {\r
+                  mount(container, mainAnchor);\r
+              }\r
+              else if (target) {\r
+                  mount(target, targetAnchor);\r
+              }\r
+          }\r
+          else {\r
+              // update content\r
+              n2.el = n1.el;\r
+              const mainAnchor = (n2.anchor = n1.anchor);\r
+              const target = (n2.target = n1.target);\r
+              const targetAnchor = (n2.targetAnchor = n1.targetAnchor);\r
+              const wasDisabled = isTeleportDisabled(n1.props);\r
+              const currentContainer = wasDisabled ? container : target;\r
+              const currentAnchor = wasDisabled ? mainAnchor : targetAnchor;\r
+              isSVG = isSVG || isTargetSVG(target);\r
+              if (dynamicChildren) {\r
+                  // fast path when the teleport happens to be a block root\r
+                  patchBlockChildren(n1.dynamicChildren, dynamicChildren, currentContainer, parentComponent, parentSuspense, isSVG, slotScopeIds);\r
+                  // even in block tree mode we need to make sure all root-level nodes\r
+                  // in the teleport inherit previous DOM references so that they can\r
+                  // be moved in future patches.\r
+                  traverseStaticChildren(n1, n2, true);\r
+              }\r
+              else if (!optimized) {\r
+                  patchChildren(n1, n2, currentContainer, currentAnchor, parentComponent, parentSuspense, isSVG, slotScopeIds, false);\r
+              }\r
+              if (disabled) {\r
+                  if (!wasDisabled) {\r
+                      // enabled -> disabled\r
+                      // move into main container\r
+                      moveTeleport(n2, container, mainAnchor, internals, 1 /* TOGGLE */);\r
+                  }\r
+              }\r
+              else {\r
+                  // target changed\r
+                  if ((n2.props && n2.props.to) !== (n1.props && n1.props.to)) {\r
+                      const nextTarget = (n2.target = resolveTarget(n2.props, querySelector));\r
+                      if (nextTarget) {\r
+                          moveTeleport(n2, nextTarget, null, internals, 0 /* TARGET_CHANGE */);\r
+                      }\r
+                      else {\r
+                          warn$1('Invalid Teleport target on update:', target, `(${typeof target})`);\r
+                      }\r
+                  }\r
+                  else if (wasDisabled) {\r
+                      // disabled -> enabled\r
+                      // move into teleport target\r
+                      moveTeleport(n2, target, targetAnchor, internals, 1 /* TOGGLE */);\r
+                  }\r
+              }\r
+          }\r
+      },\r
+      remove(vnode, parentComponent, parentSuspense, optimized, { um: unmount, o: { remove: hostRemove } }, doRemove) {\r
+          const { shapeFlag, children, anchor, targetAnchor, target, props } = vnode;\r
+          if (target) {\r
+              hostRemove(targetAnchor);\r
+          }\r
+          // an unmounted teleport should always remove its children if not disabled\r
+          if (doRemove || !isTeleportDisabled(props)) {\r
+              hostRemove(anchor);\r
+              if (shapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+                  for (let i = 0; i < children.length; i++) {\r
+                      const child = children[i];\r
+                      unmount(child, parentComponent, parentSuspense, true, !!child.dynamicChildren);\r
+                  }\r
+              }\r
+          }\r
+      },\r
+      move: moveTeleport,\r
+      hydrate: hydrateTeleport\r
+  };\r
+  function moveTeleport(vnode, container, parentAnchor, { o: { insert }, m: move }, moveType = 2 /* REORDER */) {\r
+      // move target anchor if this is a target change.\r
+      if (moveType === 0 /* TARGET_CHANGE */) {\r
+          insert(vnode.targetAnchor, container, parentAnchor);\r
+      }\r
+      const { el, anchor, shapeFlag, children, props } = vnode;\r
+      const isReorder = moveType === 2 /* REORDER */;\r
+      // move main view anchor if this is a re-order.\r
+      if (isReorder) {\r
+          insert(el, container, parentAnchor);\r
+      }\r
+      // if this is a re-order and teleport is enabled (content is in target)\r
+      // do not move children. So the opposite is: only move children if this\r
+      // is not a reorder, or the teleport is disabled\r
+      if (!isReorder || isTeleportDisabled(props)) {\r
+          // Teleport has either Array children or no children.\r
+          if (shapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+              for (let i = 0; i < children.length; i++) {\r
+                  move(children[i], container, parentAnchor, 2 /* REORDER */);\r
+              }\r
+          }\r
+      }\r
+      // move main view anchor if this is a re-order.\r
+      if (isReorder) {\r
+          insert(anchor, container, parentAnchor);\r
+      }\r
+  }\r
+  function hydrateTeleport(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized, { o: { nextSibling, parentNode, querySelector } }, hydrateChildren) {\r
+      const target = (vnode.target = resolveTarget(vnode.props, querySelector));\r
+      if (target) {\r
+          // if multiple teleports rendered to the same target element, we need to\r
+          // pick up from where the last teleport finished instead of the first node\r
+          const targetNode = target._lpa || target.firstChild;\r
+          if (vnode.shapeFlag & 16 /* ARRAY_CHILDREN */) {\r
+              if (isTeleportDisabled(vnode.props)) {\r
+                  vnode.anchor = hydrateChildren(nextSibling(node), vnode, parentNode(node), parentComponent, parentSuspense, slotScopeIds, optimized);\r
+                  vnode.targetAnchor = targetNode;\r
+              }\r
+              else {\r
+                  vnode.anchor = nextSibling(node);\r
+                  vnode.targetAnchor = hydrateChildren(targetNode, vnode, target, parentComponent, parentSuspense, slotScopeIds, optimized);\r
+              }\r
+              target._lpa =\r
+                  vnode.targetAnchor && nextSibling(vnode.targetAnchor);\r
+          }\r
+      }\r
+      return vnode.anchor && nextSibling(vnode.anchor);\r
+  }\r
+  // Force-casted public typing for h and TSX props inference\r
+  const Teleport = TeleportImpl;
+
+  const COMPONENTS = 'components';\r
+  const DIRECTIVES = 'directives';\r
+  /**\r
+   * @private\r
+   */\r
+  function resolveComponent(name, maybeSelfReference) {\r
+      return resolveAsset(COMPONENTS, name, true, maybeSelfReference) || name;\r
+  }\r
+  const NULL_DYNAMIC_COMPONENT = Symbol();\r
+  /**\r
+   * @private\r
+   */\r
+  function resolveDynamicComponent(component) {\r
+      if (isString(component)) {\r
+          return resolveAsset(COMPONENTS, component, false) || component;\r
+      }\r
+      else {\r
+          // invalid types will fallthrough to createVNode and raise warning\r
+          return (component || NULL_DYNAMIC_COMPONENT);\r
+      }\r
+  }\r
+  /**\r
+   * @private\r
+   */\r
+  function resolveDirective(name) {\r
+      return resolveAsset(DIRECTIVES, name);\r
+  }\r
+  // implementation\r
+  function resolveAsset(type, name, warnMissing = true, maybeSelfReference = false) {\r
+      const instance = currentRenderingInstance || currentInstance;\r
+      if (instance) {\r
+          const Component = instance.type;\r
+          // explicit self name has highest priority\r
+          if (type === COMPONENTS) {\r
+              const selfName = getComponentName(Component);\r
+              if (selfName &&\r
+                  (selfName === name ||\r
+                      selfName === camelize(name) ||\r
+                      selfName === capitalize(camelize(name)))) {\r
+                  return Component;\r
+              }\r
+          }\r
+          const res = \r
+          // local registration\r
+          // check instance[type] first which is resolved for options API\r
+          resolve(instance[type] || Component[type], name) ||\r
+              // global registration\r
+              resolve(instance.appContext[type], name);\r
+          if (!res && maybeSelfReference) {\r
+              // fallback to implicit self-reference\r
+              return Component;\r
+          }\r
+          if (warnMissing && !res) {\r
+              warn$1(`Failed to resolve ${type.slice(0, -1)}: ${name}`);\r
+          }\r
+          return res;\r
+      }\r
+      else {\r
+          warn$1(`resolve${capitalize(type.slice(0, -1))} ` +\r
+              `can only be used in render() or setup().`);\r
+      }\r
+  }\r
+  function resolve(registry, name) {\r
+      return (registry &&\r
+          (registry[name] ||\r
+              registry[camelize(name)] ||\r
+              registry[capitalize(camelize(name))]));\r
+  }
+
+  const Fragment = Symbol('Fragment' );\r
+  const Text = Symbol('Text' );\r
+  const Comment = Symbol('Comment' );\r
+  const Static = Symbol('Static' );\r
+  // Since v-if and v-for are the two possible ways node structure can dynamically\r
+  // change, once we consider v-if branches and each v-for fragment a block, we\r
+  // can divide a template into nested blocks, and within each block the node\r
+  // structure would be stable. This allows us to skip most children diffing\r
+  // and only worry about the dynamic nodes (indicated by patch flags).\r
+  const blockStack = [];\r
+  let currentBlock = null;\r
+  /**\r
+   * Open a block.\r
+   * This must be called before `createBlock`. It cannot be part of `createBlock`\r
+   * because the children of the block are evaluated before `createBlock` itself\r
+   * is called. The generated code typically looks like this:\r
+   *\r
+   * ```js\r
+   * function render() {\r
+   *   return (openBlock(),createBlock('div', null, [...]))\r
+   * }\r
+   * ```\r
+   * disableTracking is true when creating a v-for fragment block, since a v-for\r
+   * fragment always diffs its children.\r
+   *\r
+   * @private\r
+   */\r
+  function openBlock(disableTracking = false) {\r
+      blockStack.push((currentBlock = disableTracking ? null : []));\r
+  }\r
+  function closeBlock() {\r
+      blockStack.pop();\r
+      currentBlock = blockStack[blockStack.length - 1] || null;\r
+  }\r
+  // Whether we should be tracking dynamic child nodes inside a block.\r
+  // Only tracks when this value is > 0\r
+  // We are not using a simple boolean because this value may need to be\r
+  // incremented/decremented by nested usage of v-once (see below)\r
+  let isBlockTreeEnabled = 1;\r
+  /**\r
+   * Block tracking sometimes needs to be disabled, for example during the\r
+   * creation of a tree that needs to be cached by v-once. The compiler generates\r
+   * code like this:\r
+   *\r
+   * ``` js\r
+   * _cache[1] || (\r
+   *   setBlockTracking(-1),\r
+   *   _cache[1] = createVNode(...),\r
+   *   setBlockTracking(1),\r
+   *   _cache[1]\r
+   * )\r
+   * ```\r
+   *\r
+   * @private\r
+   */\r
+  function setBlockTracking(value) {\r
+      isBlockTreeEnabled += value;\r
+  }\r
+  function setupBlock(vnode) {\r
+      // save current block children on the block vnode\r
+      vnode.dynamicChildren =\r
+          isBlockTreeEnabled > 0 ? currentBlock || EMPTY_ARR : null;\r
+      // close block\r
+      closeBlock();\r
+      // a block is always going to be patched, so track it as a child of its\r
+      // parent block\r
+      if (isBlockTreeEnabled > 0 && currentBlock) {\r
+          currentBlock.push(vnode);\r
+      }\r
+      return vnode;\r
+  }\r
+  /**\r
+   * @private\r
+   */\r
+  function createElementBlock(type, props, children, patchFlag, dynamicProps, shapeFlag) {\r
+      return setupBlock(createBaseVNode(type, props, children, patchFlag, dynamicProps, shapeFlag, true /* isBlock */));\r
+  }\r
+  /**\r
+   * Create a block root vnode. Takes the same exact arguments as `createVNode`.\r
+   * A block root keeps track of dynamic nodes within the block in the\r
+   * `dynamicChildren` array.\r
+   *\r
+   * @private\r
+   */\r
+  function createBlock(type, props, children, patchFlag, dynamicProps) {\r
+      return setupBlock(createVNode(type, props, children, patchFlag, dynamicProps, true /* isBlock: prevent a block from tracking itself */));\r
+  }\r
+  function isVNode(value) {\r
+      return value ? value.__v_isVNode === true : false;\r
+  }\r
+  function isSameVNodeType(n1, n2) {\r
+      if (n2.shapeFlag & 6 /* COMPONENT */ &&\r
+          hmrDirtyComponents.has(n2.type)) {\r
+          // HMR only: if the component has been hot-updated, force a reload.\r
+          return false;\r
+      }\r
+      return n1.type === n2.type && n1.key === n2.key;\r
+  }\r
+  let vnodeArgsTransformer;\r
+  /**\r
+   * Internal API for registering an arguments transform for createVNode\r
+   * used for creating stubs in the test-utils\r
+   * It is *internal* but needs to be exposed for test-utils to pick up proper\r
+   * typings\r
+   */\r
+  function transformVNodeArgs(transformer) {\r
+      vnodeArgsTransformer = transformer;\r
+  }\r
+  const createVNodeWithArgsTransform = (...args) => {\r
+      return _createVNode(...(vnodeArgsTransformer\r
+          ? vnodeArgsTransformer(args, currentRenderingInstance)\r
+          : args));\r
+  };\r
+  const InternalObjectKey = `__vInternal`;\r
+  const normalizeKey = ({ key }) => key != null ? key : null;\r
+  const normalizeRef = ({ ref }) => {\r
+      return (ref != null\r
+          ? isString(ref) || isRef(ref) || isFunction(ref)\r
+              ? { i: currentRenderingInstance, r: ref }\r
+              : ref\r
+          : null);\r
+  };\r
+  function createBaseVNode(type, props = null, children = null, patchFlag = 0, dynamicProps = null, shapeFlag = type === Fragment ? 0 : 1 /* ELEMENT */, isBlockNode = false, needFullChildrenNormalization = false) {\r
+      const vnode = {\r
+          __v_isVNode: true,\r
+          __v_skip: true,\r
+          type,\r
+          props,\r
+          key: props && normalizeKey(props),\r
+          ref: props && normalizeRef(props),\r
+          scopeId: currentScopeId,\r
+          slotScopeIds: null,\r
+          children,\r
+          component: null,\r
+          suspense: null,\r
+          ssContent: null,\r
+          ssFallback: null,\r
+          dirs: null,\r
+          transition: null,\r
+          el: null,\r
+          anchor: null,\r
+          target: null,\r
+          targetAnchor: null,\r
+          staticCount: 0,\r
+          shapeFlag,\r
+          patchFlag,\r
+          dynamicProps,\r
+          dynamicChildren: null,\r
+          appContext: null\r
+      };\r
+      if (needFullChildrenNormalization) {\r
+          normalizeChildren(vnode, children);\r
+          // normalize suspense children\r
+          if (shapeFlag & 128 /* SUSPENSE */) {\r
+              type.normalize(vnode);\r
+          }\r
+      }\r
+      else if (children) {\r
+          // compiled element vnode - if children is passed, only possible types are\r
+          // string or Array.\r
+          vnode.shapeFlag |= isString(children)\r
+              ? 8 /* TEXT_CHILDREN */\r
+              : 16 /* ARRAY_CHILDREN */;\r
+      }\r
+      // validate key\r
+      if (vnode.key !== vnode.key) {\r
+          warn$1(`VNode created with invalid key (NaN). VNode type:`, vnode.type);\r
+      }\r
+      // track vnode for block tree\r
+      if (isBlockTreeEnabled > 0 &&\r
+          // avoid a block node from tracking itself\r
+          !isBlockNode &&\r
+          // has current parent block\r
+          currentBlock &&\r
+          // presence of a patch flag indicates this node needs patching on updates.\r
+          // component nodes also should always be patched, because even if the\r
+          // component doesn't need to update, it needs to persist the instance on to\r
+          // the next vnode so that it can be properly unmounted later.\r
+          (vnode.patchFlag > 0 || shapeFlag & 6 /* COMPONENT */) &&\r
+          // the EVENTS flag is only for hydration and if it is the only flag, the\r
+          // vnode should not be considered dynamic due to handler caching.\r
+          vnode.patchFlag !== 32 /* HYDRATE_EVENTS */) {\r
+          currentBlock.push(vnode);\r
+      }\r
+      return vnode;\r
+  }\r
+  const createVNode = (createVNodeWithArgsTransform );\r
+  function _createVNode(type, props = null, children = null, patchFlag = 0, dynamicProps = null, isBlockNode = false) {\r
+      if (!type || type === NULL_DYNAMIC_COMPONENT) {\r
+          if (!type) {\r
+              warn$1(`Invalid vnode type when creating vnode: ${type}.`);\r
+          }\r
+          type = Comment;\r
+      }\r
+      if (isVNode(type)) {\r
+          // createVNode receiving an existing vnode. This happens in cases like\r
+          // <component :is="vnode"/>\r
+          // #2078 make sure to merge refs during the clone instead of overwriting it\r
+          const cloned = cloneVNode(type, props, true /* mergeRef: true */);\r
+          if (children) {\r
+              normalizeChildren(cloned, children);\r
+          }\r
+          return cloned;\r
+      }\r
+      // class component normalization.\r
+      if (isClassComponent(type)) {\r
+          type = type.__vccOpts;\r
+      }\r
+      // class & style normalization.\r
+      if (props) {\r
+          // for reactive or proxy objects, we need to clone it to enable mutation.\r
+          props = guardReactiveProps(props);\r
+          let { class: klass, style } = props;\r
+          if (klass && !isString(klass)) {\r
+              props.class = normalizeClass(klass);\r
+          }\r
+          if (isObject(style)) {\r
+              // reactive state objects need to be cloned since they are likely to be\r
+              // mutated\r
+              if (isProxy(style) && !isArray(style)) {\r
+                  style = extend({}, style);\r
+              }\r
+              props.style = normalizeStyle(style);\r
+          }\r
+      }\r
+      // encode the vnode type information into a bitmap\r
+      const shapeFlag = isString(type)\r
+          ? 1 /* ELEMENT */\r
+          : isSuspense(type)\r
+              ? 128 /* SUSPENSE */\r
+              : isTeleport(type)\r
+                  ? 64 /* TELEPORT */\r
+                  : isObject(type)\r
+                      ? 4 /* STATEFUL_COMPONENT */\r
+                      : isFunction(type)\r
+                          ? 2 /* FUNCTIONAL_COMPONENT */\r
+                          : 0;\r
+      if (shapeFlag & 4 /* STATEFUL_COMPONENT */ && isProxy(type)) {\r
+          type = toRaw(type);\r
+          warn$1(`Vue received a Component which was made a reactive object. This can ` +\r
+              `lead to unnecessary performance overhead, and should be avoided by ` +\r
+              `marking the component with \`markRaw\` or using \`shallowRef\` ` +\r
+              `instead of \`ref\`.`, `\nComponent that was made reactive: `, type);\r
+      }\r
+      return createBaseVNode(type, props, children, patchFlag, dynamicProps, shapeFlag, isBlockNode, true);\r
+  }\r
+  function guardReactiveProps(props) {\r
+      if (!props)\r
+          return null;\r
+      return isProxy(props) || InternalObjectKey in props\r
+          ? extend({}, props)\r
+          : props;\r
+  }\r
+  function cloneVNode(vnode, extraProps, mergeRef = false) {\r
+      // This is intentionally NOT using spread or extend to avoid the runtime\r
+      // key enumeration cost.\r
+      const { props, ref, patchFlag, children } = vnode;\r
+      const mergedProps = extraProps ? mergeProps(props || {}, extraProps) : props;\r
+      const cloned = {\r
+          __v_isVNode: true,\r
+          __v_skip: true,\r
+          type: vnode.type,\r
+          props: mergedProps,\r
+          key: mergedProps && normalizeKey(mergedProps),\r
+          ref: extraProps && extraProps.ref\r
+              ? // #2078 in the case of <component :is="vnode" ref="extra"/>\r
+                  // if the vnode itself already has a ref, cloneVNode will need to merge\r
+                  // the refs so the single vnode can be set on multiple refs\r
+                  mergeRef && ref\r
+                      ? isArray(ref)\r
+                          ? ref.concat(normalizeRef(extraProps))\r
+                          : [ref, normalizeRef(extraProps)]\r
+                      : normalizeRef(extraProps)\r
+              : ref,\r
+          scopeId: vnode.scopeId,\r
+          slotScopeIds: vnode.slotScopeIds,\r
+          children: patchFlag === -1 /* HOISTED */ && isArray(children)\r
+              ? children.map(deepCloneVNode)\r
+              : children,\r
+          target: vnode.target,\r
+          targetAnchor: vnode.targetAnchor,\r
+          staticCount: vnode.staticCount,\r
+          shapeFlag: vnode.shapeFlag,\r
+          // if the vnode is cloned with extra props, we can no longer assume its\r
+          // existing patch flag to be reliable and need to add the FULL_PROPS flag.\r
+          // note: perserve flag for fragments since they use the flag for children\r
+          // fast paths only.\r
+          patchFlag: extraProps && vnode.type !== Fragment\r
+              ? patchFlag === -1 // hoisted node\r
+                  ? 16 /* FULL_PROPS */\r
+                  : patchFlag | 16 /* FULL_PROPS */\r
+              : patchFlag,\r
+          dynamicProps: vnode.dynamicProps,\r
+          dynamicChildren: vnode.dynamicChildren,\r
+          appContext: vnode.appContext,\r
+          dirs: vnode.dirs,\r
+          transition: vnode.transition,\r
+          // These should technically only be non-null on mounted VNodes. However,\r
+          // they *should* be copied for kept-alive vnodes. So we just always copy\r
+          // them since them being non-null during a mount doesn't affect the logic as\r
+          // they will simply be overwritten.\r
+          component: vnode.component,\r
+          suspense: vnode.suspense,\r
+          ssContent: vnode.ssContent && cloneVNode(vnode.ssContent),\r
+          ssFallback: vnode.ssFallback && cloneVNode(vnode.ssFallback),\r
+          el: vnode.el,\r
+          anchor: vnode.anchor\r
+      };\r
+      return cloned;\r
+  }\r
+  /**\r
+   * Dev only, for HMR of hoisted vnodes reused in v-for\r
+   * https://github.com/vitejs/vite/issues/2022\r
+   */\r
+  function deepCloneVNode(vnode) {\r
+      const cloned = cloneVNode(vnode);\r
+      if (isArray(vnode.children)) {\r
+          cloned.children = vnode.children.map(deepCloneVNode);\r
+      }\r
+      return cloned;\r
+  }\r
+  /**\r
+   * @private\r
+   */\r
+  function createTextVNode(text = ' ', flag = 0) {\r
+      return createVNode(Text, null, text, flag);\r
+  }\r
+  /**\r
+   * @private\r
+   */\r
+  function createStaticVNode(content, numberOfNodes) {\r
+      // A static vnode can contain multiple stringified elements, and the number\r
+      // of elements is necessary for hydration.\r
+      const vnode = createVNode(Static, null, content);\r
+      vnode.staticCount = numberOfNodes;\r
+      return vnode;\r
+  }\r
+  /**\r
+   * @private\r
+   */\r
+  function createCommentVNode(text = '', \r
+  // when used as the v-else branch, the comment node must be created as a\r
+  // block to ensure correct updates.\r
+  asBlock = false) {\r
+      return asBlock\r
+          ? (openBlock(), createBlock(Comment, null, text))\r
+          : createVNode(Comment, null, text);\r
+  }\r
+  function normalizeVNode(child) {\r
+      if (child == null || typeof child === 'boolean') {\r
+          // empty placeholder\r
+          return createVNode(Comment);\r
+      }\r
+      else if (isArray(child)) {\r
+          // fragment\r
+          return createVNode(Fragment, null, \r
+          // #3666, avoid reference pollution when reusing vnode\r
+          child.slice());\r
+      }\r
+      else if (typeof child === 'object') {\r
+          // already vnode, this should be the most common since compiled templates\r
+          // always produce all-vnode children arrays\r
+          return cloneIfMounted(child);\r
+      }\r
+      else {\r
+          // strings and numbers\r
+          return createVNode(Text, null, String(child));\r
+      }\r
+  }\r
+  // optimized normalization for template-compiled render fns\r
+  function cloneIfMounted(child) {\r
+      return child.el === null || child.memo ? child : cloneVNode(child);\r
+  }\r
+  function normalizeChildren(vnode, children) {\r
+      let type = 0;\r
+      const { shapeFlag } = vnode;\r
+      if (children == null) {\r
+          children = null;\r
+      }\r
+      else if (isArray(children)) {\r
+          type = 16 /* ARRAY_CHILDREN */;\r
+      }\r
+      else if (typeof children === 'object') {\r
+          if (shapeFlag & (1 /* ELEMENT */ | 64 /* TELEPORT */)) {\r
+              // Normalize slot to plain children for plain element and Teleport\r
+              const slot = children.default;\r
+              if (slot) {\r
+                  // _c marker is added by withCtx() indicating this is a compiled slot\r
+                  slot._c && (slot._d = false);\r
+                  normalizeChildren(vnode, slot());\r
+                  slot._c && (slot._d = true);\r
+              }\r
+              return;\r
+          }\r
+          else {\r
+              type = 32 /* SLOTS_CHILDREN */;\r
+              const slotFlag = children._;\r
+              if (!slotFlag && !(InternalObjectKey in children)) {\r
+                  children._ctx = currentRenderingInstance;\r
+              }\r
+              else if (slotFlag === 3 /* FORWARDED */ && currentRenderingInstance) {\r
+                  // a child component receives forwarded slots from the parent.\r
+                  // its slot type is determined by its parent's slot type.\r
+                  if (currentRenderingInstance.slots._ === 1 /* STABLE */) {\r
+                      children._ = 1 /* STABLE */;\r
+                  }\r
+                  else {\r
+                      children._ = 2 /* DYNAMIC */;\r
+                      vnode.patchFlag |= 1024 /* DYNAMIC_SLOTS */;\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      else if (isFunction(children)) {\r
+          children = { default: children, _ctx: currentRenderingInstance };\r
+          type = 32 /* SLOTS_CHILDREN */;\r
+      }\r
+      else {\r
+          children = String(children);\r
+          // force teleport children to array so it can be moved around\r
+          if (shapeFlag & 64 /* TELEPORT */) {\r
+              type = 16 /* ARRAY_CHILDREN */;\r
+              children = [createTextVNode(children)];\r
+          }\r
+          else {\r
+              type = 8 /* TEXT_CHILDREN */;\r
+          }\r
+      }\r
+      vnode.children = children;\r
+      vnode.shapeFlag |= type;\r
+  }\r
+  function mergeProps(...args) {\r
+      const ret = {};\r
+      for (let i = 0; i < args.length; i++) {\r
+          const toMerge = args[i];\r
+          for (const key in toMerge) {\r
+              if (key === 'class') {\r
+                  if (ret.class !== toMerge.class) {\r
+                      ret.class = normalizeClass([ret.class, toMerge.class]);\r
+                  }\r
+              }\r
+              else if (key === 'style') {\r
+                  ret.style = normalizeStyle([ret.style, toMerge.style]);\r
+              }\r
+              else if (isOn(key)) {\r
+                  const existing = ret[key];\r
+                  const incoming = toMerge[key];\r
+                  if (existing !== incoming) {\r
+                      ret[key] = existing\r
+                          ? [].concat(existing, incoming)\r
+                          : incoming;\r
+                  }\r
+              }\r
+              else if (key !== '') {\r
+                  ret[key] = toMerge[key];\r
+              }\r
+          }\r
+      }\r
+      return ret;\r
+  }
+
+  /**\r
+   * Actual implementation\r
+   */\r
+  function renderList(source, renderItem, cache, index) {\r
+      let ret;\r
+      const cached = (cache && cache[index]);\r
+      if (isArray(source) || isString(source)) {\r
+          ret = new Array(source.length);\r
+          for (let i = 0, l = source.length; i < l; i++) {\r
+              ret[i] = renderItem(source[i], i, undefined, cached && cached[i]);\r
+          }\r
+      }\r
+      else if (typeof source === 'number') {\r
+          if (!Number.isInteger(source)) {\r
+              warn$1(`The v-for range expect an integer value but got ${source}.`);\r
+              return [];\r
+          }\r
+          ret = new Array(source);\r
+          for (let i = 0; i < source; i++) {\r
+              ret[i] = renderItem(i + 1, i, undefined, cached && cached[i]);\r
+          }\r
+      }\r
+      else if (isObject(source)) {\r
+          if (source[Symbol.iterator]) {\r
+              ret = Array.from(source, (item, i) => renderItem(item, i, undefined, cached && cached[i]));\r
+          }\r
+          else {\r
+              const keys = Object.keys(source);\r
+              ret = new Array(keys.length);\r
+              for (let i = 0, l = keys.length; i < l; i++) {\r
+                  const key = keys[i];\r
+                  ret[i] = renderItem(source[key], key, i, cached && cached[i]);\r
+              }\r
+          }\r
+      }\r
+      else {\r
+          ret = [];\r
+      }\r
+      if (cache) {\r
+          cache[index] = ret;\r
+      }\r
+      return ret;\r
+  }
+
+  /**\r
+   * Compiler runtime helper for creating dynamic slots object\r
+   * @private\r
+   */\r
+  function createSlots(slots, dynamicSlots) {\r
+      for (let i = 0; i < dynamicSlots.length; i++) {\r
+          const slot = dynamicSlots[i];\r
+          // array of dynamic slot generated by <template v-for="..." #[...]>\r
+          if (isArray(slot)) {\r
+              for (let j = 0; j < slot.length; j++) {\r
+                  slots[slot[j].name] = slot[j].fn;\r
+              }\r
+          }\r
+          else if (slot) {\r
+              // conditional single slot generated by <template v-if="..." #foo>\r
+              slots[slot.name] = slot.fn;\r
+          }\r
+      }\r
+      return slots;\r
+  }
+
+  /**\r
+   * Compiler runtime helper for rendering `<slot/>`\r
+   * @private\r
+   */\r
+  function renderSlot(slots, name, props = {}, \r
+  // this is not a user-facing function, so the fallback is always generated by\r
+  // the compiler and guaranteed to be a function returning an array\r
+  fallback, noSlotted) {\r
+      if (currentRenderingInstance.isCE) {\r
+          return createVNode('slot', name === 'default' ? null : { name }, fallback && fallback());\r
+      }\r
+      let slot = slots[name];\r
+      if (slot && slot.length > 1) {\r
+          warn$1(`SSR-optimized slot function detected in a non-SSR-optimized render ` +\r
+              `function. You need to mark this component with $dynamic-slots in the ` +\r
+              `parent template.`);\r
+          slot = () => [];\r
+      }\r
+      // a compiled slot disables block tracking by default to avoid manual\r
+      // invocation interfering with template-based block tracking, but in\r
+      // `renderSlot` we can be sure that it's template-based so we can force\r
+      // enable it.\r
+      if (slot && slot._c) {\r
+          slot._d = false;\r
+      }\r
+      openBlock();\r
+      const validSlotContent = slot && ensureValidVNode(slot(props));\r
+      const rendered = createBlock(Fragment, { key: props.key || `_${name}` }, validSlotContent || (fallback ? fallback() : []), validSlotContent && slots._ === 1 /* STABLE */\r
+          ? 64 /* STABLE_FRAGMENT */\r
+          : -2 /* BAIL */);\r
+      if (!noSlotted && rendered.scopeId) {\r
+          rendered.slotScopeIds = [rendered.scopeId + '-s'];\r
+      }\r
+      if (slot && slot._c) {\r
+          slot._d = true;\r
+      }\r
+      return rendered;\r
+  }\r
+  function ensureValidVNode(vnodes) {\r
+      return vnodes.some(child => {\r
+          if (!isVNode(child))\r
+              return true;\r
+          if (child.type === Comment)\r
+              return false;\r
+          if (child.type === Fragment &&\r
+              !ensureValidVNode(child.children))\r
+              return false;\r
+          return true;\r
+      })\r
+          ? vnodes\r
+          : null;\r
+  }
+
+  /**\r
+   * For prefixing keys in v-on="obj" with "on"\r
+   * @private\r
+   */\r
+  function toHandlers(obj) {\r
+      const ret = {};\r
+      if (!isObject(obj)) {\r
+          warn$1(`v-on with no argument expects an object value.`);\r
+          return ret;\r
+      }\r
+      for (const key in obj) {\r
+          ret[toHandlerKey(key)] = obj[key];\r
+      }\r
+      return ret;\r
+  }
+
+  /**\r
+   * #2437 In Vue 3, functional components do not have a public instance proxy but\r
+   * they exist in the internal parent chain. For code that relies on traversing\r
+   * public $parent chains, skip functional ones and go to the parent instead.\r
+   */\r
+  const getPublicInstance = (i) => {\r
+      if (!i)\r
+          return null;\r
+      if (isStatefulComponent(i))\r
+          return getExposeProxy(i) || i.proxy;\r
+      return getPublicInstance(i.parent);\r
+  };\r
+  const publicPropertiesMap = extend(Object.create(null), {\r
+      $: i => i,\r
+      $el: i => i.vnode.el,\r
+      $data: i => i.data,\r
+      $props: i => (shallowReadonly(i.props) ),\r
+      $attrs: i => (shallowReadonly(i.attrs) ),\r
+      $slots: i => (shallowReadonly(i.slots) ),\r
+      $refs: i => (shallowReadonly(i.refs) ),\r
+      $parent: i => getPublicInstance(i.parent),\r
+      $root: i => getPublicInstance(i.root),\r
+      $emit: i => i.emit,\r
+      $options: i => (resolveMergedOptions(i) ),\r
+      $forceUpdate: i => () => queueJob(i.update),\r
+      $nextTick: i => nextTick.bind(i.proxy),\r
+      $watch: i => (instanceWatch.bind(i) )\r
+  });\r
+  const PublicInstanceProxyHandlers = {\r
+      get({ _: instance }, key) {\r
+          const { ctx, setupState, data, props, accessCache, type, appContext } = instance;\r
+          // for internal formatters to know that this is a Vue instance\r
+          if (key === '__isVue') {\r
+              return true;\r
+          }\r
+          // prioritize <script setup> bindings during dev.\r
+          // this allows even properties that start with _ or $ to be used - so that\r
+          // it aligns with the production behavior where the render fn is inlined and\r
+          // indeed has access to all declared variables.\r
+          if (setupState !== EMPTY_OBJ &&\r
+              setupState.__isScriptSetup &&\r
+              hasOwn(setupState, key)) {\r
+              return setupState[key];\r
+          }\r
+          // data / props / ctx\r
+          // This getter gets called for every property access on the render context\r
+          // during render and is a major hotspot. The most expensive part of this\r
+          // is the multiple hasOwn() calls. It's much faster to do a simple property\r
+          // access on a plain object, so we use an accessCache object (with null\r
+          // prototype) to memoize what access type a key corresponds to.\r
+          let normalizedProps;\r
+          if (key[0] !== '$') {\r
+              const n = accessCache[key];\r
+              if (n !== undefined) {\r
+                  switch (n) {\r
+                      case 0 /* SETUP */:\r
+                          return setupState[key];\r
+                      case 1 /* DATA */:\r
+                          return data[key];\r
+                      case 3 /* CONTEXT */:\r
+                          return ctx[key];\r
+                      case 2 /* PROPS */:\r
+                          return props[key];\r
+                      // default: just fallthrough\r
+                  }\r
+              }\r
+              else if (setupState !== EMPTY_OBJ && hasOwn(setupState, key)) {\r
+                  accessCache[key] = 0 /* SETUP */;\r
+                  return setupState[key];\r
+              }\r
+              else if (data !== EMPTY_OBJ && hasOwn(data, key)) {\r
+                  accessCache[key] = 1 /* DATA */;\r
+                  return data[key];\r
+              }\r
+              else if (\r
+              // only cache other properties when instance has declared (thus stable)\r
+              // props\r
+              (normalizedProps = instance.propsOptions[0]) &&\r
+                  hasOwn(normalizedProps, key)) {\r
+                  accessCache[key] = 2 /* PROPS */;\r
+                  return props[key];\r
+              }\r
+              else if (ctx !== EMPTY_OBJ && hasOwn(ctx, key)) {\r
+                  accessCache[key] = 3 /* CONTEXT */;\r
+                  return ctx[key];\r
+              }\r
+              else if (shouldCacheAccess) {\r
+                  accessCache[key] = 4 /* OTHER */;\r
+              }\r
+          }\r
+          const publicGetter = publicPropertiesMap[key];\r
+          let cssModule, globalProperties;\r
+          // public $xxx properties\r
+          if (publicGetter) {\r
+              if (key === '$attrs') {\r
+                  track(instance, "get" /* GET */, key);\r
+                  markAttrsAccessed();\r
+              }\r
+              return publicGetter(instance);\r
+          }\r
+          else if (\r
+          // css module (injected by vue-loader)\r
+          (cssModule = type.__cssModules) &&\r
+              (cssModule = cssModule[key])) {\r
+              return cssModule;\r
+          }\r
+          else if (ctx !== EMPTY_OBJ && hasOwn(ctx, key)) {\r
+              // user may set custom properties to `this` that start with `$`\r
+              accessCache[key] = 3 /* CONTEXT */;\r
+              return ctx[key];\r
+          }\r
+          else if (\r
+          // global properties\r
+          ((globalProperties = appContext.config.globalProperties),\r
+              hasOwn(globalProperties, key))) {\r
+              {\r
+                  return globalProperties[key];\r
+              }\r
+          }\r
+          else if (currentRenderingInstance &&\r
+              (!isString(key) ||\r
+                  // #1091 avoid internal isRef/isVNode checks on component instance leading\r
+                  // to infinite warning loop\r
+                  key.indexOf('__v') !== 0)) {\r
+              if (data !== EMPTY_OBJ &&\r
+                  (key[0] === '$' || key[0] === '_') &&\r
+                  hasOwn(data, key)) {\r
+                  warn$1(`Property ${JSON.stringify(key)} must be accessed via $data because it starts with a reserved ` +\r
+                      `character ("$" or "_") and is not proxied on the render context.`);\r
+              }\r
+              else if (instance === currentRenderingInstance) {\r
+                  warn$1(`Property ${JSON.stringify(key)} was accessed during render ` +\r
+                      `but is not defined on instance.`);\r
+              }\r
+          }\r
+      },\r
+      set({ _: instance }, key, value) {\r
+          const { data, setupState, ctx } = instance;\r
+          if (setupState !== EMPTY_OBJ && hasOwn(setupState, key)) {\r
+              setupState[key] = value;\r
+          }\r
+          else if (data !== EMPTY_OBJ && hasOwn(data, key)) {\r
+              data[key] = value;\r
+          }\r
+          else if (hasOwn(instance.props, key)) {\r
+              warn$1(`Attempting to mutate prop "${key}". Props are readonly.`, instance);\r
+              return false;\r
+          }\r
+          if (key[0] === '$' && key.slice(1) in instance) {\r
+              warn$1(`Attempting to mutate public property "${key}". ` +\r
+                      `Properties starting with $ are reserved and readonly.`, instance);\r
+              return false;\r
+          }\r
+          else {\r
+              if (key in instance.appContext.config.globalProperties) {\r
+                  Object.defineProperty(ctx, key, {\r
+                      enumerable: true,\r
+                      configurable: true,\r
+                      value\r
+                  });\r
+              }\r
+              else {\r
+                  ctx[key] = value;\r
+              }\r
+          }\r
+          return true;\r
+      },\r
+      has({ _: { data, setupState, accessCache, ctx, appContext, propsOptions } }, key) {\r
+          let normalizedProps;\r
+          return (accessCache[key] !== undefined ||\r
+              (data !== EMPTY_OBJ && hasOwn(data, key)) ||\r
+              (setupState !== EMPTY_OBJ && hasOwn(setupState, key)) ||\r
+              ((normalizedProps = propsOptions[0]) && hasOwn(normalizedProps, key)) ||\r
+              hasOwn(ctx, key) ||\r
+              hasOwn(publicPropertiesMap, key) ||\r
+              hasOwn(appContext.config.globalProperties, key));\r
+      }\r
+  };\r
+  {\r
+      PublicInstanceProxyHandlers.ownKeys = (target) => {\r
+          warn$1(`Avoid app logic that relies on enumerating keys on a component instance. ` +\r
+              `The keys will be empty in production mode to avoid performance overhead.`);\r
+          return Reflect.ownKeys(target);\r
+      };\r
+  }\r
+  const RuntimeCompiledPublicInstanceProxyHandlers = /*#__PURE__*/ extend({}, PublicInstanceProxyHandlers, {\r
+      get(target, key) {\r
+          // fast path for unscopables when using `with` block\r
+          if (key === Symbol.unscopables) {\r
+              return;\r
+          }\r
+          return PublicInstanceProxyHandlers.get(target, key, target);\r
+      },\r
+      has(_, key) {\r
+          const has = key[0] !== '_' && !isGloballyWhitelisted(key);\r
+          if (!has && PublicInstanceProxyHandlers.has(_, key)) {\r
+              warn$1(`Property ${JSON.stringify(key)} should not start with _ which is a reserved prefix for Vue internals.`);\r
+          }\r
+          return has;\r
+      }\r
+  });\r
+  // dev only\r
+  // In dev mode, the proxy target exposes the same properties as seen on `this`\r
+  // for easier console inspection. In prod mode it will be an empty object so\r
+  // these properties definitions can be skipped.\r
+  function createDevRenderContext(instance) {\r
+      const target = {};\r
+      // expose internal instance for proxy handlers\r
+      Object.defineProperty(target, `_`, {\r
+          configurable: true,\r
+          enumerable: false,\r
+          get: () => instance\r
+      });\r
+      // expose public properties\r
+      Object.keys(publicPropertiesMap).forEach(key => {\r
+          Object.defineProperty(target, key, {\r
+              configurable: true,\r
+              enumerable: false,\r
+              get: () => publicPropertiesMap[key](instance),\r
+              // intercepted by the proxy so no need for implementation,\r
+              // but needed to prevent set errors\r
+              set: NOOP\r
+          });\r
+      });\r
+      return target;\r
+  }\r
+  // dev only\r
+  function exposePropsOnRenderContext(instance) {\r
+      const { ctx, propsOptions: [propsOptions] } = instance;\r
+      if (propsOptions) {\r
+          Object.keys(propsOptions).forEach(key => {\r
+              Object.defineProperty(ctx, key, {\r
+                  enumerable: true,\r
+                  configurable: true,\r
+                  get: () => instance.props[key],\r
+                  set: NOOP\r
+              });\r
+          });\r
+      }\r
+  }\r
+  // dev only\r
+  function exposeSetupStateOnRenderContext(instance) {\r
+      const { ctx, setupState } = instance;\r
+      Object.keys(toRaw(setupState)).forEach(key => {\r
+          if (!setupState.__isScriptSetup && (key[0] === '$' || key[0] === '_')) {\r
+              warn$1(`setup() return property ${JSON.stringify(key)} should not start with "$" or "_" ` +\r
+                  `which are reserved prefixes for Vue internals.`);\r
+              return;\r
+          }\r
+          Object.defineProperty(ctx, key, {\r
+              enumerable: true,\r
+              configurable: true,\r
+              get: () => setupState[key],\r
+              set: NOOP\r
+          });\r
+      });\r
+  }
+
+  const emptyAppContext = createAppContext();\r
+  let uid$1 = 0;\r
+  function createComponentInstance(vnode, parent, suspense) {\r
+      const type = vnode.type;\r
+      // inherit parent app context - or - if root, adopt from root vnode\r
+      const appContext = (parent ? parent.appContext : vnode.appContext) || emptyAppContext;\r
+      const instance = {\r
+          uid: uid$1++,\r
+          vnode,\r
+          type,\r
+          parent,\r
+          appContext,\r
+          root: null,\r
+          next: null,\r
+          subTree: null,\r
+          update: null,\r
+          scope: new EffectScope(true /* detached */),\r
+          render: null,\r
+          proxy: null,\r
+          exposed: null,\r
+          exposeProxy: null,\r
+          withProxy: null,\r
+          provides: parent ? parent.provides : Object.create(appContext.provides),\r
+          accessCache: null,\r
+          renderCache: [],\r
+          // local resovled assets\r
+          components: null,\r
+          directives: null,\r
+          // resolved props and emits options\r
+          propsOptions: normalizePropsOptions(type, appContext),\r
+          emitsOptions: normalizeEmitsOptions(type, appContext),\r
+          // emit\r
+          emit: null,\r
+          emitted: null,\r
+          // props default value\r
+          propsDefaults: EMPTY_OBJ,\r
+          // inheritAttrs\r
+          inheritAttrs: type.inheritAttrs,\r
+          // state\r
+          ctx: EMPTY_OBJ,\r
+          data: EMPTY_OBJ,\r
+          props: EMPTY_OBJ,\r
+          attrs: EMPTY_OBJ,\r
+          slots: EMPTY_OBJ,\r
+          refs: EMPTY_OBJ,\r
+          setupState: EMPTY_OBJ,\r
+          setupContext: null,\r
+          // suspense related\r
+          suspense,\r
+          suspenseId: suspense ? suspense.pendingId : 0,\r
+          asyncDep: null,\r
+          asyncResolved: false,\r
+          // lifecycle hooks\r
+          // not using enums here because it results in computed properties\r
+          isMounted: false,\r
+          isUnmounted: false,\r
+          isDeactivated: false,\r
+          bc: null,\r
+          c: null,\r
+          bm: null,\r
+          m: null,\r
+          bu: null,\r
+          u: null,\r
+          um: null,\r
+          bum: null,\r
+          da: null,\r
+          a: null,\r
+          rtg: null,\r
+          rtc: null,\r
+          ec: null,\r
+          sp: null\r
+      };\r
+      {\r
+          instance.ctx = createDevRenderContext(instance);\r
+      }\r
+      instance.root = parent ? parent.root : instance;\r
+      instance.emit = emit.bind(null, instance);\r
+      // apply custom element special handling\r
+      if (vnode.ce) {\r
+          vnode.ce(instance);\r
+      }\r
+      return instance;\r
+  }\r
+  let currentInstance = null;\r
+  const getCurrentInstance = () => currentInstance || currentRenderingInstance;\r
+  const setCurrentInstance = (instance) => {\r
+      currentInstance = instance;\r
+      instance.scope.on();\r
+  };\r
+  const unsetCurrentInstance = () => {\r
+      currentInstance && currentInstance.scope.off();\r
+      currentInstance = null;\r
+  };\r
+  const isBuiltInTag = /*#__PURE__*/ makeMap('slot,component');\r
+  function validateComponentName(name, config) {\r
+      const appIsNativeTag = config.isNativeTag || NO;\r
+      if (isBuiltInTag(name) || appIsNativeTag(name)) {\r
+          warn$1('Do not use built-in or reserved HTML elements as component id: ' + name);\r
+      }\r
+  }\r
+  function isStatefulComponent(instance) {\r
+      return instance.vnode.shapeFlag & 4 /* STATEFUL_COMPONENT */;\r
+  }\r
+  let isInSSRComponentSetup = false;\r
+  function setupComponent(instance, isSSR = false) {\r
+      isInSSRComponentSetup = isSSR;\r
+      const { props, children } = instance.vnode;\r
+      const isStateful = isStatefulComponent(instance);\r
+      initProps(instance, props, isStateful, isSSR);\r
+      initSlots(instance, children);\r
+      const setupResult = isStateful\r
+          ? setupStatefulComponent(instance, isSSR)\r
+          : undefined;\r
+      isInSSRComponentSetup = false;\r
+      return setupResult;\r
+  }\r
+  function setupStatefulComponent(instance, isSSR) {\r
+      const Component = instance.type;\r
+      {\r
+          if (Component.name) {\r
+              validateComponentName(Component.name, instance.appContext.config);\r
+          }\r
+          if (Component.components) {\r
+              const names = Object.keys(Component.components);\r
+              for (let i = 0; i < names.length; i++) {\r
+                  validateComponentName(names[i], instance.appContext.config);\r
+              }\r
+          }\r
+          if (Component.directives) {\r
+              const names = Object.keys(Component.directives);\r
+              for (let i = 0; i < names.length; i++) {\r
+                  validateDirectiveName(names[i]);\r
+              }\r
+          }\r
+          if (Component.compilerOptions && isRuntimeOnly()) {\r
+              warn$1(`"compilerOptions" is only supported when using a build of Vue that ` +\r
+                  `includes the runtime compiler. Since you are using a runtime-only ` +\r
+                  `build, the options should be passed via your build tool config instead.`);\r
+          }\r
+      }\r
+      // 0. create render proxy property access cache\r
+      instance.accessCache = Object.create(null);\r
+      // 1. create public instance / render proxy\r
+      // also mark it raw so it's never observed\r
+      instance.proxy = markRaw(new Proxy(instance.ctx, PublicInstanceProxyHandlers));\r
+      {\r
+          exposePropsOnRenderContext(instance);\r
+      }\r
+      // 2. call setup()\r
+      const { setup } = Component;\r
+      if (setup) {\r
+          const setupContext = (instance.setupContext =\r
+              setup.length > 1 ? createSetupContext(instance) : null);\r
+          setCurrentInstance(instance);\r
+          pauseTracking();\r
+          const setupResult = callWithErrorHandling(setup, instance, 0 /* SETUP_FUNCTION */, [shallowReadonly(instance.props) , setupContext]);\r
+          resetTracking();\r
+          unsetCurrentInstance();\r
+          if (isPromise(setupResult)) {\r
+              setupResult.then(unsetCurrentInstance, unsetCurrentInstance);\r
+              if (isSSR) {\r
+                  // return the promise so server-renderer can wait on it\r
+                  return setupResult\r
+                      .then((resolvedResult) => {\r
+                      handleSetupResult(instance, resolvedResult, isSSR);\r
+                  })\r
+                      .catch(e => {\r
+                      handleError(e, instance, 0 /* SETUP_FUNCTION */);\r
+                  });\r
+              }\r
+              else {\r
+                  // async setup returned Promise.\r
+                  // bail here and wait for re-entry.\r
+                  instance.asyncDep = setupResult;\r
+              }\r
+          }\r
+          else {\r
+              handleSetupResult(instance, setupResult, isSSR);\r
+          }\r
+      }\r
+      else {\r
+          finishComponentSetup(instance, isSSR);\r
+      }\r
+  }\r
+  function handleSetupResult(instance, setupResult, isSSR) {\r
+      if (isFunction(setupResult)) {\r
+          // setup returned an inline render function\r
+          {\r
+              instance.render = setupResult;\r
+          }\r
+      }\r
+      else if (isObject(setupResult)) {\r
+          if (isVNode(setupResult)) {\r
+              warn$1(`setup() should not return VNodes directly - ` +\r
+                  `return a render function instead.`);\r
+          }\r
+          // setup returned bindings.\r
+          // assuming a render function compiled from template is present.\r
+          {\r
+              instance.devtoolsRawSetupState = setupResult;\r
+          }\r
+          instance.setupState = proxyRefs(setupResult);\r
+          {\r
+              exposeSetupStateOnRenderContext(instance);\r
+          }\r
+      }\r
+      else if (setupResult !== undefined) {\r
+          warn$1(`setup() should return an object. Received: ${setupResult === null ? 'null' : typeof setupResult}`);\r
+      }\r
+      finishComponentSetup(instance, isSSR);\r
+  }\r
+  let compile;\r
+  let installWithProxy;\r
+  /**\r
+   * For runtime-dom to register the compiler.\r
+   * Note the exported method uses any to avoid d.ts relying on the compiler types.\r
+   */\r
+  function registerRuntimeCompiler(_compile) {\r
+      compile = _compile;\r
+      installWithProxy = i => {\r
+          if (i.render._rc) {\r
+              i.withProxy = new Proxy(i.ctx, RuntimeCompiledPublicInstanceProxyHandlers);\r
+          }\r
+      };\r
+  }\r
+  // dev only\r
+  const isRuntimeOnly = () => !compile;\r
+  function finishComponentSetup(instance, isSSR, skipOptions) {\r
+      const Component = instance.type;\r
+      // template / render function normalization\r
+      if (!instance.render) {\r
+          // could be set from setup()\r
+          if (compile && !Component.render) {\r
+              const template = Component.template;\r
+              if (template) {\r
+                  {\r
+                      startMeasure(instance, `compile`);\r
+                  }\r
+                  const { isCustomElement, compilerOptions } = instance.appContext.config;\r
+                  const { delimiters, compilerOptions: componentCompilerOptions } = Component;\r
+                  const finalCompilerOptions = extend(extend({\r
+                      isCustomElement,\r
+                      delimiters\r
+                  }, compilerOptions), componentCompilerOptions);\r
+                  Component.render = compile(template, finalCompilerOptions);\r
+                  {\r
+                      endMeasure(instance, `compile`);\r
+                  }\r
+              }\r
+          }\r
+          instance.render = (Component.render || NOOP);\r
+          // for runtime-compiled render functions using `with` blocks, the render\r
+          // proxy used needs a different `has` handler which is more performant and\r
+          // also only allows a whitelist of globals to fallthrough.\r
+          if (installWithProxy) {\r
+              installWithProxy(instance);\r
+          }\r
+      }\r
+      // support for 2.x options\r
+      {\r
+          setCurrentInstance(instance);\r
+          pauseTracking();\r
+          applyOptions(instance);\r
+          resetTracking();\r
+          unsetCurrentInstance();\r
+      }\r
+      // warn missing template/render\r
+      // the runtime compilation of template in SSR is done by server-render\r
+      if (!Component.render && instance.render === NOOP && !isSSR) {\r
+          /* istanbul ignore if */\r
+          if (!compile && Component.template) {\r
+              warn$1(`Component provided template option but ` +\r
+                  `runtime compilation is not supported in this build of Vue.` +\r
+                  (` Use "vue.global.js" instead.`\r
+                              ) /* should not happen */);\r
+          }\r
+          else {\r
+              warn$1(`Component is missing template or render function.`);\r
+          }\r
+      }\r
+  }\r
+  function createAttrsProxy(instance) {\r
+      return new Proxy(instance.attrs, {\r
+              get(target, key) {\r
+                  markAttrsAccessed();\r
+                  track(instance, "get" /* GET */, '$attrs');\r
+                  return target[key];\r
+              },\r
+              set() {\r
+                  warn$1(`setupContext.attrs is readonly.`);\r
+                  return false;\r
+              },\r
+              deleteProperty() {\r
+                  warn$1(`setupContext.attrs is readonly.`);\r
+                  return false;\r
+              }\r
+          }\r
+          );\r
+  }\r
+  function createSetupContext(instance) {\r
+      const expose = exposed => {\r
+          if (instance.exposed) {\r
+              warn$1(`expose() should be called only once per setup().`);\r
+          }\r
+          instance.exposed = exposed || {};\r
+      };\r
+      let attrs;\r
+      {\r
+          // We use getters in dev in case libs like test-utils overwrite instance\r
+          // properties (overwrites should not be done in prod)\r
+          return Object.freeze({\r
+              get attrs() {\r
+                  return attrs || (attrs = createAttrsProxy(instance));\r
+              },\r
+              get slots() {\r
+                  return shallowReadonly(instance.slots);\r
+              },\r
+              get emit() {\r
+                  return (event, ...args) => instance.emit(event, ...args);\r
+              },\r
+              expose\r
+          });\r
+      }\r
+  }\r
+  function getExposeProxy(instance) {\r
+      if (instance.exposed) {\r
+          return (instance.exposeProxy ||\r
+              (instance.exposeProxy = new Proxy(proxyRefs(markRaw(instance.exposed)), {\r
+                  get(target, key) {\r
+                      if (key in target) {\r
+                          return target[key];\r
+                      }\r
+                      else if (key in publicPropertiesMap) {\r
+                          return publicPropertiesMap[key](instance);\r
+                      }\r
+                  }\r
+              })));\r
+      }\r
+  }\r
+  const classifyRE = /(?:^|[-_])(\w)/g;\r
+  const classify = (str) => str.replace(classifyRE, c => c.toUpperCase()).replace(/[-_]/g, '');\r
+  function getComponentName(Component) {\r
+      return isFunction(Component)\r
+          ? Component.displayName || Component.name\r
+          : Component.name;\r
+  }\r
+  /* istanbul ignore next */\r
+  function formatComponentName(instance, Component, isRoot = false) {\r
+      let name = getComponentName(Component);\r
+      if (!name && Component.__file) {\r
+          const match = Component.__file.match(/([^/\\]+)\.\w+$/);\r
+          if (match) {\r
+              name = match[1];\r
+          }\r
+      }\r
+      if (!name && instance && instance.parent) {\r
+          // try to infer the name based on reverse resolution\r
+          const inferFromRegistry = (registry) => {\r
+              for (const key in registry) {\r
+                  if (registry[key] === Component) {\r
+                      return key;\r
+                  }\r
+              }\r
+          };\r
+          name =\r
+              inferFromRegistry(instance.components ||\r
+                  instance.parent.type.components) || inferFromRegistry(instance.appContext.components);\r
+      }\r
+      return name ? classify(name) : isRoot ? `App` : `Anonymous`;\r
+  }\r
+  function isClassComponent(value) {\r
+      return isFunction(value) && '__vccOpts' in value;\r
+  }
+
+  const stack = [];\r
+  function pushWarningContext(vnode) {\r
+      stack.push(vnode);\r
+  }\r
+  function popWarningContext() {\r
+      stack.pop();\r
+  }\r
+  function warn$1(msg, ...args) {\r
+      // avoid props formatting or warn handler tracking deps that might be mutated\r
+      // during patch, leading to infinite recursion.\r
+      pauseTracking();\r
+      const instance = stack.length ? stack[stack.length - 1].component : null;\r
+      const appWarnHandler = instance && instance.appContext.config.warnHandler;\r
+      const trace = getComponentTrace();\r
+      if (appWarnHandler) {\r
+          callWithErrorHandling(appWarnHandler, instance, 11 /* APP_WARN_HANDLER */, [\r
+              msg + args.join(''),\r
+              instance && instance.proxy,\r
+              trace\r
+                  .map(({ vnode }) => `at <${formatComponentName(instance, vnode.type)}>`)\r
+                  .join('\n'),\r
+              trace\r
+          ]);\r
+      }\r
+      else {\r
+          const warnArgs = [`[Vue warn]: ${msg}`, ...args];\r
+          /* istanbul ignore if */\r
+          if (trace.length &&\r
+              // avoid spamming console during tests\r
+              !false) {\r
+              warnArgs.push(`\n`, ...formatTrace(trace));\r
+          }\r
+          console.warn(...warnArgs);\r
+      }\r
+      resetTracking();\r
+  }\r
+  function getComponentTrace() {\r
+      let currentVNode = stack[stack.length - 1];\r
+      if (!currentVNode) {\r
+          return [];\r
+      }\r
+      // we can't just use the stack because it will be incomplete during updates\r
+      // that did not start from the root. Re-construct the parent chain using\r
+      // instance parent pointers.\r
+      const normalizedStack = [];\r
+      while (currentVNode) {\r
+          const last = normalizedStack[0];\r
+          if (last && last.vnode === currentVNode) {\r
+              last.recurseCount++;\r
+          }\r
+          else {\r
+              normalizedStack.push({\r
+                  vnode: currentVNode,\r
+                  recurseCount: 0\r
+              });\r
+          }\r
+          const parentInstance = currentVNode.component && currentVNode.component.parent;\r
+          currentVNode = parentInstance && parentInstance.vnode;\r
+      }\r
+      return normalizedStack;\r
+  }\r
+  /* istanbul ignore next */\r
+  function formatTrace(trace) {\r
+      const logs = [];\r
+      trace.forEach((entry, i) => {\r
+          logs.push(...(i === 0 ? [] : [`\n`]), ...formatTraceEntry(entry));\r
+      });\r
+      return logs;\r
+  }\r
+  function formatTraceEntry({ vnode, recurseCount }) {\r
+      const postfix = recurseCount > 0 ? `... (${recurseCount} recursive calls)` : ``;\r
+      const isRoot = vnode.component ? vnode.component.parent == null : false;\r
+      const open = ` at <${formatComponentName(vnode.component, vnode.type, isRoot)}`;\r
+      const close = `>` + postfix;\r
+      return vnode.props\r
+          ? [open, ...formatProps(vnode.props), close]\r
+          : [open + close];\r
+  }\r
+  /* istanbul ignore next */\r
+  function formatProps(props) {\r
+      const res = [];\r
+      const keys = Object.keys(props);\r
+      keys.slice(0, 3).forEach(key => {\r
+          res.push(...formatProp(key, props[key]));\r
+      });\r
+      if (keys.length > 3) {\r
+          res.push(` ...`);\r
+      }\r
+      return res;\r
+  }\r
+  /* istanbul ignore next */\r
+  function formatProp(key, value, raw) {\r
+      if (isString(value)) {\r
+          value = JSON.stringify(value);\r
+          return raw ? value : [`${key}=${value}`];\r
+      }\r
+      else if (typeof value === 'number' ||\r
+          typeof value === 'boolean' ||\r
+          value == null) {\r
+          return raw ? value : [`${key}=${value}`];\r
+      }\r
+      else if (isRef(value)) {\r
+          value = formatProp(key, toRaw(value.value), true);\r
+          return raw ? value : [`${key}=Ref<`, value, `>`];\r
+      }\r
+      else if (isFunction(value)) {\r
+          return [`${key}=fn${value.name ? `<${value.name}>` : ``}`];\r
+      }\r
+      else {\r
+          value = toRaw(value);\r
+          return raw ? value : [`${key}=`, value];\r
+      }\r
+  }
+
+  const ErrorTypeStrings = {\r
+      ["sp" /* SERVER_PREFETCH */]: 'serverPrefetch hook',\r
+      ["bc" /* BEFORE_CREATE */]: 'beforeCreate hook',\r
+      ["c" /* CREATED */]: 'created hook',\r
+      ["bm" /* BEFORE_MOUNT */]: 'beforeMount hook',\r
+      ["m" /* MOUNTED */]: 'mounted hook',\r
+      ["bu" /* BEFORE_UPDATE */]: 'beforeUpdate hook',\r
+      ["u" /* UPDATED */]: 'updated',\r
+      ["bum" /* BEFORE_UNMOUNT */]: 'beforeUnmount hook',\r
+      ["um" /* UNMOUNTED */]: 'unmounted hook',\r
+      ["a" /* ACTIVATED */]: 'activated hook',\r
+      ["da" /* DEACTIVATED */]: 'deactivated hook',\r
+      ["ec" /* ERROR_CAPTURED */]: 'errorCaptured hook',\r
+      ["rtc" /* RENDER_TRACKED */]: 'renderTracked hook',\r
+      ["rtg" /* RENDER_TRIGGERED */]: 'renderTriggered hook',\r
+      [0 /* SETUP_FUNCTION */]: 'setup function',\r
+      [1 /* RENDER_FUNCTION */]: 'render function',\r
+      [2 /* WATCH_GETTER */]: 'watcher getter',\r
+      [3 /* WATCH_CALLBACK */]: 'watcher callback',\r
+      [4 /* WATCH_CLEANUP */]: 'watcher cleanup function',\r
+      [5 /* NATIVE_EVENT_HANDLER */]: 'native event handler',\r
+      [6 /* COMPONENT_EVENT_HANDLER */]: 'component event handler',\r
+      [7 /* VNODE_HOOK */]: 'vnode hook',\r
+      [8 /* DIRECTIVE_HOOK */]: 'directive hook',\r
+      [9 /* TRANSITION_HOOK */]: 'transition hook',\r
+      [10 /* APP_ERROR_HANDLER */]: 'app errorHandler',\r
+      [11 /* APP_WARN_HANDLER */]: 'app warnHandler',\r
+      [12 /* FUNCTION_REF */]: 'ref function',\r
+      [13 /* ASYNC_COMPONENT_LOADER */]: 'async component loader',\r
+      [14 /* SCHEDULER */]: 'scheduler flush. This is likely a Vue internals bug. ' +\r
+          'Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/vue-next'\r
+  };\r
+  function callWithErrorHandling(fn, instance, type, args) {\r
+      let res;\r
+      try {\r
+          res = args ? fn(...args) : fn();\r
+      }\r
+      catch (err) {\r
+          handleError(err, instance, type);\r
+      }\r
+      return res;\r
+  }\r
+  function callWithAsyncErrorHandling(fn, instance, type, args) {\r
+      if (isFunction(fn)) {\r
+          const res = callWithErrorHandling(fn, instance, type, args);\r
+          if (res && isPromise(res)) {\r
+              res.catch(err => {\r
+                  handleError(err, instance, type);\r
+              });\r
+          }\r
+          return res;\r
+      }\r
+      const values = [];\r
+      for (let i = 0; i < fn.length; i++) {\r
+          values.push(callWithAsyncErrorHandling(fn[i], instance, type, args));\r
+      }\r
+      return values;\r
+  }\r
+  function handleError(err, instance, type, throwInDev = true) {\r
+      const contextVNode = instance ? instance.vnode : null;\r
+      if (instance) {\r
+          let cur = instance.parent;\r
+          // the exposed instance is the render proxy to keep it consistent with 2.x\r
+          const exposedInstance = instance.proxy;\r
+          // in production the hook receives only the error code\r
+          const errorInfo = ErrorTypeStrings[type] ;\r
+          while (cur) {\r
+              const errorCapturedHooks = cur.ec;\r
+              if (errorCapturedHooks) {\r
+                  for (let i = 0; i < errorCapturedHooks.length; i++) {\r
+                      if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) {\r
+                          return;\r
+                      }\r
+                  }\r
+              }\r
+              cur = cur.parent;\r
+          }\r
+          // app-level handling\r
+          const appErrorHandler = instance.appContext.config.errorHandler;\r
+          if (appErrorHandler) {\r
+              callWithErrorHandling(appErrorHandler, null, 10 /* APP_ERROR_HANDLER */, [err, exposedInstance, errorInfo]);\r
+              return;\r
+          }\r
+      }\r
+      logError(err, type, contextVNode, throwInDev);\r
+  }\r
+  function logError(err, type, contextVNode, throwInDev = true) {\r
+      {\r
+          const info = ErrorTypeStrings[type];\r
+          if (contextVNode) {\r
+              pushWarningContext(contextVNode);\r
+          }\r
+          warn$1(`Unhandled error${info ? ` during execution of ${info}` : ``}`);\r
+          if (contextVNode) {\r
+              popWarningContext();\r
+          }\r
+          // crash in dev by default so it's more noticeable\r
+          if (throwInDev) {\r
+              throw err;\r
+          }\r
+          else {\r
+              console.error(err);\r
+          }\r
+      }\r
+  }
+
+  let isFlushing = false;\r
+  let isFlushPending = false;\r
+  const queue = [];\r
+  let flushIndex = 0;\r
+  const pendingPreFlushCbs = [];\r
+  let activePreFlushCbs = null;\r
+  let preFlushIndex = 0;\r
+  const pendingPostFlushCbs = [];\r
+  let activePostFlushCbs = null;\r
+  let postFlushIndex = 0;\r
+  const resolvedPromise = Promise.resolve();\r
+  let currentFlushPromise = null;\r
+  let currentPreFlushParentJob = null;\r
+  const RECURSION_LIMIT = 100;\r
+  function nextTick(fn) {\r
+      const p = currentFlushPromise || resolvedPromise;\r
+      return fn ? p.then(this ? fn.bind(this) : fn) : p;\r
+  }\r
+  // #2768\r
+  // Use binary-search to find a suitable position in the queue,\r
+  // so that the queue maintains the increasing order of job's id,\r
+  // which can prevent the job from being skipped and also can avoid repeated patching.\r
+  function findInsertionIndex(id) {\r
+      // the start index should be `flushIndex + 1`\r
+      let start = flushIndex + 1;\r
+      let end = queue.length;\r
+      while (start < end) {\r
+          const middle = (start + end) >>> 1;\r
+          const middleJobId = getId(queue[middle]);\r
+          middleJobId < id ? (start = middle + 1) : (end = middle);\r
+      }\r
+      return start;\r
+  }\r
+  function queueJob(job) {\r
+      // the dedupe search uses the startIndex argument of Array.includes()\r
+      // by default the search index includes the current job that is being run\r
+      // so it cannot recursively trigger itself again.\r
+      // if the job is a watch() callback, the search will start with a +1 index to\r
+      // allow it recursively trigger itself - it is the user's responsibility to\r
+      // ensure it doesn't end up in an infinite loop.\r
+      if ((!queue.length ||\r
+          !queue.includes(job, isFlushing && job.allowRecurse ? flushIndex + 1 : flushIndex)) &&\r
+          job !== currentPreFlushParentJob) {\r
+          if (job.id == null) {\r
+              queue.push(job);\r
+          }\r
+          else {\r
+              queue.splice(findInsertionIndex(job.id), 0, job);\r
+          }\r
+          queueFlush();\r
+      }\r
+  }\r
+  function queueFlush() {\r
+      if (!isFlushing && !isFlushPending) {\r
+          isFlushPending = true;\r
+          currentFlushPromise = resolvedPromise.then(flushJobs);\r
+      }\r
+  }\r
+  function invalidateJob(job) {\r
+      const i = queue.indexOf(job);\r
+      if (i > flushIndex) {\r
+          queue.splice(i, 1);\r
+      }\r
+  }\r
+  function queueCb(cb, activeQueue, pendingQueue, index) {\r
+      if (!isArray(cb)) {\r
+          if (!activeQueue ||\r
+              !activeQueue.includes(cb, cb.allowRecurse ? index + 1 : index)) {\r
+              pendingQueue.push(cb);\r
+          }\r
+      }\r
+      else {\r
+          // if cb is an array, it is a component lifecycle hook which can only be\r
+          // triggered by a job, which is already deduped in the main queue, so\r
+          // we can skip duplicate check here to improve perf\r
+          pendingQueue.push(...cb);\r
+      }\r
+      queueFlush();\r
+  }\r
+  function queuePreFlushCb(cb) {\r
+      queueCb(cb, activePreFlushCbs, pendingPreFlushCbs, preFlushIndex);\r
+  }\r
+  function queuePostFlushCb(cb) {\r
+      queueCb(cb, activePostFlushCbs, pendingPostFlushCbs, postFlushIndex);\r
+  }\r
+  function flushPreFlushCbs(seen, parentJob = null) {\r
+      if (pendingPreFlushCbs.length) {\r
+          currentPreFlushParentJob = parentJob;\r
+          activePreFlushCbs = [...new Set(pendingPreFlushCbs)];\r
+          pendingPreFlushCbs.length = 0;\r
+          {\r
+              seen = seen || new Map();\r
+          }\r
+          for (preFlushIndex = 0; preFlushIndex < activePreFlushCbs.length; preFlushIndex++) {\r
+              if (checkRecursiveUpdates(seen, activePreFlushCbs[preFlushIndex])) {\r
+                  continue;\r
+              }\r
+              activePreFlushCbs[preFlushIndex]();\r
+          }\r
+          activePreFlushCbs = null;\r
+          preFlushIndex = 0;\r
+          currentPreFlushParentJob = null;\r
+          // recursively flush until it drains\r
+          flushPreFlushCbs(seen, parentJob);\r
+      }\r
+  }\r
+  function flushPostFlushCbs(seen) {\r
+      if (pendingPostFlushCbs.length) {\r
+          const deduped = [...new Set(pendingPostFlushCbs)];\r
+          pendingPostFlushCbs.length = 0;\r
+          // #1947 already has active queue, nested flushPostFlushCbs call\r
+          if (activePostFlushCbs) {\r
+              activePostFlushCbs.push(...deduped);\r
+              return;\r
+          }\r
+          activePostFlushCbs = deduped;\r
+          {\r
+              seen = seen || new Map();\r
+          }\r
+          activePostFlushCbs.sort((a, b) => getId(a) - getId(b));\r
+          for (postFlushIndex = 0; postFlushIndex < activePostFlushCbs.length; postFlushIndex++) {\r
+              if (checkRecursiveUpdates(seen, activePostFlushCbs[postFlushIndex])) {\r
+                  continue;\r
+              }\r
+              activePostFlushCbs[postFlushIndex]();\r
+          }\r
+          activePostFlushCbs = null;\r
+          postFlushIndex = 0;\r
+      }\r
+  }\r
+  const getId = (job) => job.id == null ? Infinity : job.id;\r
+  function flushJobs(seen) {\r
+      isFlushPending = false;\r
+      isFlushing = true;\r
+      {\r
+          seen = seen || new Map();\r
+      }\r
+      flushPreFlushCbs(seen);\r
+      // Sort queue before flush.\r
+      // This ensures that:\r
+      // 1. Components are updated from parent to child. (because parent is always\r
+      //    created before the child so its render effect will have smaller\r
+      //    priority number)\r
+      // 2. If a component is unmounted during a parent component's update,\r
+      //    its update can be skipped.\r
+      queue.sort((a, b) => getId(a) - getId(b));\r
+      try {\r
+          for (flushIndex = 0; flushIndex < queue.length; flushIndex++) {\r
+              const job = queue[flushIndex];\r
+              if (job && job.active !== false) {\r
+                  if (true && checkRecursiveUpdates(seen, job)) {\r
+                      continue;\r
+                  }\r
+                  // console.log(`running:`, job.id)\r
+                  callWithErrorHandling(job, null, 14 /* SCHEDULER */);\r
+              }\r
+          }\r
+      }\r
+      finally {\r
+          flushIndex = 0;\r
+          queue.length = 0;\r
+          flushPostFlushCbs(seen);\r
+          isFlushing = false;\r
+          currentFlushPromise = null;\r
+          // some postFlushCb queued jobs!\r
+          // keep flushing until it drains.\r
+          if (queue.length ||\r
+              pendingPreFlushCbs.length ||\r
+              pendingPostFlushCbs.length) {\r
+              flushJobs(seen);\r
+          }\r
+      }\r
+  }\r
+  function checkRecursiveUpdates(seen, fn) {\r
+      if (!seen.has(fn)) {\r
+          seen.set(fn, 1);\r
+      }\r
+      else {\r
+          const count = seen.get(fn);\r
+          if (count > RECURSION_LIMIT) {\r
+              const instance = fn.ownerInstance;\r
+              const componentName = instance && getComponentName(instance.type);\r
+              warn$1(`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. ` +\r
+                  `This means you have a reactive effect that is mutating its own ` +\r
+                  `dependencies and thus recursively triggering itself. Possible sources ` +\r
+                  `include component template, render function, updated hook or ` +\r
+                  `watcher source function.`);\r
+              return true;\r
+          }\r
+          else {\r
+              seen.set(fn, count + 1);\r
+          }\r
+      }\r
+  }
+
+  // Simple effect.\r
+  function watchEffect(effect, options) {\r
+      return doWatch(effect, null, options);\r
+  }\r
+  function watchPostEffect(effect, options) {\r
+      return doWatch(effect, null, (Object.assign(options || {}, { flush: 'post' })\r
+          ));\r
+  }\r
+  function watchSyncEffect(effect, options) {\r
+      return doWatch(effect, null, (Object.assign(options || {}, { flush: 'sync' })\r
+          ));\r
+  }\r
+  // initial value for watchers to trigger on undefined initial values\r
+  const INITIAL_WATCHER_VALUE = {};\r
+  // implementation\r
+  function watch(source, cb, options) {\r
+      if (!isFunction(cb)) {\r
+          warn$1(`\`watch(fn, options?)\` signature has been moved to a separate API. ` +\r
+              `Use \`watchEffect(fn, options?)\` instead. \`watch\` now only ` +\r
+              `supports \`watch(source, cb, options?) signature.`);\r
+      }\r
+      return doWatch(source, cb, options);\r
+  }\r
+  function doWatch(source, cb, { immediate, deep, flush, onTrack, onTrigger } = EMPTY_OBJ) {\r
+      if (!cb) {\r
+          if (immediate !== undefined) {\r
+              warn$1(`watch() "immediate" option is only respected when using the ` +\r
+                  `watch(source, callback, options?) signature.`);\r
+          }\r
+          if (deep !== undefined) {\r
+              warn$1(`watch() "deep" option is only respected when using the ` +\r
+                  `watch(source, callback, options?) signature.`);\r
+          }\r
+      }\r
+      const warnInvalidSource = (s) => {\r
+          warn$1(`Invalid watch source: `, s, `A watch source can only be a getter/effect function, a ref, ` +\r
+              `a reactive object, or an array of these types.`);\r
+      };\r
+      const instance = currentInstance;\r
+      let getter;\r
+      let forceTrigger = false;\r
+      let isMultiSource = false;\r
+      if (isRef(source)) {\r
+          getter = () => source.value;\r
+          forceTrigger = !!source._shallow;\r
+      }\r
+      else if (isReactive(source)) {\r
+          getter = () => source;\r
+          deep = true;\r
+      }\r
+      else if (isArray(source)) {\r
+          isMultiSource = true;\r
+          forceTrigger = source.some(isReactive);\r
+          getter = () => source.map(s => {\r
+              if (isRef(s)) {\r
+                  return s.value;\r
+              }\r
+              else if (isReactive(s)) {\r
+                  return traverse(s);\r
+              }\r
+              else if (isFunction(s)) {\r
+                  return callWithErrorHandling(s, instance, 2 /* WATCH_GETTER */);\r
+              }\r
+              else {\r
+                  warnInvalidSource(s);\r
+              }\r
+          });\r
+      }\r
+      else if (isFunction(source)) {\r
+          if (cb) {\r
+              // getter with cb\r
+              getter = () => callWithErrorHandling(source, instance, 2 /* WATCH_GETTER */);\r
+          }\r
+          else {\r
+              // no cb -> simple effect\r
+              getter = () => {\r
+                  if (instance && instance.isUnmounted) {\r
+                      return;\r
+                  }\r
+                  if (cleanup) {\r
+                      cleanup();\r
+                  }\r
+                  return callWithAsyncErrorHandling(source, instance, 3 /* WATCH_CALLBACK */, [onInvalidate]);\r
+              };\r
+          }\r
+      }\r
+      else {\r
+          getter = NOOP;\r
+          warnInvalidSource(source);\r
+      }\r
+      if (cb && deep) {\r
+          const baseGetter = getter;\r
+          getter = () => traverse(baseGetter());\r
+      }\r
+      let cleanup;\r
+      let onInvalidate = (fn) => {\r
+          cleanup = effect.onStop = () => {\r
+              callWithErrorHandling(fn, instance, 4 /* WATCH_CLEANUP */);\r
+          };\r
+      };\r
+      let oldValue = isMultiSource ? [] : INITIAL_WATCHER_VALUE;\r
+      const job = () => {\r
+          if (!effect.active) {\r
+              return;\r
+          }\r
+          if (cb) {\r
+              // watch(source, cb)\r
+              const newValue = effect.run();\r
+              if (deep ||\r
+                  forceTrigger ||\r
+                  (isMultiSource\r
+                      ? newValue.some((v, i) => hasChanged(v, oldValue[i]))\r
+                      : hasChanged(newValue, oldValue)) ||\r
+                  (false  )) {\r
+                  // cleanup before running cb again\r
+                  if (cleanup) {\r
+                      cleanup();\r
+                  }\r
+                  callWithAsyncErrorHandling(cb, instance, 3 /* WATCH_CALLBACK */, [\r
+                      newValue,\r
+                      // pass undefined as the old value when it's changed for the first time\r
+                      oldValue === INITIAL_WATCHER_VALUE ? undefined : oldValue,\r
+                      onInvalidate\r
+                  ]);\r
+                  oldValue = newValue;\r
+              }\r
+          }\r
+          else {\r
+              // watchEffect\r
+              effect.run();\r
+          }\r
+      };\r
+      // important: mark the job as a watcher callback so that scheduler knows\r
+      // it is allowed to self-trigger (#1727)\r
+      job.allowRecurse = !!cb;\r
+      let scheduler;\r
+      if (flush === 'sync') {\r
+          scheduler = job; // the scheduler function gets called directly\r
+      }\r
+      else if (flush === 'post') {\r
+          scheduler = () => queuePostRenderEffect(job, instance && instance.suspense);\r
+      }\r
+      else {\r
+          // default: 'pre'\r
+          scheduler = () => {\r
+              if (!instance || instance.isMounted) {\r
+                  queuePreFlushCb(job);\r
+              }\r
+              else {\r
+                  // with 'pre' option, the first call must happen before\r
+                  // the component is mounted so it is called synchronously.\r
+                  job();\r
+              }\r
+          };\r
+      }\r
+      const effect = new ReactiveEffect(getter, scheduler);\r
+      {\r
+          effect.onTrack = onTrack;\r
+          effect.onTrigger = onTrigger;\r
+      }\r
+      // initial run\r
+      if (cb) {\r
+          if (immediate) {\r
+              job();\r
+          }\r
+          else {\r
+              oldValue = effect.run();\r
+          }\r
+      }\r
+      else if (flush === 'post') {\r
+          queuePostRenderEffect(effect.run.bind(effect), instance && instance.suspense);\r
+      }\r
+      else {\r
+          effect.run();\r
+      }\r
+      return () => {\r
+          effect.stop();\r
+          if (instance && instance.scope) {\r
+              remove(instance.scope.effects, effect);\r
+          }\r
+      };\r
+  }\r
+  // this.$watch\r
+  function instanceWatch(source, value, options) {\r
+      const publicThis = this.proxy;\r
+      const getter = isString(source)\r
+          ? source.includes('.')\r
+              ? createPathGetter(publicThis, source)\r
+              : () => publicThis[source]\r
+          : source.bind(publicThis, publicThis);\r
+      let cb;\r
+      if (isFunction(value)) {\r
+          cb = value;\r
+      }\r
+      else {\r
+          cb = value.handler;\r
+          options = value;\r
+      }\r
+      const cur = currentInstance;\r
+      setCurrentInstance(this);\r
+      const res = doWatch(getter, cb.bind(publicThis), options);\r
+      if (cur) {\r
+          setCurrentInstance(cur);\r
+      }\r
+      else {\r
+          unsetCurrentInstance();\r
+      }\r
+      return res;\r
+  }\r
+  function createPathGetter(ctx, path) {\r
+      const segments = path.split('.');\r
+      return () => {\r
+          let cur = ctx;\r
+          for (let i = 0; i < segments.length && cur; i++) {\r
+              cur = cur[segments[i]];\r
+          }\r
+          return cur;\r
+      };\r
+  }\r
+  function traverse(value, seen = new Set()) {\r
+      if (!isObject(value) || value["__v_skip" /* SKIP */]) {\r
+          return value;\r
+      }\r
+      seen = seen || new Set();\r
+      if (seen.has(value)) {\r
+          return value;\r
+      }\r
+      seen.add(value);\r
+      if (isRef(value)) {\r
+          traverse(value.value, seen);\r
+      }\r
+      else if (isArray(value)) {\r
+          for (let i = 0; i < value.length; i++) {\r
+              traverse(value[i], seen);\r
+          }\r
+      }\r
+      else if (isSet(value) || isMap(value)) {\r
+          value.forEach((v) => {\r
+              traverse(v, seen);\r
+          });\r
+      }\r
+      else if (isPlainObject(value)) {\r
+          for (const key in value) {\r
+              traverse(value[key], seen);\r
+          }\r
+      }\r
+      return value;\r
+  }
+
+  // dev only\r
+  const warnRuntimeUsage = (method) => warn$1(`${method}() is a compiler-hint helper that is only usable inside ` +\r
+      `<script setup> of a single file component. Its arguments should be ` +\r
+      `compiled away and passing it at runtime has no effect.`);\r
+  // implementation\r
+  function defineProps() {\r
+      {\r
+          warnRuntimeUsage(`defineProps`);\r
+      }\r
+      return null;\r
+  }\r
+  // implementation\r
+  function defineEmits() {\r
+      {\r
+          warnRuntimeUsage(`defineEmits`);\r
+      }\r
+      return null;\r
+  }\r
+  /**\r
+   * Vue `<script setup>` compiler macro for declaring a component's exposed\r
+   * instance properties when it is accessed by a parent component via template\r
+   * refs.\r
+   *\r
+   * `<script setup>` components are closed by default - i.e. varaibles inside\r
+   * the `<script setup>` scope is not exposed to parent unless explicitly exposed\r
+   * via `defineExpose`.\r
+   *\r
+   * This is only usable inside `<script setup>`, is compiled away in the\r
+   * output and should **not** be actually called at runtime.\r
+   */\r
+  function defineExpose(exposed) {\r
+      {\r
+          warnRuntimeUsage(`defineExpose`);\r
+      }\r
+  }\r
+  /**\r
+   * Vue `<script setup>` compiler macro for providing props default values when\r
+   * using type-based `defineProps` declaration.\r
+   *\r
+   * Example usage:\r
+   * ```ts\r
+   * withDefaults(defineProps<{\r
+   *   size?: number\r
+   *   labels?: string[]\r
+   * }>(), {\r
+   *   size: 3,\r
+   *   labels: () => ['default label']\r
+   * })\r
+   * ```\r
+   *\r
+   * This is only usable inside `<script setup>`, is compiled away in the output\r
+   * and should **not** be actually called at runtime.\r
+   */\r
+  function withDefaults(props, defaults) {\r
+      {\r
+          warnRuntimeUsage(`withDefaults`);\r
+      }\r
+      return null;\r
+  }\r
+  function useSlots() {\r
+      return getContext().slots;\r
+  }\r
+  function useAttrs() {\r
+      return getContext().attrs;\r
+  }\r
+  function getContext() {\r
+      const i = getCurrentInstance();\r
+      if (!i) {\r
+          warn$1(`useContext() called without active instance.`);\r
+      }\r
+      return i.setupContext || (i.setupContext = createSetupContext(i));\r
+  }\r
+  /**\r
+   * Runtime helper for merging default declarations. Imported by compiled code\r
+   * only.\r
+   * @internal\r
+   */\r
+  function mergeDefaults(\r
+  // the base props is compiler-generated and guaranteed to be in this shape.\r
+  props, defaults) {\r
+      for (const key in defaults) {\r
+          const val = props[key];\r
+          if (val) {\r
+              val.default = defaults[key];\r
+          }\r
+          else if (val === null) {\r
+              props[key] = { default: defaults[key] };\r
+          }\r
+          else {\r
+              warn$1(`props default key "${key}" has no corresponding declaration.`);\r
+          }\r
+      }\r
+      return props;\r
+  }\r
+  /**\r
+   * `<script setup>` helper for persisting the current instance context over\r
+   * async/await flows.\r
+   *\r
+   * `@vue/compiler-sfc` converts the following:\r
+   *\r
+   * ```ts\r
+   * const x = await foo()\r
+   * ```\r
+   *\r
+   * into:\r
+   *\r
+   * ```ts\r
+   * let __temp, __restore\r
+   * const x = (([__temp, __restore] = withAsyncContext(() => foo())),__temp=await __temp,__restore(),__temp)\r
+   * ```\r
+   * @internal\r
+   */\r
+  function withAsyncContext(getAwaitable) {\r
+      const ctx = getCurrentInstance();\r
+      if (!ctx) {\r
+          warn$1(`withAsyncContext called without active current instance. ` +\r
+              `This is likely a bug.`);\r
+      }\r
+      let awaitable = getAwaitable();\r
+      unsetCurrentInstance();\r
+      if (isPromise(awaitable)) {\r
+          awaitable = awaitable.catch(e => {\r
+              setCurrentInstance(ctx);\r
+              throw e;\r
+          });\r
+      }\r
+      return [awaitable, () => setCurrentInstance(ctx)];\r
+  }
+
+  // Actual implementation\r
+  function h(type, propsOrChildren, children) {\r
+      const l = arguments.length;\r
+      if (l === 2) {\r
+          if (isObject(propsOrChildren) && !isArray(propsOrChildren)) {\r
+              // single vnode without props\r
+              if (isVNode(propsOrChildren)) {\r
+                  return createVNode(type, null, [propsOrChildren]);\r
+              }\r
+              // props without children\r
+              return createVNode(type, propsOrChildren);\r
+          }\r
+          else {\r
+              // omit props\r
+              return createVNode(type, null, propsOrChildren);\r
+          }\r
+      }\r
+      else {\r
+          if (l > 3) {\r
+              children = Array.prototype.slice.call(arguments, 2);\r
+          }\r
+          else if (l === 3 && isVNode(children)) {\r
+              children = [children];\r
+          }\r
+          return createVNode(type, propsOrChildren, children);\r
+      }\r
+  }
+
+  const ssrContextKey = Symbol(`ssrContext` );\r
+  const useSSRContext = () => {\r
+      {\r
+          warn$1(`useSSRContext() is not supported in the global build.`);\r
+      }\r
+  };
+
+  function initCustomFormatter() {\r
+      /* eslint-disable no-restricted-globals */\r
+      if (typeof window === 'undefined') {\r
+          return;\r
+      }\r
+      const vueStyle = { style: 'color:#3ba776' };\r
+      const numberStyle = { style: 'color:#0b1bc9' };\r
+      const stringStyle = { style: 'color:#b62e24' };\r
+      const keywordStyle = { style: 'color:#9d288c' };\r
+      // custom formatter for Chrome\r
+      // https://www.mattzeunert.com/2016/02/19/custom-chrome-devtools-object-formatters.html\r
+      const formatter = {\r
+          header(obj) {\r
+              // TODO also format ComponentPublicInstance & ctx.slots/attrs in setup\r
+              if (!isObject(obj)) {\r
+                  return null;\r
+              }\r
+              if (obj.__isVue) {\r
+                  return ['div', vueStyle, `VueInstance`];\r
+              }\r
+              else if (isRef(obj)) {\r
+                  return [\r
+                      'div',\r
+                      {},\r
+                      ['span', vueStyle, genRefFlag(obj)],\r
+                      '<',\r
+                      formatValue(obj.value),\r
+                      `>`\r
+                  ];\r
+              }\r
+              else if (isReactive(obj)) {\r
+                  return [\r
+                      'div',\r
+                      {},\r
+                      ['span', vueStyle, 'Reactive'],\r
+                      '<',\r
+                      formatValue(obj),\r
+                      `>${isReadonly(obj) ? ` (readonly)` : ``}`\r
+                  ];\r
+              }\r
+              else if (isReadonly(obj)) {\r
+                  return [\r
+                      'div',\r
+                      {},\r
+                      ['span', vueStyle, 'Readonly'],\r
+                      '<',\r
+                      formatValue(obj),\r
+                      '>'\r
+                  ];\r
+              }\r
+              return null;\r
+          },\r
+          hasBody(obj) {\r
+              return obj && obj.__isVue;\r
+          },\r
+          body(obj) {\r
+              if (obj && obj.__isVue) {\r
+                  return [\r
+                      'div',\r
+                      {},\r
+                      ...formatInstance(obj.$)\r
+                  ];\r
+              }\r
+          }\r
+      };\r
+      function formatInstance(instance) {\r
+          const blocks = [];\r
+          if (instance.type.props && instance.props) {\r
+              blocks.push(createInstanceBlock('props', toRaw(instance.props)));\r
+          }\r
+          if (instance.setupState !== EMPTY_OBJ) {\r
+              blocks.push(createInstanceBlock('setup', instance.setupState));\r
+          }\r
+          if (instance.data !== EMPTY_OBJ) {\r
+              blocks.push(createInstanceBlock('data', toRaw(instance.data)));\r
+          }\r
+          const computed = extractKeys(instance, 'computed');\r
+          if (computed) {\r
+              blocks.push(createInstanceBlock('computed', computed));\r
+          }\r
+          const injected = extractKeys(instance, 'inject');\r
+          if (injected) {\r
+              blocks.push(createInstanceBlock('injected', injected));\r
+          }\r
+          blocks.push([\r
+              'div',\r
+              {},\r
+              [\r
+                  'span',\r
+                  {\r
+                      style: keywordStyle.style + ';opacity:0.66'\r
+                  },\r
+                  '$ (internal): '\r
+              ],\r
+              ['object', { object: instance }]\r
+          ]);\r
+          return blocks;\r
+      }\r
+      function createInstanceBlock(type, target) {\r
+          target = extend({}, target);\r
+          if (!Object.keys(target).length) {\r
+              return ['span', {}];\r
+          }\r
+          return [\r
+              'div',\r
+              { style: 'line-height:1.25em;margin-bottom:0.6em' },\r
+              [\r
+                  'div',\r
+                  {\r
+                      style: 'color:#476582'\r
+                  },\r
+                  type\r
+              ],\r
+              [\r
+                  'div',\r
+                  {\r
+                      style: 'padding-left:1.25em'\r
+                  },\r
+                  ...Object.keys(target).map(key => {\r
+                      return [\r
+                          'div',\r
+                          {},\r
+                          ['span', keywordStyle, key + ': '],\r
+                          formatValue(target[key], false)\r
+                      ];\r
+                  })\r
+              ]\r
+          ];\r
+      }\r
+      function formatValue(v, asRaw = true) {\r
+          if (typeof v === 'number') {\r
+              return ['span', numberStyle, v];\r
+          }\r
+          else if (typeof v === 'string') {\r
+              return ['span', stringStyle, JSON.stringify(v)];\r
+          }\r
+          else if (typeof v === 'boolean') {\r
+              return ['span', keywordStyle, v];\r
+          }\r
+          else if (isObject(v)) {\r
+              return ['object', { object: asRaw ? toRaw(v) : v }];\r
+          }\r
+          else {\r
+              return ['span', stringStyle, String(v)];\r
+          }\r
+      }\r
+      function extractKeys(instance, type) {\r
+          const Comp = instance.type;\r
+          if (isFunction(Comp)) {\r
+              return;\r
+          }\r
+          const extracted = {};\r
+          for (const key in instance.ctx) {\r
+              if (isKeyOfType(Comp, key, type)) {\r
+                  extracted[key] = instance.ctx[key];\r
+              }\r
+          }\r
+          return extracted;\r
+      }\r
+      function isKeyOfType(Comp, key, type) {\r
+          const opts = Comp[type];\r
+          if ((isArray(opts) && opts.includes(key)) ||\r
+              (isObject(opts) && key in opts)) {\r
+              return true;\r
+          }\r
+          if (Comp.extends && isKeyOfType(Comp.extends, key, type)) {\r
+              return true;\r
+          }\r
+          if (Comp.mixins && Comp.mixins.some(m => isKeyOfType(m, key, type))) {\r
+              return true;\r
+          }\r
+      }\r
+      function genRefFlag(v) {\r
+          if (v._shallow) {\r
+              return `ShallowRef`;\r
+          }\r
+          if (v.effect) {\r
+              return `ComputedRef`;\r
+          }\r
+          return `Ref`;\r
+      }\r
+      if (window.devtoolsFormatters) {\r
+          window.devtoolsFormatters.push(formatter);\r
+      }\r
+      else {\r
+          window.devtoolsFormatters = [formatter];\r
+      }\r
+  }
+
+  function withMemo(memo, render, cache, index) {\r
+      const cached = cache[index];\r
+      if (cached && isMemoSame(cached, memo)) {\r
+          return cached;\r
+      }\r
+      const ret = render();\r
+      // shallow clone\r
+      ret.memo = memo.slice();\r
+      return (cache[index] = ret);\r
+  }\r
+  function isMemoSame(cached, memo) {\r
+      const prev = cached.memo;\r
+      if (prev.length != memo.length) {\r
+          return false;\r
+      }\r
+      for (let i = 0; i < prev.length; i++) {\r
+          if (prev[i] !== memo[i]) {\r
+              return false;\r
+          }\r
+      }\r
+      // make sure to let parent block track it when returning cached\r
+      if (isBlockTreeEnabled > 0 && currentBlock) {\r
+          currentBlock.push(cached);\r
+      }\r
+      return true;\r
+  }
+
+  // Core API ------------------------------------------------------------------\r
+  const version = "3.2.11";\r
+  /**\r
+   * SSR utils for \@vue/server-renderer. Only exposed in cjs builds.\r
+   * @internal\r
+   */\r
+  const ssrUtils = (null);\r
+  /**\r
+   * @internal only exposed in compat builds\r
+   */\r
+  const resolveFilter = null;\r
+  /**\r
+   * @internal only exposed in compat builds.\r
+   */\r
+  const compatUtils = (null);
+
+  const svgNS = 'http://www.w3.org/2000/svg';\r
+  const doc = (typeof document !== 'undefined' ? document : null);\r
+  const staticTemplateCache = new Map();\r
+  const nodeOps = {\r
+      insert: (child, parent, anchor) => {\r
+          parent.insertBefore(child, anchor || null);\r
+      },\r
+      remove: child => {\r
+          const parent = child.parentNode;\r
+          if (parent) {\r
+              parent.removeChild(child);\r
+          }\r
+      },\r
+      createElement: (tag, isSVG, is, props) => {\r
+          const el = isSVG\r
+              ? doc.createElementNS(svgNS, tag)\r
+              : doc.createElement(tag, is ? { is } : undefined);\r
+          if (tag === 'select' && props && props.multiple != null) {\r
+              el.setAttribute('multiple', props.multiple);\r
+          }\r
+          return el;\r
+      },\r
+      createText: text => doc.createTextNode(text),\r
+      createComment: text => doc.createComment(text),\r
+      setText: (node, text) => {\r
+          node.nodeValue = text;\r
+      },\r
+      setElementText: (el, text) => {\r
+          el.textContent = text;\r
+      },\r
+      parentNode: node => node.parentNode,\r
+      nextSibling: node => node.nextSibling,\r
+      querySelector: selector => doc.querySelector(selector),\r
+      setScopeId(el, id) {\r
+          el.setAttribute(id, '');\r
+      },\r
+      cloneNode(el) {\r
+          const cloned = el.cloneNode(true);\r
+          // #3072\r
+          // - in `patchDOMProp`, we store the actual value in the `el._value` property.\r
+          // - normally, elements using `:value` bindings will not be hoisted, but if\r
+          //   the bound value is a constant, e.g. `:value="true"` - they do get\r
+          //   hoisted.\r
+          // - in production, hoisted nodes are cloned when subsequent inserts, but\r
+          //   cloneNode() does not copy the custom property we attached.\r
+          // - This may need to account for other custom DOM properties we attach to\r
+          //   elements in addition to `_value` in the future.\r
+          if (`_value` in el) {\r
+              cloned._value = el._value;\r
+          }\r
+          return cloned;\r
+      },\r
+      // __UNSAFE__\r
+      // Reason: innerHTML.\r
+      // Static content here can only come from compiled templates.\r
+      // As long as the user only uses trusted templates, this is safe.\r
+      insertStaticContent(content, parent, anchor, isSVG) {\r
+          // <parent> before | first ... last | anchor </parent>\r
+          const before = anchor ? anchor.previousSibling : parent.lastChild;\r
+          let template = staticTemplateCache.get(content);\r
+          if (!template) {\r
+              const t = doc.createElement('template');\r
+              t.innerHTML = isSVG ? `<svg>${content}</svg>` : content;\r
+              template = t.content;\r
+              if (isSVG) {\r
+                  // remove outer svg wrapper\r
+                  const wrapper = template.firstChild;\r
+                  while (wrapper.firstChild) {\r
+                      template.appendChild(wrapper.firstChild);\r
+                  }\r
+                  template.removeChild(wrapper);\r
+              }\r
+              staticTemplateCache.set(content, template);\r
+          }\r
+          parent.insertBefore(template.cloneNode(true), anchor);\r
+          return [\r
+              // first\r
+              before ? before.nextSibling : parent.firstChild,\r
+              // last\r
+              anchor ? anchor.previousSibling : parent.lastChild\r
+          ];\r
+      }\r
+  };
+
+  // compiler should normalize class + :class bindings on the same element\r
+  // into a single binding ['staticClass', dynamic]\r
+  function patchClass(el, value, isSVG) {\r
+      // directly setting className should be faster than setAttribute in theory\r
+      // if this is an element during a transition, take the temporary transition\r
+      // classes into account.\r
+      const transitionClasses = el._vtc;\r
+      if (transitionClasses) {\r
+          value = (value ? [value, ...transitionClasses] : [...transitionClasses]).join(' ');\r
+      }\r
+      if (value == null) {\r
+          el.removeAttribute('class');\r
+      }\r
+      else if (isSVG) {\r
+          el.setAttribute('class', value);\r
+      }\r
+      else {\r
+          el.className = value;\r
+      }\r
+  }
+
+  function patchStyle(el, prev, next) {\r
+      const style = el.style;\r
+      const currentDisplay = style.display;\r
+      if (!next) {\r
+          el.removeAttribute('style');\r
+      }\r
+      else if (isString(next)) {\r
+          if (prev !== next) {\r
+              style.cssText = next;\r
+          }\r
+      }\r
+      else {\r
+          for (const key in next) {\r
+              setStyle(style, key, next[key]);\r
+          }\r
+          if (prev && !isString(prev)) {\r
+              for (const key in prev) {\r
+                  if (next[key] == null) {\r
+                      setStyle(style, key, '');\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      // indicates that the `display` of the element is controlled by `v-show`,\r
+      // so we always keep the current `display` value regardless of the `style` value,\r
+      // thus handing over control to `v-show`.\r
+      if ('_vod' in el) {\r
+          style.display = currentDisplay;\r
+      }\r
+  }\r
+  const importantRE = /\s*!important$/;\r
+  function setStyle(style, name, val) {\r
+      if (isArray(val)) {\r
+          val.forEach(v => setStyle(style, name, v));\r
+      }\r
+      else {\r
+          if (name.startsWith('--')) {\r
+              // custom property definition\r
+              style.setProperty(name, val);\r
+          }\r
+          else {\r
+              const prefixed = autoPrefix(style, name);\r
+              if (importantRE.test(val)) {\r
+                  // !important\r
+                  style.setProperty(hyphenate(prefixed), val.replace(importantRE, ''), 'important');\r
+              }\r
+              else {\r
+                  style[prefixed] = val;\r
+              }\r
+          }\r
+      }\r
+  }\r
+  const prefixes = ['Webkit', 'Moz', 'ms'];\r
+  const prefixCache = {};\r
+  function autoPrefix(style, rawName) {\r
+      const cached = prefixCache[rawName];\r
+      if (cached) {\r
+          return cached;\r
+      }\r
+      let name = camelize(rawName);\r
+      if (name !== 'filter' && name in style) {\r
+          return (prefixCache[rawName] = name);\r
+      }\r
+      name = capitalize(name);\r
+      for (let i = 0; i < prefixes.length; i++) {\r
+          const prefixed = prefixes[i] + name;\r
+          if (prefixed in style) {\r
+              return (prefixCache[rawName] = prefixed);\r
+          }\r
+      }\r
+      return rawName;\r
+  }
+
+  const xlinkNS = 'http://www.w3.org/1999/xlink';\r
+  function patchAttr(el, key, value, isSVG, instance) {\r
+      if (isSVG && key.startsWith('xlink:')) {\r
+          if (value == null) {\r
+              el.removeAttributeNS(xlinkNS, key.slice(6, key.length));\r
+          }\r
+          else {\r
+              el.setAttributeNS(xlinkNS, key, value);\r
+          }\r
+      }\r
+      else {\r
+          // note we are only checking boolean attributes that don't have a\r
+          // corresponding dom prop of the same name here.\r
+          const isBoolean = isSpecialBooleanAttr(key);\r
+          if (value == null || (isBoolean && !includeBooleanAttr(value))) {\r
+              el.removeAttribute(key);\r
+          }\r
+          else {\r
+              el.setAttribute(key, isBoolean ? '' : value);\r
+          }\r
+      }\r
+  }
+
+  // __UNSAFE__\r
+  // functions. The user is responsible for using them with only trusted content.\r
+  function patchDOMProp(el, key, value, \r
+  // the following args are passed only due to potential innerHTML/textContent\r
+  // overriding existing VNodes, in which case the old tree must be properly\r
+  // unmounted.\r
+  prevChildren, parentComponent, parentSuspense, unmountChildren) {\r
+      if (key === 'innerHTML' || key === 'textContent') {\r
+          if (prevChildren) {\r
+              unmountChildren(prevChildren, parentComponent, parentSuspense);\r
+          }\r
+          el[key] = value == null ? '' : value;\r
+          return;\r
+      }\r
+      if (key === 'value' && el.tagName !== 'PROGRESS') {\r
+          // store value as _value as well since\r
+          // non-string values will be stringified.\r
+          el._value = value;\r
+          const newValue = value == null ? '' : value;\r
+          if (el.value !== newValue) {\r
+              el.value = newValue;\r
+          }\r
+          if (value == null) {\r
+              el.removeAttribute(key);\r
+          }\r
+          return;\r
+      }\r
+      if (value === '' || value == null) {\r
+          const type = typeof el[key];\r
+          if (type === 'boolean') {\r
+              // e.g. <select multiple> compiles to { multiple: '' }\r
+              el[key] = includeBooleanAttr(value);\r
+              return;\r
+          }\r
+          else if (value == null && type === 'string') {\r
+              // e.g. <div :id="null">\r
+              el[key] = '';\r
+              el.removeAttribute(key);\r
+              return;\r
+          }\r
+          else if (type === 'number') {\r
+              // e.g. <img :width="null">\r
+              // the value of some IDL attr must be greater than 0, e.g. input.size = 0 -> error\r
+              try {\r
+                  el[key] = 0;\r
+              }\r
+              catch (_a) { }\r
+              el.removeAttribute(key);\r
+              return;\r
+          }\r
+      }\r
+      // some properties perform value validation and throw\r
+      try {\r
+          el[key] = value;\r
+      }\r
+      catch (e) {\r
+          {\r
+              warn$1(`Failed setting prop "${key}" on <${el.tagName.toLowerCase()}>: ` +\r
+                  `value ${value} is invalid.`, e);\r
+          }\r
+      }\r
+  }
+
+  // Async edge case fix requires storing an event listener's attach timestamp.\r
+  let _getNow = Date.now;\r
+  let skipTimestampCheck = false;\r
+  if (typeof window !== 'undefined') {\r
+      // Determine what event timestamp the browser is using. Annoyingly, the\r
+      // timestamp can either be hi-res (relative to page load) or low-res\r
+      // (relative to UNIX epoch), so in order to compare time we have to use the\r
+      // same timestamp type when saving the flush timestamp.\r
+      if (_getNow() > document.createEvent('Event').timeStamp) {\r
+          // if the low-res timestamp which is bigger than the event timestamp\r
+          // (which is evaluated AFTER) it means the event is using a hi-res timestamp,\r
+          // and we need to use the hi-res version for event listeners as well.\r
+          _getNow = () => performance.now();\r
+      }\r
+      // #3485: Firefox <= 53 has incorrect Event.timeStamp implementation\r
+      // and does not fire microtasks in between event propagation, so safe to exclude.\r
+      const ffMatch = navigator.userAgent.match(/firefox\/(\d+)/i);\r
+      skipTimestampCheck = !!(ffMatch && Number(ffMatch[1]) <= 53);\r
+  }\r
+  // To avoid the overhead of repeatedly calling performance.now(), we cache\r
+  // and use the same timestamp for all event listeners attached in the same tick.\r
+  let cachedNow = 0;\r
+  const p = Promise.resolve();\r
+  const reset = () => {\r
+      cachedNow = 0;\r
+  };\r
+  const getNow = () => cachedNow || (p.then(reset), (cachedNow = _getNow()));\r
+  function addEventListener(el, event, handler, options) {\r
+      el.addEventListener(event, handler, options);\r
+  }\r
+  function removeEventListener(el, event, handler, options) {\r
+      el.removeEventListener(event, handler, options);\r
+  }\r
+  function patchEvent(el, rawName, prevValue, nextValue, instance = null) {\r
+      // vei = vue event invokers\r
+      const invokers = el._vei || (el._vei = {});\r
+      const existingInvoker = invokers[rawName];\r
+      if (nextValue && existingInvoker) {\r
+          // patch\r
+          existingInvoker.value = nextValue;\r
+      }\r
+      else {\r
+          const [name, options] = parseName(rawName);\r
+          if (nextValue) {\r
+              // add\r
+              const invoker = (invokers[rawName] = createInvoker(nextValue, instance));\r
+              addEventListener(el, name, invoker, options);\r
+          }\r
+          else if (existingInvoker) {\r
+              // remove\r
+              removeEventListener(el, name, existingInvoker, options);\r
+              invokers[rawName] = undefined;\r
+          }\r
+      }\r
+  }\r
+  const optionsModifierRE = /(?:Once|Passive|Capture)$/;\r
+  function parseName(name) {\r
+      let options;\r
+      if (optionsModifierRE.test(name)) {\r
+          options = {};\r
+          let m;\r
+          while ((m = name.match(optionsModifierRE))) {\r
+              name = name.slice(0, name.length - m[0].length);\r
+              options[m[0].toLowerCase()] = true;\r
+          }\r
+      }\r
+      return [hyphenate(name.slice(2)), options];\r
+  }\r
+  function createInvoker(initialValue, instance) {\r
+      const invoker = (e) => {\r
+          // async edge case #6566: inner click event triggers patch, event handler\r
+          // attached to outer element during patch, and triggered again. This\r
+          // happens because browsers fire microtask ticks between event propagation.\r
+          // the solution is simple: we save the timestamp when a handler is attached,\r
+          // and the handler would only fire if the event passed to it was fired\r
+          // AFTER it was attached.\r
+          const timeStamp = e.timeStamp || _getNow();\r
+          if (skipTimestampCheck || timeStamp >= invoker.attached - 1) {\r
+              callWithAsyncErrorHandling(patchStopImmediatePropagation(e, invoker.value), instance, 5 /* NATIVE_EVENT_HANDLER */, [e]);\r
+          }\r
+      };\r
+      invoker.value = initialValue;\r
+      invoker.attached = getNow();\r
+      return invoker;\r
+  }\r
+  function patchStopImmediatePropagation(e, value) {\r
+      if (isArray(value)) {\r
+          const originalStop = e.stopImmediatePropagation;\r
+          e.stopImmediatePropagation = () => {\r
+              originalStop.call(e);\r
+              e._stopped = true;\r
+          };\r
+          return value.map(fn => (e) => !e._stopped && fn(e));\r
+      }\r
+      else {\r
+          return value;\r
+      }\r
+  }
+
+  const nativeOnRE = /^on[a-z]/;\r
+  const patchProp = (el, key, prevValue, nextValue, isSVG = false, prevChildren, parentComponent, parentSuspense, unmountChildren) => {\r
+      if (key === 'class') {\r
+          patchClass(el, nextValue, isSVG);\r
+      }\r
+      else if (key === 'style') {\r
+          patchStyle(el, prevValue, nextValue);\r
+      }\r
+      else if (isOn(key)) {\r
+          // ignore v-model listeners\r
+          if (!isModelListener(key)) {\r
+              patchEvent(el, key, prevValue, nextValue, parentComponent);\r
+          }\r
+      }\r
+      else if (key[0] === '.'\r
+          ? ((key = key.slice(1)), true)\r
+          : key[0] === '^'\r
+              ? ((key = key.slice(1)), false)\r
+              : shouldSetAsProp(el, key, nextValue, isSVG)) {\r
+          patchDOMProp(el, key, nextValue, prevChildren, parentComponent, parentSuspense, unmountChildren);\r
+      }\r
+      else {\r
+          // special case for <input v-model type="checkbox"> with\r
+          // :true-value & :false-value\r
+          // store value as dom properties since non-string values will be\r
+          // stringified.\r
+          if (key === 'true-value') {\r
+              el._trueValue = nextValue;\r
+          }\r
+          else if (key === 'false-value') {\r
+              el._falseValue = nextValue;\r
+          }\r
+          patchAttr(el, key, nextValue, isSVG);\r
+      }\r
+  };\r
+  function shouldSetAsProp(el, key, value, isSVG) {\r
+      if (isSVG) {\r
+          // most keys must be set as attribute on svg elements to work\r
+          // ...except innerHTML & textContent\r
+          if (key === 'innerHTML' || key === 'textContent') {\r
+              return true;\r
+          }\r
+          // or native onclick with function values\r
+          if (key in el && nativeOnRE.test(key) && isFunction(value)) {\r
+              return true;\r
+          }\r
+          return false;\r
+      }\r
+      // spellcheck and draggable are numerated attrs, however their\r
+      // corresponding DOM properties are actually booleans - this leads to\r
+      // setting it with a string "false" value leading it to be coerced to\r
+      // `true`, so we need to always treat them as attributes.\r
+      // Note that `contentEditable` doesn't have this problem: its DOM\r
+      // property is also enumerated string values.\r
+      if (key === 'spellcheck' || key === 'draggable') {\r
+          return false;\r
+      }\r
+      // #1787, #2840 form property on form elements is readonly and must be set as\r
+      // attribute.\r
+      if (key === 'form') {\r
+          return false;\r
+      }\r
+      // #1526 <input list> must be set as attribute\r
+      if (key === 'list' && el.tagName === 'INPUT') {\r
+          return false;\r
+      }\r
+      // #2766 <textarea type> must be set as attribute\r
+      if (key === 'type' && el.tagName === 'TEXTAREA') {\r
+          return false;\r
+      }\r
+      // native onclick with string value, must be set as attribute\r
+      if (nativeOnRE.test(key) && isString(value)) {\r
+          return false;\r
+      }\r
+      return key in el;\r
+  }
+
+  function defineCustomElement(options, hydate) {\r
+      const Comp = defineComponent(options);\r
+      class VueCustomElement extends VueElement {\r
+          constructor(initialProps) {\r
+              super(Comp, initialProps, hydate);\r
+          }\r
+      }\r
+      VueCustomElement.def = Comp;\r
+      return VueCustomElement;\r
+  }\r
+  const defineSSRCustomElement = ((options) => {\r
+      // @ts-ignore\r
+      return defineCustomElement(options, hydrate);\r
+  });\r
+  const BaseClass = (typeof HTMLElement !== 'undefined' ? HTMLElement : class {\r
+  });\r
+  class VueElement extends BaseClass {\r
+      constructor(_def, _props = {}, hydrate) {\r
+          super();\r
+          this._def = _def;\r
+          this._props = _props;\r
+          /**\r
+           * @internal\r
+           */\r
+          this._instance = null;\r
+          this._connected = false;\r
+          this._resolved = false;\r
+          if (this.shadowRoot && hydrate) {\r
+              hydrate(this._createVNode(), this.shadowRoot);\r
+          }\r
+          else {\r
+              if (this.shadowRoot) {\r
+                  warn$1(`Custom element has pre-rendered declarative shadow root but is not ` +\r
+                      `defined as hydratable. Use \`defineSSRCustomElement\`.`);\r
+              }\r
+              this.attachShadow({ mode: 'open' });\r
+          }\r
+          // set initial attrs\r
+          for (let i = 0; i < this.attributes.length; i++) {\r
+              this._setAttr(this.attributes[i].name);\r
+          }\r
+          // watch future attr changes\r
+          const observer = new MutationObserver(mutations => {\r
+              for (const m of mutations) {\r
+                  this._setAttr(m.attributeName);\r
+              }\r
+          });\r
+          observer.observe(this, { attributes: true });\r
+      }\r
+      connectedCallback() {\r
+          this._connected = true;\r
+          if (!this._instance) {\r
+              this._resolveDef();\r
+              render(this._createVNode(), this.shadowRoot);\r
+          }\r
+      }\r
+      disconnectedCallback() {\r
+          this._connected = false;\r
+          nextTick(() => {\r
+              if (!this._connected) {\r
+                  render(null, this.shadowRoot);\r
+                  this._instance = null;\r
+              }\r
+          });\r
+      }\r
+      /**\r
+       * resolve inner component definition (handle possible async component)\r
+       */\r
+      _resolveDef() {\r
+          if (this._resolved) {\r
+              return;\r
+          }\r
+          const resolve = (def) => {\r
+              this._resolved = true;\r
+              // check if there are props set pre-upgrade or connect\r
+              for (const key of Object.keys(this)) {\r
+                  if (key[0] !== '_') {\r
+                      this._setProp(key, this[key]);\r
+                  }\r
+              }\r
+              const { props, styles } = def;\r
+              // defining getter/setters on prototype\r
+              const rawKeys = props ? (isArray(props) ? props : Object.keys(props)) : [];\r
+              for (const key of rawKeys.map(camelize)) {\r
+                  Object.defineProperty(this, key, {\r
+                      get() {\r
+                          return this._getProp(key);\r
+                      },\r
+                      set(val) {\r
+                          this._setProp(key, val);\r
+                      }\r
+                  });\r
+              }\r
+              this._applyStyles(styles);\r
+          };\r
+          const asyncDef = this._def.__asyncLoader;\r
+          if (asyncDef) {\r
+              asyncDef().then(resolve);\r
+          }\r
+          else {\r
+              resolve(this._def);\r
+          }\r
+      }\r
+      _setAttr(key) {\r
+          this._setProp(camelize(key), toNumber(this.getAttribute(key)), false);\r
+      }\r
+      /**\r
+       * @internal\r
+       */\r
+      _getProp(key) {\r
+          return this._props[key];\r
+      }\r
+      /**\r
+       * @internal\r
+       */\r
+      _setProp(key, val, shouldReflect = true) {\r
+          if (val !== this._props[key]) {\r
+              this._props[key] = val;\r
+              if (this._instance) {\r
+                  render(this._createVNode(), this.shadowRoot);\r
+              }\r
+              // reflect\r
+              if (shouldReflect) {\r
+                  if (val === true) {\r
+                      this.setAttribute(hyphenate(key), '');\r
+                  }\r
+                  else if (typeof val === 'string' || typeof val === 'number') {\r
+                      this.setAttribute(hyphenate(key), val + '');\r
+                  }\r
+                  else if (!val) {\r
+                      this.removeAttribute(hyphenate(key));\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      _createVNode() {\r
+          const vnode = createVNode(this._def, extend({}, this._props));\r
+          if (!this._instance) {\r
+              vnode.ce = instance => {\r
+                  this._instance = instance;\r
+                  instance.isCE = true;\r
+                  // HMR\r
+                  {\r
+                      instance.ceReload = newStyles => {\r
+                          // alawys reset styles\r
+                          if (this._styles) {\r
+                              this._styles.forEach(s => this.shadowRoot.removeChild(s));\r
+                              this._styles.length = 0;\r
+                          }\r
+                          this._applyStyles(newStyles);\r
+                          // if this is an async component, ceReload is called from the inner\r
+                          // component so no need to reload the async wrapper\r
+                          if (!this._def.__asyncLoader) {\r
+                              // reload\r
+                              this._instance = null;\r
+                              render(this._createVNode(), this.shadowRoot);\r
+                          }\r
+                      };\r
+                  }\r
+                  // intercept emit\r
+                  instance.emit = (event, ...args) => {\r
+                      this.dispatchEvent(new CustomEvent(event, {\r
+                          detail: args\r
+                      }));\r
+                  };\r
+                  // locate nearest Vue custom element parent for provide/inject\r
+                  let parent = this;\r
+                  while ((parent =\r
+                      parent && (parent.parentNode || parent.host))) {\r
+                      if (parent instanceof VueElement) {\r
+                          instance.parent = parent._instance;\r
+                          break;\r
+                      }\r
+                  }\r
+              };\r
+          }\r
+          return vnode;\r
+      }\r
+      _applyStyles(styles) {\r
+          if (styles) {\r
+              styles.forEach(css => {\r
+                  const s = document.createElement('style');\r
+                  s.textContent = css;\r
+                  this.shadowRoot.appendChild(s);\r
+                  // record for HMR\r
+                  {\r
+                      (this._styles || (this._styles = [])).push(s);\r
+                  }\r
+              });\r
+          }\r
+      }\r
+  }
+
+  function useCssModule(name = '$style') {\r
+      /* istanbul ignore else */\r
+      {\r
+          {\r
+              warn$1(`useCssModule() is not supported in the global build.`);\r
+          }\r
+          return EMPTY_OBJ;\r
+      }\r
+  }
+
+  /**\r
+   * Runtime helper for SFC's CSS variable injection feature.\r
+   * @private\r
+   */\r
+  function useCssVars(getter) {\r
+      const instance = getCurrentInstance();\r
+      /* istanbul ignore next */\r
+      if (!instance) {\r
+          warn$1(`useCssVars is called without current active component instance.`);\r
+          return;\r
+      }\r
+      const setVars = () => setVarsOnVNode(instance.subTree, getter(instance.proxy));\r
+      watchPostEffect(setVars);\r
+      onMounted(() => {\r
+          const ob = new MutationObserver(setVars);\r
+          ob.observe(instance.subTree.el.parentNode, { childList: true });\r
+          onUnmounted(() => ob.disconnect());\r
+      });\r
+  }\r
+  function setVarsOnVNode(vnode, vars) {\r
+      if (vnode.shapeFlag & 128 /* SUSPENSE */) {\r
+          const suspense = vnode.suspense;\r
+          vnode = suspense.activeBranch;\r
+          if (suspense.pendingBranch && !suspense.isHydrating) {\r
+              suspense.effects.push(() => {\r
+                  setVarsOnVNode(suspense.activeBranch, vars);\r
+              });\r
+          }\r
+      }\r
+      // drill down HOCs until it's a non-component vnode\r
+      while (vnode.component) {\r
+          vnode = vnode.component.subTree;\r
+      }\r
+      if (vnode.shapeFlag & 1 /* ELEMENT */ && vnode.el) {\r
+          setVarsOnNode(vnode.el, vars);\r
+      }\r
+      else if (vnode.type === Fragment) {\r
+          vnode.children.forEach(c => setVarsOnVNode(c, vars));\r
+      }\r
+      else if (vnode.type === Static) {\r
+          let { el, anchor } = vnode;\r
+          while (el) {\r
+              setVarsOnNode(el, vars);\r
+              if (el === anchor)\r
+                  break;\r
+              el = el.nextSibling;\r
+          }\r
+      }\r
+  }\r
+  function setVarsOnNode(el, vars) {\r
+      if (el.nodeType === 1) {\r
+          const style = el.style;\r
+          for (const key in vars) {\r
+              style.setProperty(`--${key}`, vars[key]);\r
+          }\r
+      }\r
+  }
+
+  const TRANSITION = 'transition';\r
+  const ANIMATION = 'animation';\r
+  // DOM Transition is a higher-order-component based on the platform-agnostic\r
+  // base Transition component, with DOM-specific logic.\r
+  const Transition = (props, { slots }) => h(BaseTransition, resolveTransitionProps(props), slots);\r
+  Transition.displayName = 'Transition';\r
+  const DOMTransitionPropsValidators = {\r
+      name: String,\r
+      type: String,\r
+      css: {\r
+          type: Boolean,\r
+          default: true\r
+      },\r
+      duration: [String, Number, Object],\r
+      enterFromClass: String,\r
+      enterActiveClass: String,\r
+      enterToClass: String,\r
+      appearFromClass: String,\r
+      appearActiveClass: String,\r
+      appearToClass: String,\r
+      leaveFromClass: String,\r
+      leaveActiveClass: String,\r
+      leaveToClass: String\r
+  };\r
+  const TransitionPropsValidators = (Transition.props =\r
+      /*#__PURE__*/ extend({}, BaseTransition.props, DOMTransitionPropsValidators));\r
+  /**\r
+   * #3227 Incoming hooks may be merged into arrays when wrapping Transition\r
+   * with custom HOCs.\r
+   */\r
+  const callHook$1 = (hook, args = []) => {\r
+      if (isArray(hook)) {\r
+          hook.forEach(h => h(...args));\r
+      }\r
+      else if (hook) {\r
+          hook(...args);\r
+      }\r
+  };\r
+  /**\r
+   * Check if a hook expects a callback (2nd arg), which means the user\r
+   * intends to explicitly control the end of the transition.\r
+   */\r
+  const hasExplicitCallback = (hook) => {\r
+      return hook\r
+          ? isArray(hook)\r
+              ? hook.some(h => h.length > 1)\r
+              : hook.length > 1\r
+          : false;\r
+  };\r
+  function resolveTransitionProps(rawProps) {\r
+      const baseProps = {};\r
+      for (const key in rawProps) {\r
+          if (!(key in DOMTransitionPropsValidators)) {\r
+              baseProps[key] = rawProps[key];\r
+          }\r
+      }\r
+      if (rawProps.css === false) {\r
+          return baseProps;\r
+      }\r
+      const { name = 'v', type, duration, enterFromClass = `${name}-enter-from`, enterActiveClass = `${name}-enter-active`, enterToClass = `${name}-enter-to`, appearFromClass = enterFromClass, appearActiveClass = enterActiveClass, appearToClass = enterToClass, leaveFromClass = `${name}-leave-from`, leaveActiveClass = `${name}-leave-active`, leaveToClass = `${name}-leave-to` } = rawProps;\r
+      const durations = normalizeDuration(duration);\r
+      const enterDuration = durations && durations[0];\r
+      const leaveDuration = durations && durations[1];\r
+      const { onBeforeEnter, onEnter, onEnterCancelled, onLeave, onLeaveCancelled, onBeforeAppear = onBeforeEnter, onAppear = onEnter, onAppearCancelled = onEnterCancelled } = baseProps;\r
+      const finishEnter = (el, isAppear, done) => {\r
+          removeTransitionClass(el, isAppear ? appearToClass : enterToClass);\r
+          removeTransitionClass(el, isAppear ? appearActiveClass : enterActiveClass);\r
+          done && done();\r
+      };\r
+      const finishLeave = (el, done) => {\r
+          removeTransitionClass(el, leaveToClass);\r
+          removeTransitionClass(el, leaveActiveClass);\r
+          done && done();\r
+      };\r
+      const makeEnterHook = (isAppear) => {\r
+          return (el, done) => {\r
+              const hook = isAppear ? onAppear : onEnter;\r
+              const resolve = () => finishEnter(el, isAppear, done);\r
+              callHook$1(hook, [el, resolve]);\r
+              nextFrame(() => {\r
+                  removeTransitionClass(el, isAppear ? appearFromClass : enterFromClass);\r
+                  addTransitionClass(el, isAppear ? appearToClass : enterToClass);\r
+                  if (!hasExplicitCallback(hook)) {\r
+                      whenTransitionEnds(el, type, enterDuration, resolve);\r
+                  }\r
+              });\r
+          };\r
+      };\r
+      return extend(baseProps, {\r
+          onBeforeEnter(el) {\r
+              callHook$1(onBeforeEnter, [el]);\r
+              addTransitionClass(el, enterFromClass);\r
+              addTransitionClass(el, enterActiveClass);\r
+          },\r
+          onBeforeAppear(el) {\r
+              callHook$1(onBeforeAppear, [el]);\r
+              addTransitionClass(el, appearFromClass);\r
+              addTransitionClass(el, appearActiveClass);\r
+          },\r
+          onEnter: makeEnterHook(false),\r
+          onAppear: makeEnterHook(true),\r
+          onLeave(el, done) {\r
+              const resolve = () => finishLeave(el, done);\r
+              addTransitionClass(el, leaveFromClass);\r
+              // force reflow so *-leave-from classes immediately take effect (#2593)\r
+              forceReflow();\r
+              addTransitionClass(el, leaveActiveClass);\r
+              nextFrame(() => {\r
+                  removeTransitionClass(el, leaveFromClass);\r
+                  addTransitionClass(el, leaveToClass);\r
+                  if (!hasExplicitCallback(onLeave)) {\r
+                      whenTransitionEnds(el, type, leaveDuration, resolve);\r
+                  }\r
+              });\r
+              callHook$1(onLeave, [el, resolve]);\r
+          },\r
+          onEnterCancelled(el) {\r
+              finishEnter(el, false);\r
+              callHook$1(onEnterCancelled, [el]);\r
+          },\r
+          onAppearCancelled(el) {\r
+              finishEnter(el, true);\r
+              callHook$1(onAppearCancelled, [el]);\r
+          },\r
+          onLeaveCancelled(el) {\r
+              finishLeave(el);\r
+              callHook$1(onLeaveCancelled, [el]);\r
+          }\r
+      });\r
+  }\r
+  function normalizeDuration(duration) {\r
+      if (duration == null) {\r
+          return null;\r
+      }\r
+      else if (isObject(duration)) {\r
+          return [NumberOf(duration.enter), NumberOf(duration.leave)];\r
+      }\r
+      else {\r
+          const n = NumberOf(duration);\r
+          return [n, n];\r
+      }\r
+  }\r
+  function NumberOf(val) {\r
+      const res = toNumber(val);\r
+      validateDuration(res);\r
+      return res;\r
+  }\r
+  function validateDuration(val) {\r
+      if (typeof val !== 'number') {\r
+          warn$1(`<transition> explicit duration is not a valid number - ` +\r
+              `got ${JSON.stringify(val)}.`);\r
+      }\r
+      else if (isNaN(val)) {\r
+          warn$1(`<transition> explicit duration is NaN - ` +\r
+              'the duration expression might be incorrect.');\r
+      }\r
+  }\r
+  function addTransitionClass(el, cls) {\r
+      cls.split(/\s+/).forEach(c => c && el.classList.add(c));\r
+      (el._vtc ||\r
+          (el._vtc = new Set())).add(cls);\r
+  }\r
+  function removeTransitionClass(el, cls) {\r
+      cls.split(/\s+/).forEach(c => c && el.classList.remove(c));\r
+      const { _vtc } = el;\r
+      if (_vtc) {\r
+          _vtc.delete(cls);\r
+          if (!_vtc.size) {\r
+              el._vtc = undefined;\r
+          }\r
+      }\r
+  }\r
+  function nextFrame(cb) {\r
+      requestAnimationFrame(() => {\r
+          requestAnimationFrame(cb);\r
+      });\r
+  }\r
+  let endId = 0;\r
+  function whenTransitionEnds(el, expectedType, explicitTimeout, resolve) {\r
+      const id = (el._endId = ++endId);\r
+      const resolveIfNotStale = () => {\r
+          if (id === el._endId) {\r
+              resolve();\r
+          }\r
+      };\r
+      if (explicitTimeout) {\r
+          return setTimeout(resolveIfNotStale, explicitTimeout);\r
+      }\r
+      const { type, timeout, propCount } = getTransitionInfo(el, expectedType);\r
+      if (!type) {\r
+          return resolve();\r
+      }\r
+      const endEvent = type + 'end';\r
+      let ended = 0;\r
+      const end = () => {\r
+          el.removeEventListener(endEvent, onEnd);\r
+          resolveIfNotStale();\r
+      };\r
+      const onEnd = (e) => {\r
+          if (e.target === el && ++ended >= propCount) {\r
+              end();\r
+          }\r
+      };\r
+      setTimeout(() => {\r
+          if (ended < propCount) {\r
+              end();\r
+          }\r
+      }, timeout + 1);\r
+      el.addEventListener(endEvent, onEnd);\r
+  }\r
+  function getTransitionInfo(el, expectedType) {\r
+      const styles = window.getComputedStyle(el);\r
+      // JSDOM may return undefined for transition properties\r
+      const getStyleProperties = (key) => (styles[key] || '').split(', ');\r
+      const transitionDelays = getStyleProperties(TRANSITION + 'Delay');\r
+      const transitionDurations = getStyleProperties(TRANSITION + 'Duration');\r
+      const transitionTimeout = getTimeout(transitionDelays, transitionDurations);\r
+      const animationDelays = getStyleProperties(ANIMATION + 'Delay');\r
+      const animationDurations = getStyleProperties(ANIMATION + 'Duration');\r
+      const animationTimeout = getTimeout(animationDelays, animationDurations);\r
+      let type = null;\r
+      let timeout = 0;\r
+      let propCount = 0;\r
+      /* istanbul ignore if */\r
+      if (expectedType === TRANSITION) {\r
+          if (transitionTimeout > 0) {\r
+              type = TRANSITION;\r
+              timeout = transitionTimeout;\r
+              propCount = transitionDurations.length;\r
+          }\r
+      }\r
+      else if (expectedType === ANIMATION) {\r
+          if (animationTimeout > 0) {\r
+              type = ANIMATION;\r
+              timeout = animationTimeout;\r
+              propCount = animationDurations.length;\r
+          }\r
+      }\r
+      else {\r
+          timeout = Math.max(transitionTimeout, animationTimeout);\r
+          type =\r
+              timeout > 0\r
+                  ? transitionTimeout > animationTimeout\r
+                      ? TRANSITION\r
+                      : ANIMATION\r
+                  : null;\r
+          propCount = type\r
+              ? type === TRANSITION\r
+                  ? transitionDurations.length\r
+                  : animationDurations.length\r
+              : 0;\r
+      }\r
+      const hasTransform = type === TRANSITION &&\r
+          /\b(transform|all)(,|$)/.test(styles[TRANSITION + 'Property']);\r
+      return {\r
+          type,\r
+          timeout,\r
+          propCount,\r
+          hasTransform\r
+      };\r
+  }\r
+  function getTimeout(delays, durations) {\r
+      while (delays.length < durations.length) {\r
+          delays = delays.concat(delays);\r
+      }\r
+      return Math.max(...durations.map((d, i) => toMs(d) + toMs(delays[i])));\r
+  }\r
+  // Old versions of Chromium (below 61.0.3163.100) formats floating pointer\r
+  // numbers in a locale-dependent way, using a comma instead of a dot.\r
+  // If comma is not replaced with a dot, the input will be rounded down\r
+  // (i.e. acting as a floor function) causing unexpected behaviors\r
+  function toMs(s) {\r
+      return Number(s.slice(0, -1).replace(',', '.')) * 1000;\r
+  }\r
+  // synchronously force layout to put elements into a certain state\r
+  function forceReflow() {\r
+      return document.body.offsetHeight;\r
+  }
+
+  const positionMap = new WeakMap();\r
+  const newPositionMap = new WeakMap();\r
+  const TransitionGroupImpl = {\r
+      name: 'TransitionGroup',\r
+      props: /*#__PURE__*/ extend({}, TransitionPropsValidators, {\r
+          tag: String,\r
+          moveClass: String\r
+      }),\r
+      setup(props, { slots }) {\r
+          const instance = getCurrentInstance();\r
+          const state = useTransitionState();\r
+          let prevChildren;\r
+          let children;\r
+          onUpdated(() => {\r
+              // children is guaranteed to exist after initial render\r
+              if (!prevChildren.length) {\r
+                  return;\r
+              }\r
+              const moveClass = props.moveClass || `${props.name || 'v'}-move`;\r
+              if (!hasCSSTransform(prevChildren[0].el, instance.vnode.el, moveClass)) {\r
+                  return;\r
+              }\r
+              // we divide the work into three loops to avoid mixing DOM reads and writes\r
+              // in each iteration - which helps prevent layout thrashing.\r
+              prevChildren.forEach(callPendingCbs);\r
+              prevChildren.forEach(recordPosition);\r
+              const movedChildren = prevChildren.filter(applyTranslation);\r
+              // force reflow to put everything in position\r
+              forceReflow();\r
+              movedChildren.forEach(c => {\r
+                  const el = c.el;\r
+                  const style = el.style;\r
+                  addTransitionClass(el, moveClass);\r
+                  style.transform = style.webkitTransform = style.transitionDuration = '';\r
+                  const cb = (el._moveCb = (e) => {\r
+                      if (e && e.target !== el) {\r
+                          return;\r
+                      }\r
+                      if (!e || /transform$/.test(e.propertyName)) {\r
+                          el.removeEventListener('transitionend', cb);\r
+                          el._moveCb = null;\r
+                          removeTransitionClass(el, moveClass);\r
+                      }\r
+                  });\r
+                  el.addEventListener('transitionend', cb);\r
+              });\r
+          });\r
+          return () => {\r
+              const rawProps = toRaw(props);\r
+              const cssTransitionProps = resolveTransitionProps(rawProps);\r
+              let tag = rawProps.tag || Fragment;\r
+              prevChildren = children;\r
+              children = slots.default ? getTransitionRawChildren(slots.default()) : [];\r
+              for (let i = 0; i < children.length; i++) {\r
+                  const child = children[i];\r
+                  if (child.key != null) {\r
+                      setTransitionHooks(child, resolveTransitionHooks(child, cssTransitionProps, state, instance));\r
+                  }\r
+                  else {\r
+                      warn$1(`<TransitionGroup> children must be keyed.`);\r
+                  }\r
+              }\r
+              if (prevChildren) {\r
+                  for (let i = 0; i < prevChildren.length; i++) {\r
+                      const child = prevChildren[i];\r
+                      setTransitionHooks(child, resolveTransitionHooks(child, cssTransitionProps, state, instance));\r
+                      positionMap.set(child, child.el.getBoundingClientRect());\r
+                  }\r
+              }\r
+              return createVNode(tag, null, children);\r
+          };\r
+      }\r
+  };\r
+  const TransitionGroup = TransitionGroupImpl;\r
+  function callPendingCbs(c) {\r
+      const el = c.el;\r
+      if (el._moveCb) {\r
+          el._moveCb();\r
+      }\r
+      if (el._enterCb) {\r
+          el._enterCb();\r
+      }\r
+  }\r
+  function recordPosition(c) {\r
+      newPositionMap.set(c, c.el.getBoundingClientRect());\r
+  }\r
+  function applyTranslation(c) {\r
+      const oldPos = positionMap.get(c);\r
+      const newPos = newPositionMap.get(c);\r
+      const dx = oldPos.left - newPos.left;\r
+      const dy = oldPos.top - newPos.top;\r
+      if (dx || dy) {\r
+          const s = c.el.style;\r
+          s.transform = s.webkitTransform = `translate(${dx}px,${dy}px)`;\r
+          s.transitionDuration = '0s';\r
+          return c;\r
+      }\r
+  }\r
+  function hasCSSTransform(el, root, moveClass) {\r
+      // Detect whether an element with the move class applied has\r
+      // CSS transitions. Since the element may be inside an entering\r
+      // transition at this very moment, we make a clone of it and remove\r
+      // all other transition classes applied to ensure only the move class\r
+      // is applied.\r
+      const clone = el.cloneNode();\r
+      if (el._vtc) {\r
+          el._vtc.forEach(cls => {\r
+              cls.split(/\s+/).forEach(c => c && clone.classList.remove(c));\r
+          });\r
+      }\r
+      moveClass.split(/\s+/).forEach(c => c && clone.classList.add(c));\r
+      clone.style.display = 'none';\r
+      const container = (root.nodeType === 1 ? root : root.parentNode);\r
+      container.appendChild(clone);\r
+      const { hasTransform } = getTransitionInfo(clone);\r
+      container.removeChild(clone);\r
+      return hasTransform;\r
+  }
+
+  const getModelAssigner = (vnode) => {\r
+      const fn = vnode.props['onUpdate:modelValue'];\r
+      return isArray(fn) ? value => invokeArrayFns(fn, value) : fn;\r
+  };\r
+  function onCompositionStart(e) {\r
+      e.target.composing = true;\r
+  }\r
+  function onCompositionEnd(e) {\r
+      const target = e.target;\r
+      if (target.composing) {\r
+          target.composing = false;\r
+          trigger$1(target, 'input');\r
+      }\r
+  }\r
+  function trigger$1(el, type) {\r
+      const e = document.createEvent('HTMLEvents');\r
+      e.initEvent(type, true, true);\r
+      el.dispatchEvent(e);\r
+  }\r
+  // We are exporting the v-model runtime directly as vnode hooks so that it can\r
+  // be tree-shaken in case v-model is never used.\r
+  const vModelText = {\r
+      created(el, { modifiers: { lazy, trim, number } }, vnode) {\r
+          el._assign = getModelAssigner(vnode);\r
+          const castToNumber = number || (vnode.props && vnode.props.type === 'number');\r
+          addEventListener(el, lazy ? 'change' : 'input', e => {\r
+              if (e.target.composing)\r
+                  return;\r
+              let domValue = el.value;\r
+              if (trim) {\r
+                  domValue = domValue.trim();\r
+              }\r
+              else if (castToNumber) {\r
+                  domValue = toNumber(domValue);\r
+              }\r
+              el._assign(domValue);\r
+          });\r
+          if (trim) {\r
+              addEventListener(el, 'change', () => {\r
+                  el.value = el.value.trim();\r
+              });\r
+          }\r
+          if (!lazy) {\r
+              addEventListener(el, 'compositionstart', onCompositionStart);\r
+              addEventListener(el, 'compositionend', onCompositionEnd);\r
+              // Safari < 10.2 & UIWebView doesn't fire compositionend when\r
+              // switching focus before confirming composition choice\r
+              // this also fixes the issue where some browsers e.g. iOS Chrome\r
+              // fires "change" instead of "input" on autocomplete.\r
+              addEventListener(el, 'change', onCompositionEnd);\r
+          }\r
+      },\r
+      // set value on mounted so it's after min/max for type="range"\r
+      mounted(el, { value }) {\r
+          el.value = value == null ? '' : value;\r
+      },\r
+      beforeUpdate(el, { value, modifiers: { lazy, trim, number } }, vnode) {\r
+          el._assign = getModelAssigner(vnode);\r
+          // avoid clearing unresolved text. #2302\r
+          if (el.composing)\r
+              return;\r
+          if (document.activeElement === el) {\r
+              if (lazy) {\r
+                  return;\r
+              }\r
+              if (trim && el.value.trim() === value) {\r
+                  return;\r
+              }\r
+              if ((number || el.type === 'number') && toNumber(el.value) === value) {\r
+                  return;\r
+              }\r
+          }\r
+          const newValue = value == null ? '' : value;\r
+          if (el.value !== newValue) {\r
+              el.value = newValue;\r
+          }\r
+      }\r
+  };\r
+  const vModelCheckbox = {\r
+      // #4096 array checkboxes need to be deep traversed\r
+      deep: true,\r
+      created(el, _, vnode) {\r
+          el._assign = getModelAssigner(vnode);\r
+          addEventListener(el, 'change', () => {\r
+              const modelValue = el._modelValue;\r
+              const elementValue = getValue(el);\r
+              const checked = el.checked;\r
+              const assign = el._assign;\r
+              if (isArray(modelValue)) {\r
+                  const index = looseIndexOf(modelValue, elementValue);\r
+                  const found = index !== -1;\r
+                  if (checked && !found) {\r
+                      assign(modelValue.concat(elementValue));\r
+                  }\r
+                  else if (!checked && found) {\r
+                      const filtered = [...modelValue];\r
+                      filtered.splice(index, 1);\r
+                      assign(filtered);\r
+                  }\r
+              }\r
+              else if (isSet(modelValue)) {\r
+                  const cloned = new Set(modelValue);\r
+                  if (checked) {\r
+                      cloned.add(elementValue);\r
+                  }\r
+                  else {\r
+                      cloned.delete(elementValue);\r
+                  }\r
+                  assign(cloned);\r
+              }\r
+              else {\r
+                  assign(getCheckboxValue(el, checked));\r
+              }\r
+          });\r
+      },\r
+      // set initial checked on mount to wait for true-value/false-value\r
+      mounted: setChecked,\r
+      beforeUpdate(el, binding, vnode) {\r
+          el._assign = getModelAssigner(vnode);\r
+          setChecked(el, binding, vnode);\r
+      }\r
+  };\r
+  function setChecked(el, { value, oldValue }, vnode) {\r
+      el._modelValue = value;\r
+      if (isArray(value)) {\r
+          el.checked = looseIndexOf(value, vnode.props.value) > -1;\r
+      }\r
+      else if (isSet(value)) {\r
+          el.checked = value.has(vnode.props.value);\r
+      }\r
+      else if (value !== oldValue) {\r
+          el.checked = looseEqual(value, getCheckboxValue(el, true));\r
+      }\r
+  }\r
+  const vModelRadio = {\r
+      created(el, { value }, vnode) {\r
+          el.checked = looseEqual(value, vnode.props.value);\r
+          el._assign = getModelAssigner(vnode);\r
+          addEventListener(el, 'change', () => {\r
+              el._assign(getValue(el));\r
+          });\r
+      },\r
+      beforeUpdate(el, { value, oldValue }, vnode) {\r
+          el._assign = getModelAssigner(vnode);\r
+          if (value !== oldValue) {\r
+              el.checked = looseEqual(value, vnode.props.value);\r
+          }\r
+      }\r
+  };\r
+  const vModelSelect = {\r
+      // <select multiple> value need to be deep traversed\r
+      deep: true,\r
+      created(el, { value, modifiers: { number } }, vnode) {\r
+          const isSetModel = isSet(value);\r
+          addEventListener(el, 'change', () => {\r
+              const selectedVal = Array.prototype.filter\r
+                  .call(el.options, (o) => o.selected)\r
+                  .map((o) => number ? toNumber(getValue(o)) : getValue(o));\r
+              el._assign(el.multiple\r
+                  ? isSetModel\r
+                      ? new Set(selectedVal)\r
+                      : selectedVal\r
+                  : selectedVal[0]);\r
+          });\r
+          el._assign = getModelAssigner(vnode);\r
+      },\r
+      // set value in mounted & updated because <select> relies on its children\r
+      // <option>s.\r
+      mounted(el, { value }) {\r
+          setSelected(el, value);\r
+      },\r
+      beforeUpdate(el, _binding, vnode) {\r
+          el._assign = getModelAssigner(vnode);\r
+      },\r
+      updated(el, { value }) {\r
+          setSelected(el, value);\r
+      }\r
+  };\r
+  function setSelected(el, value) {\r
+      const isMultiple = el.multiple;\r
+      if (isMultiple && !isArray(value) && !isSet(value)) {\r
+          warn$1(`<select multiple v-model> expects an Array or Set value for its binding, ` +\r
+                  `but got ${Object.prototype.toString.call(value).slice(8, -1)}.`);\r
+          return;\r
+      }\r
+      for (let i = 0, l = el.options.length; i < l; i++) {\r
+          const option = el.options[i];\r
+          const optionValue = getValue(option);\r
+          if (isMultiple) {\r
+              if (isArray(value)) {\r
+                  option.selected = looseIndexOf(value, optionValue) > -1;\r
+              }\r
+              else {\r
+                  option.selected = value.has(optionValue);\r
+              }\r
+          }\r
+          else {\r
+              if (looseEqual(getValue(option), value)) {\r
+                  if (el.selectedIndex !== i)\r
+                      el.selectedIndex = i;\r
+                  return;\r
+              }\r
+          }\r
+      }\r
+      if (!isMultiple && el.selectedIndex !== -1) {\r
+          el.selectedIndex = -1;\r
+      }\r
+  }\r
+  // retrieve raw value set via :value bindings\r
+  function getValue(el) {\r
+      return '_value' in el ? el._value : el.value;\r
+  }\r
+  // retrieve raw value for true-value and false-value set via :true-value or :false-value bindings\r
+  function getCheckboxValue(el, checked) {\r
+      const key = checked ? '_trueValue' : '_falseValue';\r
+      return key in el ? el[key] : checked;\r
+  }\r
+  const vModelDynamic = {\r
+      created(el, binding, vnode) {\r
+          callModelHook(el, binding, vnode, null, 'created');\r
+      },\r
+      mounted(el, binding, vnode) {\r
+          callModelHook(el, binding, vnode, null, 'mounted');\r
+      },\r
+      beforeUpdate(el, binding, vnode, prevVNode) {\r
+          callModelHook(el, binding, vnode, prevVNode, 'beforeUpdate');\r
+      },\r
+      updated(el, binding, vnode, prevVNode) {\r
+          callModelHook(el, binding, vnode, prevVNode, 'updated');\r
+      }\r
+  };\r
+  function callModelHook(el, binding, vnode, prevVNode, hook) {\r
+      let modelToUse;\r
+      switch (el.tagName) {\r
+          case 'SELECT':\r
+              modelToUse = vModelSelect;\r
+              break;\r
+          case 'TEXTAREA':\r
+              modelToUse = vModelText;\r
+              break;\r
+          default:\r
+              switch (vnode.props && vnode.props.type) {\r
+                  case 'checkbox':\r
+                      modelToUse = vModelCheckbox;\r
+                      break;\r
+                  case 'radio':\r
+                      modelToUse = vModelRadio;\r
+                      break;\r
+                  default:\r
+                      modelToUse = vModelText;\r
+              }\r
+      }\r
+      const fn = modelToUse[hook];\r
+      fn && fn(el, binding, vnode, prevVNode);\r
+  }
+
+  const systemModifiers = ['ctrl', 'shift', 'alt', 'meta'];\r
+  const modifierGuards = {\r
+      stop: e => e.stopPropagation(),\r
+      prevent: e => e.preventDefault(),\r
+      self: e => e.target !== e.currentTarget,\r
+      ctrl: e => !e.ctrlKey,\r
+      shift: e => !e.shiftKey,\r
+      alt: e => !e.altKey,\r
+      meta: e => !e.metaKey,\r
+      left: e => 'button' in e && e.button !== 0,\r
+      middle: e => 'button' in e && e.button !== 1,\r
+      right: e => 'button' in e && e.button !== 2,\r
+      exact: (e, modifiers) => systemModifiers.some(m => e[`${m}Key`] && !modifiers.includes(m))\r
+  };\r
+  /**\r
+   * @private\r
+   */\r
+  const withModifiers = (fn, modifiers) => {\r
+      return (event, ...args) => {\r
+          for (let i = 0; i < modifiers.length; i++) {\r
+              const guard = modifierGuards[modifiers[i]];\r
+              if (guard && guard(event, modifiers))\r
+                  return;\r
+          }\r
+          return fn(event, ...args);\r
+      };\r
+  };\r
+  // Kept for 2.x compat.\r
+  // Note: IE11 compat for `spacebar` and `del` is removed for now.\r
+  const keyNames = {\r
+      esc: 'escape',\r
+      space: ' ',\r
+      up: 'arrow-up',\r
+      left: 'arrow-left',\r
+      right: 'arrow-right',\r
+      down: 'arrow-down',\r
+      delete: 'backspace'\r
+  };\r
+  /**\r
+   * @private\r
+   */\r
+  const withKeys = (fn, modifiers) => {\r
+      return (event) => {\r
+          if (!('key' in event)) {\r
+              return;\r
+          }\r
+          const eventKey = hyphenate(event.key);\r
+          if (modifiers.some(k => k === eventKey || keyNames[k] === eventKey)) {\r
+              return fn(event);\r
+          }\r
+      };\r
+  };
+
+  const vShow = {\r
+      beforeMount(el, { value }, { transition }) {\r
+          el._vod = el.style.display === 'none' ? '' : el.style.display;\r
+          if (transition && value) {\r
+              transition.beforeEnter(el);\r
+          }\r
+          else {\r
+              setDisplay(el, value);\r
+          }\r
+      },\r
+      mounted(el, { value }, { transition }) {\r
+          if (transition && value) {\r
+              transition.enter(el);\r
+          }\r
+      },\r
+      updated(el, { value, oldValue }, { transition }) {\r
+          if (!value === !oldValue)\r
+              return;\r
+          if (transition) {\r
+              if (value) {\r
+                  transition.beforeEnter(el);\r
+                  setDisplay(el, true);\r
+                  transition.enter(el);\r
+              }\r
+              else {\r
+                  transition.leave(el, () => {\r
+                      setDisplay(el, false);\r
+                  });\r
+              }\r
+          }\r
+          else {\r
+              setDisplay(el, value);\r
+          }\r
+      },\r
+      beforeUnmount(el, { value }) {\r
+          setDisplay(el, value);\r
+      }\r
+  };\r
+  function setDisplay(el, value) {\r
+      el.style.display = value ? el._vod : 'none';\r
+  }
+
+  const rendererOptions = extend({ patchProp }, nodeOps);\r
+  // lazy create the renderer - this makes core renderer logic tree-shakable\r
+  // in case the user only imports reactivity utilities from Vue.\r
+  let renderer;\r
+  let enabledHydration = false;\r
+  function ensureRenderer() {\r
+      return (renderer ||\r
+          (renderer = createRenderer(rendererOptions)));\r
+  }\r
+  function ensureHydrationRenderer() {\r
+      renderer = enabledHydration\r
+          ? renderer\r
+          : createHydrationRenderer(rendererOptions);\r
+      enabledHydration = true;\r
+      return renderer;\r
+  }\r
+  // use explicit type casts here to avoid import() calls in rolled-up d.ts\r
+  const render = ((...args) => {\r
+      ensureRenderer().render(...args);\r
+  });\r
+  const hydrate = ((...args) => {\r
+      ensureHydrationRenderer().hydrate(...args);\r
+  });\r
+  const createApp = ((...args) => {\r
+      const app = ensureRenderer().createApp(...args);\r
+      {\r
+          injectNativeTagCheck(app);\r
+          injectCompilerOptionsCheck(app);\r
+      }\r
+      const { mount } = app;\r
+      app.mount = (containerOrSelector) => {\r
+          const container = normalizeContainer(containerOrSelector);\r
+          if (!container)\r
+              return;\r
+          const component = app._component;\r
+          if (!isFunction(component) && !component.render && !component.template) {\r
+              // __UNSAFE__\r
+              // Reason: potential execution of JS expressions in in-DOM template.\r
+              // The user must make sure the in-DOM template is trusted. If it's\r
+              // rendered by the server, the template should not contain any user data.\r
+              component.template = container.innerHTML;\r
+          }\r
+          // clear content before mounting\r
+          container.innerHTML = '';\r
+          const proxy = mount(container, false, container instanceof SVGElement);\r
+          if (container instanceof Element) {\r
+              container.removeAttribute('v-cloak');\r
+              container.setAttribute('data-v-app', '');\r
+          }\r
+          return proxy;\r
+      };\r
+      return app;\r
+  });\r
+  const createSSRApp = ((...args) => {\r
+      const app = ensureHydrationRenderer().createApp(...args);\r
+      {\r
+          injectNativeTagCheck(app);\r
+          injectCompilerOptionsCheck(app);\r
+      }\r
+      const { mount } = app;\r
+      app.mount = (containerOrSelector) => {\r
+          const container = normalizeContainer(containerOrSelector);\r
+          if (container) {\r
+              return mount(container, true, container instanceof SVGElement);\r
+          }\r
+      };\r
+      return app;\r
+  });\r
+  function injectNativeTagCheck(app) {\r
+      // Inject `isNativeTag`\r
+      // this is used for component name validation (dev only)\r
+      Object.defineProperty(app.config, 'isNativeTag', {\r
+          value: (tag) => isHTMLTag(tag) || isSVGTag(tag),\r
+          writable: false\r
+      });\r
+  }\r
+  // dev only\r
+  function injectCompilerOptionsCheck(app) {\r
+      if (isRuntimeOnly()) {\r
+          const isCustomElement = app.config.isCustomElement;\r
+          Object.defineProperty(app.config, 'isCustomElement', {\r
+              get() {\r
+                  return isCustomElement;\r
+              },\r
+              set() {\r
+                  warn$1(`The \`isCustomElement\` config option is deprecated. Use ` +\r
+                      `\`compilerOptions.isCustomElement\` instead.`);\r
+              }\r
+          });\r
+          const compilerOptions = app.config.compilerOptions;\r
+          const msg = `The \`compilerOptions\` config option is only respected when using ` +\r
+              `a build of Vue.js that includes the runtime compiler (aka "full build"). ` +\r
+              `Since you are using the runtime-only build, \`compilerOptions\` ` +\r
+              `must be passed to \`@vue/compiler-dom\` in the build setup instead.\n` +\r
+              `- For vue-loader: pass it via vue-loader's \`compilerOptions\` loader option.\n` +\r
+              `- For vue-cli: see https://cli.vuejs.org/guide/webpack.html#modifying-options-of-a-loader\n` +\r
+              `- For vite: pass it via @vitejs/plugin-vue options. See https://github.com/vitejs/vite/tree/main/packages/plugin-vue#example-for-passing-options-to-vuecompiler-dom`;\r
+          Object.defineProperty(app.config, 'compilerOptions', {\r
+              get() {\r
+                  warn$1(msg);\r
+                  return compilerOptions;\r
+              },\r
+              set() {\r
+                  warn$1(msg);\r
+              }\r
+          });\r
+      }\r
+  }\r
+  function normalizeContainer(container) {\r
+      if (isString(container)) {\r
+          const res = document.querySelector(container);\r
+          if (!res) {\r
+              warn$1(`Failed to mount app: mount target selector "${container}" returned null.`);\r
+          }\r
+          return res;\r
+      }\r
+      if (window.ShadowRoot &&\r
+          container instanceof window.ShadowRoot &&\r
+          container.mode === 'closed') {\r
+          warn$1(`mounting on a ShadowRoot with \`{mode: "closed"}\` may lead to unpredictable bugs`);\r
+      }\r
+      return container;\r
+  }
+
+  function initDev() {\r
+      {\r
+          {\r
+              console.info(`You are running a development build of Vue.\n` +\r
+                  `Make sure to use the production build (*.prod.js) when deploying for production.`);\r
+          }\r
+          initCustomFormatter();\r
+      }\r
+  }
+
+  function defaultOnError(error) {\r
+      throw error;\r
+  }\r
+  function defaultOnWarn(msg) {\r
+      console.warn(`[Vue warn] ${msg.message}`);\r
+  }\r
+  function createCompilerError(code, loc, messages, additionalMessage) {\r
+      const msg = (messages || errorMessages)[code] + (additionalMessage || ``)\r
+          ;\r
+      const error = new SyntaxError(String(msg));\r
+      error.code = code;\r
+      error.loc = loc;\r
+      return error;\r
+  }\r
+  const errorMessages = {\r
+      // parse errors\r
+      [0 /* ABRUPT_CLOSING_OF_EMPTY_COMMENT */]: 'Illegal comment.',\r
+      [1 /* CDATA_IN_HTML_CONTENT */]: 'CDATA section is allowed only in XML context.',\r
+      [2 /* DUPLICATE_ATTRIBUTE */]: 'Duplicate attribute.',\r
+      [3 /* END_TAG_WITH_ATTRIBUTES */]: 'End tag cannot have attributes.',\r
+      [4 /* END_TAG_WITH_TRAILING_SOLIDUS */]: "Illegal '/' in tags.",\r
+      [5 /* EOF_BEFORE_TAG_NAME */]: 'Unexpected EOF in tag.',\r
+      [6 /* EOF_IN_CDATA */]: 'Unexpected EOF in CDATA section.',\r
+      [7 /* EOF_IN_COMMENT */]: 'Unexpected EOF in comment.',\r
+      [8 /* EOF_IN_SCRIPT_HTML_COMMENT_LIKE_TEXT */]: 'Unexpected EOF in script.',\r
+      [9 /* EOF_IN_TAG */]: 'Unexpected EOF in tag.',\r
+      [10 /* INCORRECTLY_CLOSED_COMMENT */]: 'Incorrectly closed comment.',\r
+      [11 /* INCORRECTLY_OPENED_COMMENT */]: 'Incorrectly opened comment.',\r
+      [12 /* INVALID_FIRST_CHARACTER_OF_TAG_NAME */]: "Illegal tag name. Use '&lt;' to print '<'.",\r
+      [13 /* MISSING_ATTRIBUTE_VALUE */]: 'Attribute value was expected.',\r
+      [14 /* MISSING_END_TAG_NAME */]: 'End tag name was expected.',\r
+      [15 /* MISSING_WHITESPACE_BETWEEN_ATTRIBUTES */]: 'Whitespace was expected.',\r
+      [16 /* NESTED_COMMENT */]: "Unexpected '<!--' in comment.",\r
+      [17 /* UNEXPECTED_CHARACTER_IN_ATTRIBUTE_NAME */]: 'Attribute name cannot contain U+0022 ("), U+0027 (\'), and U+003C (<).',\r
+      [18 /* UNEXPECTED_CHARACTER_IN_UNQUOTED_ATTRIBUTE_VALUE */]: 'Unquoted attribute value cannot contain U+0022 ("), U+0027 (\'), U+003C (<), U+003D (=), and U+0060 (`).',\r
+      [19 /* UNEXPECTED_EQUALS_SIGN_BEFORE_ATTRIBUTE_NAME */]: "Attribute name cannot start with '='.",\r
+      [21 /* UNEXPECTED_QUESTION_MARK_INSTEAD_OF_TAG_NAME */]: "'<?' is allowed only in XML context.",\r
+      [20 /* UNEXPECTED_NULL_CHARACTER */]: `Unexpected null character.`,\r
+      [22 /* UNEXPECTED_SOLIDUS_IN_TAG */]: "Illegal '/' in tags.",\r
+      // Vue-specific parse errors\r
+      [23 /* X_INVALID_END_TAG */]: 'Invalid end tag.',\r
+      [24 /* X_MISSING_END_TAG */]: 'Element is missing end tag.',\r
+      [25 /* X_MISSING_INTERPOLATION_END */]: 'Interpolation end sign was not found.',\r
+      [27 /* X_MISSING_DYNAMIC_DIRECTIVE_ARGUMENT_END */]: 'End bracket for dynamic directive argument was not found. ' +\r
+          'Note that dynamic directive argument cannot contain spaces.',\r
+      [26 /* X_MISSING_DIRECTIVE_NAME */]: 'Legal directive name was expected.',\r
+      // transform errors\r
+      [28 /* X_V_IF_NO_EXPRESSION */]: `v-if/v-else-if is missing expression.`,\r
+      [29 /* X_V_IF_SAME_KEY */]: `v-if/else branches must use unique keys.`,\r
+      [30 /* X_V_ELSE_NO_ADJACENT_IF */]: `v-else/v-else-if has no adjacent v-if.`,\r
+      [31 /* X_V_FOR_NO_EXPRESSION */]: `v-for is missing expression.`,\r
+      [32 /* X_V_FOR_MALFORMED_EXPRESSION */]: `v-for has invalid expression.`,\r
+      [33 /* X_V_FOR_TEMPLATE_KEY_PLACEMENT */]: `<template v-for> key should be placed on the <template> tag.`,\r
+      [34 /* X_V_BIND_NO_EXPRESSION */]: `v-bind is missing expression.`,\r
+      [35 /* X_V_ON_NO_EXPRESSION */]: `v-on is missing expression.`,\r
+      [36 /* X_V_SLOT_UNEXPECTED_DIRECTIVE_ON_SLOT_OUTLET */]: `Unexpected custom directive on <slot> outlet.`,\r
+      [37 /* X_V_SLOT_MIXED_SLOT_USAGE */]: `Mixed v-slot usage on both the component and nested <template>.` +\r
+          `When there are multiple named slots, all slots should use <template> ` +\r
+          `syntax to avoid scope ambiguity.`,\r
+      [38 /* X_V_SLOT_DUPLICATE_SLOT_NAMES */]: `Duplicate slot names found. `,\r
+      [39 /* X_V_SLOT_EXTRANEOUS_DEFAULT_SLOT_CHILDREN */]: `Extraneous children found when component already has explicitly named ` +\r
+          `default slot. These children will be ignored.`,\r
+      [40 /* X_V_SLOT_MISPLACED */]: `v-slot can only be used on components or <template> tags.`,\r
+      [41 /* X_V_MODEL_NO_EXPRESSION */]: `v-model is missing expression.`,\r
+      [42 /* X_V_MODEL_MALFORMED_EXPRESSION */]: `v-model value must be a valid JavaScript member expression.`,\r
+      [43 /* X_V_MODEL_ON_SCOPE_VARIABLE */]: `v-model cannot be used on v-for or v-slot scope variables because they are not writable.`,\r
+      [44 /* X_INVALID_EXPRESSION */]: `Error parsing JavaScript expression: `,\r
+      [45 /* X_KEEP_ALIVE_INVALID_CHILDREN */]: `<KeepAlive> expects exactly one child component.`,\r
+      // generic errors\r
+      [46 /* X_PREFIX_ID_NOT_SUPPORTED */]: `"prefixIdentifiers" option is not supported in this build of compiler.`,\r
+      [47 /* X_MODULE_MODE_NOT_SUPPORTED */]: `ES module mode is not supported in this build of compiler.`,\r
+      [48 /* X_CACHE_HANDLER_NOT_SUPPORTED */]: `"cacheHandlers" option is only supported when the "prefixIdentifiers" option is enabled.`,\r
+      [49 /* X_SCOPE_ID_NOT_SUPPORTED */]: `"scopeId" option is only supported in module mode.`,\r
+      // just to fullfill types\r
+      [50 /* __EXTEND_POINT__ */]: ``\r
+  };
+
+  const FRAGMENT = Symbol(`Fragment` );\r
+  const TELEPORT = Symbol(`Teleport` );\r
+  const SUSPENSE = Symbol(`Suspense` );\r
+  const KEEP_ALIVE = Symbol(`KeepAlive` );\r
+  const BASE_TRANSITION = Symbol(`BaseTransition` );\r
+  const OPEN_BLOCK = Symbol(`openBlock` );\r
+  const CREATE_BLOCK = Symbol(`createBlock` );\r
+  const CREATE_ELEMENT_BLOCK = Symbol(`createElementBlock` );\r
+  const CREATE_VNODE = Symbol(`createVNode` );\r
+  const CREATE_ELEMENT_VNODE = Symbol(`createElementVNode` );\r
+  const CREATE_COMMENT = Symbol(`createCommentVNode` );\r
+  const CREATE_TEXT = Symbol(`createTextVNode` );\r
+  const CREATE_STATIC = Symbol(`createStaticVNode` );\r
+  const RESOLVE_COMPONENT = Symbol(`resolveComponent` );\r
+  const RESOLVE_DYNAMIC_COMPONENT = Symbol(`resolveDynamicComponent` );\r
+  const RESOLVE_DIRECTIVE = Symbol(`resolveDirective` );\r
+  const RESOLVE_FILTER = Symbol(`resolveFilter` );\r
+  const WITH_DIRECTIVES = Symbol(`withDirectives` );\r
+  const RENDER_LIST = Symbol(`renderList` );\r
+  const RENDER_SLOT = Symbol(`renderSlot` );\r
+  const CREATE_SLOTS = Symbol(`createSlots` );\r
+  const TO_DISPLAY_STRING = Symbol(`toDisplayString` );\r
+  const MERGE_PROPS = Symbol(`mergeProps` );\r
+  const NORMALIZE_CLASS = Symbol(`normalizeClass` );\r
+  const NORMALIZE_STYLE = Symbol(`normalizeStyle` );\r
+  const NORMALIZE_PROPS = Symbol(`normalizeProps` );\r
+  const GUARD_REACTIVE_PROPS = Symbol(`guardReactiveProps` );\r
+  const TO_HANDLERS = Symbol(`toHandlers` );\r
+  const CAMELIZE = Symbol(`camelize` );\r
+  const CAPITALIZE = Symbol(`capitalize` );\r
+  const TO_HANDLER_KEY = Symbol(`toHandlerKey` );\r
+  const SET_BLOCK_TRACKING = Symbol(`setBlockTracking` );\r
+  const PUSH_SCOPE_ID = Symbol(`pushScopeId` );\r
+  const POP_SCOPE_ID = Symbol(`popScopeId` );\r
+  const WITH_CTX = Symbol(`withCtx` );\r
+  const UNREF = Symbol(`unref` );\r
+  const IS_REF = Symbol(`isRef` );\r
+  const WITH_MEMO = Symbol(`withMemo` );\r
+  const IS_MEMO_SAME = Symbol(`isMemoSame` );\r
+  // Name mapping for runtime helpers that need to be imported from 'vue' in\r
+  // generated code. Make sure these are correctly exported in the runtime!\r
+  // Using `any` here because TS doesn't allow symbols as index type.\r
+  const helperNameMap = {\r
+      [FRAGMENT]: `Fragment`,\r
+      [TELEPORT]: `Teleport`,\r
+      [SUSPENSE]: `Suspense`,\r
+      [KEEP_ALIVE]: `KeepAlive`,\r
+      [BASE_TRANSITION]: `BaseTransition`,\r
+      [OPEN_BLOCK]: `openBlock`,\r
+      [CREATE_BLOCK]: `createBlock`,\r
+      [CREATE_ELEMENT_BLOCK]: `createElementBlock`,\r
+      [CREATE_VNODE]: `createVNode`,\r
+      [CREATE_ELEMENT_VNODE]: `createElementVNode`,\r
+      [CREATE_COMMENT]: `createCommentVNode`,\r
+      [CREATE_TEXT]: `createTextVNode`,\r
+      [CREATE_STATIC]: `createStaticVNode`,\r
+      [RESOLVE_COMPONENT]: `resolveComponent`,\r
+      [RESOLVE_DYNAMIC_COMPONENT]: `resolveDynamicComponent`,\r
+      [RESOLVE_DIRECTIVE]: `resolveDirective`,\r
+      [RESOLVE_FILTER]: `resolveFilter`,\r
+      [WITH_DIRECTIVES]: `withDirectives`,\r
+      [RENDER_LIST]: `renderList`,\r
+      [RENDER_SLOT]: `renderSlot`,\r
+      [CREATE_SLOTS]: `createSlots`,\r
+      [TO_DISPLAY_STRING]: `toDisplayString`,\r
+      [MERGE_PROPS]: `mergeProps`,\r
+      [NORMALIZE_CLASS]: `normalizeClass`,\r
+      [NORMALIZE_STYLE]: `normalizeStyle`,\r
+      [NORMALIZE_PROPS]: `normalizeProps`,\r
+      [GUARD_REACTIVE_PROPS]: `guardReactiveProps`,\r
+      [TO_HANDLERS]: `toHandlers`,\r
+      [CAMELIZE]: `camelize`,\r
+      [CAPITALIZE]: `capitalize`,\r
+      [TO_HANDLER_KEY]: `toHandlerKey`,\r
+      [SET_BLOCK_TRACKING]: `setBlockTracking`,\r
+      [PUSH_SCOPE_ID]: `pushScopeId`,\r
+      [POP_SCOPE_ID]: `popScopeId`,\r
+      [WITH_CTX]: `withCtx`,\r
+      [UNREF]: `unref`,\r
+      [IS_REF]: `isRef`,\r
+      [WITH_MEMO]: `withMemo`,\r
+      [IS_MEMO_SAME]: `isMemoSame`\r
+  };\r
+  function registerRuntimeHelpers(helpers) {\r
+      Object.getOwnPropertySymbols(helpers).forEach(s => {\r
+          helperNameMap[s] = helpers[s];\r
+      });\r
+  }
+
+  // AST Utilities ---------------------------------------------------------------\r
+  // Some expressions, e.g. sequence and conditional expressions, are never\r
+  // associated with template nodes, so their source locations are just a stub.\r
+  // Container types like CompoundExpression also don't need a real location.\r
+  const locStub = {\r
+      source: '',\r
+      start: { line: 1, column: 1, offset: 0 },\r
+      end: { line: 1, column: 1, offset: 0 }\r
+  };\r
+  function createRoot(children, loc = locStub) {\r
+      return {\r
+          type: 0 /* ROOT */,\r
+          children,\r
+          helpers: [],\r
+          components: [],\r
+          directives: [],\r
+          hoists: [],\r
+          imports: [],\r
+          cached: 0,\r
+          temps: 0,\r
+          codegenNode: undefined,\r
+          loc\r
+      };\r
+  }\r
+  function createVNodeCall(context, tag, props, children, patchFlag, dynamicProps, directives, isBlock = false, disableTracking = false, isComponent = false, loc = locStub) {\r
+      if (context) {\r
+          if (isBlock) {\r
+              context.helper(OPEN_BLOCK);\r
+              context.helper(getVNodeBlockHelper(context.inSSR, isComponent));\r
+          }\r
+          else {\r
+              context.helper(getVNodeHelper(context.inSSR, isComponent));\r
+          }\r
+          if (directives) {\r
+              context.helper(WITH_DIRECTIVES);\r
+          }\r
+      }\r
+      return {\r
+          type: 13 /* VNODE_CALL */,\r
+          tag,\r
+          props,\r
+          children,\r
+          patchFlag,\r
+          dynamicProps,\r
+          directives,\r
+          isBlock,\r
+          disableTracking,\r
+          isComponent,\r
+          loc\r
+      };\r
+  }\r
+  function createArrayExpression(elements, loc = locStub) {\r
+      return {\r
+          type: 17 /* JS_ARRAY_EXPRESSION */,\r
+          loc,\r
+          elements\r
+      };\r
+  }\r
+  function createObjectExpression(properties, loc = locStub) {\r
+      return {\r
+          type: 15 /* JS_OBJECT_EXPRESSION */,\r
+          loc,\r
+          properties\r
+      };\r
+  }\r
+  function createObjectProperty(key, value) {\r
+      return {\r
+          type: 16 /* JS_PROPERTY */,\r
+          loc: locStub,\r
+          key: isString(key) ? createSimpleExpression(key, true) : key,\r
+          value\r
+      };\r
+  }\r
+  function createSimpleExpression(content, isStatic = false, loc = locStub, constType = 0 /* NOT_CONSTANT */) {\r
+      return {\r
+          type: 4 /* SIMPLE_EXPRESSION */,\r
+          loc,\r
+          content,\r
+          isStatic,\r
+          constType: isStatic ? 3 /* CAN_STRINGIFY */ : constType\r
+      };\r
+  }\r
+  function createCompoundExpression(children, loc = locStub) {\r
+      return {\r
+          type: 8 /* COMPOUND_EXPRESSION */,\r
+          loc,\r
+          children\r
+      };\r
+  }\r
+  function createCallExpression(callee, args = [], loc = locStub) {\r
+      return {\r
+          type: 14 /* JS_CALL_EXPRESSION */,\r
+          loc,\r
+          callee,\r
+          arguments: args\r
+      };\r
+  }\r
+  function createFunctionExpression(params, returns = undefined, newline = false, isSlot = false, loc = locStub) {\r
+      return {\r
+          type: 18 /* JS_FUNCTION_EXPRESSION */,\r
+          params,\r
+          returns,\r
+          newline,\r
+          isSlot,\r
+          loc\r
+      };\r
+  }\r
+  function createConditionalExpression(test, consequent, alternate, newline = true) {\r
+      return {\r
+          type: 19 /* JS_CONDITIONAL_EXPRESSION */,\r
+          test,\r
+          consequent,\r
+          alternate,\r
+          newline,\r
+          loc: locStub\r
+      };\r
+  }\r
+  function createCacheExpression(index, value, isVNode = false) {\r
+      return {\r
+          type: 20 /* JS_CACHE_EXPRESSION */,\r
+          index,\r
+          value,\r
+          isVNode,\r
+          loc: locStub\r
+      };\r
+  }\r
+  function createBlockStatement(body) {\r
+      return {\r
+          type: 21 /* JS_BLOCK_STATEMENT */,\r
+          body,\r
+          loc: locStub\r
+      };\r
+  }
+
+  const isStaticExp = (p) => p.type === 4 /* SIMPLE_EXPRESSION */ && p.isStatic;\r
+  const isBuiltInType = (tag, expected) => tag === expected || tag === hyphenate(expected);\r
+  function isCoreComponent(tag) {\r
+      if (isBuiltInType(tag, 'Teleport')) {\r
+          return TELEPORT;\r
+      }\r
+      else if (isBuiltInType(tag, 'Suspense')) {\r
+          return SUSPENSE;\r
+      }\r
+      else if (isBuiltInType(tag, 'KeepAlive')) {\r
+          return KEEP_ALIVE;\r
+      }\r
+      else if (isBuiltInType(tag, 'BaseTransition')) {\r
+          return BASE_TRANSITION;\r
+      }\r
+  }\r
+  const nonIdentifierRE = /^\d|[^\$\w]/;\r
+  const isSimpleIdentifier = (name) => !nonIdentifierRE.test(name);\r
+  const validFirstIdentCharRE = /[A-Za-z_$\xA0-\uFFFF]/;\r
+  const validIdentCharRE = /[\.\?\w$\xA0-\uFFFF]/;\r
+  const whitespaceRE = /\s+[.[]\s*|\s*[.[]\s+/g;\r
+  /**\r
+   * Simple lexer to check if an expression is a member expression. This is\r
+   * lax and only checks validity at the root level (i.e. does not validate exps\r
+   * inside square brackets), but it's ok since these are only used on template\r
+   * expressions and false positives are invalid expressions in the first place.\r
+   */\r
+  const isMemberExpression = (path) => {\r
+      // remove whitespaces around . or [ first\r
+      path = path.trim().replace(whitespaceRE, s => s.trim());\r
+      let state = 0 /* inMemberExp */;\r
+      let stateStack = [];\r
+      let currentOpenBracketCount = 0;\r
+      let currentOpenParensCount = 0;\r
+      let currentStringType = null;\r
+      for (let i = 0; i < path.length; i++) {\r
+          const char = path.charAt(i);\r
+          switch (state) {\r
+              case 0 /* inMemberExp */:\r
+                  if (char === '[') {\r
+                      stateStack.push(state);\r
+                      state = 1 /* inBrackets */;\r
+                      currentOpenBracketCount++;\r
+                  }\r
+                  else if (char === '(') {\r
+                      stateStack.push(state);\r
+                      state = 2 /* inParens */;\r
+                      currentOpenParensCount++;\r
+                  }\r
+                  else if (!(i === 0 ? validFirstIdentCharRE : validIdentCharRE).test(char)) {\r
+                      return false;\r
+                  }\r
+                  break;\r
+              case 1 /* inBrackets */:\r
+                  if (char === `'` || char === `"` || char === '`') {\r
+                      stateStack.push(state);\r
+                      state = 3 /* inString */;\r
+                      currentStringType = char;\r
+                  }\r
+                  else if (char === `[`) {\r
+                      currentOpenBracketCount++;\r
+                  }\r
+                  else if (char === `]`) {\r
+                      if (!--currentOpenBracketCount) {\r
+                          state = stateStack.pop();\r
+                      }\r
+                  }\r
+                  break;\r
+              case 2 /* inParens */:\r
+                  if (char === `'` || char === `"` || char === '`') {\r
+                      stateStack.push(state);\r
+                      state = 3 /* inString */;\r
+                      currentStringType = char;\r
+                  }\r
+                  else if (char === `(`) {\r
+                      currentOpenParensCount++;\r
+                  }\r
+                  else if (char === `)`) {\r
+                      // if the exp ends as a call then it should not be considered valid\r
+                      if (i === path.length - 1) {\r
+                          return false;\r
+                      }\r
+                      if (!--currentOpenParensCount) {\r
+                          state = stateStack.pop();\r
+                      }\r
+                  }\r
+                  break;\r
+              case 3 /* inString */:\r
+                  if (char === currentStringType) {\r
+                      state = stateStack.pop();\r
+                      currentStringType = null;\r
+                  }\r
+                  break;\r
+          }\r
+      }\r
+      return !currentOpenBracketCount && !currentOpenParensCount;\r
+  };\r
+  function getInnerRange(loc, offset, length) {\r
+      const source = loc.source.substr(offset, length);\r
+      const newLoc = {\r
+          source,\r
+          start: advancePositionWithClone(loc.start, loc.source, offset),\r
+          end: loc.end\r
+      };\r
+      if (length != null) {\r
+          newLoc.end = advancePositionWithClone(loc.start, loc.source, offset + length);\r
+      }\r
+      return newLoc;\r
+  }\r
+  function advancePositionWithClone(pos, source, numberOfCharacters = source.length) {\r
+      return advancePositionWithMutation(extend({}, pos), source, numberOfCharacters);\r
+  }\r
+  // advance by mutation without cloning (for performance reasons), since this\r
+  // gets called a lot in the parser\r
+  function advancePositionWithMutation(pos, source, numberOfCharacters = source.length) {\r
+      let linesCount = 0;\r
+      let lastNewLinePos = -1;\r
+      for (let i = 0; i < numberOfCharacters; i++) {\r
+          if (source.charCodeAt(i) === 10 /* newline char code */) {\r
+              linesCount++;\r
+              lastNewLinePos = i;\r
+          }\r
+      }\r
+      pos.offset += numberOfCharacters;\r
+      pos.line += linesCount;\r
+      pos.column =\r
+          lastNewLinePos === -1\r
+              ? pos.column + numberOfCharacters\r
+              : numberOfCharacters - lastNewLinePos;\r
+      return pos;\r
+  }\r
+  function assert(condition, msg) {\r
+      /* istanbul ignore if */\r
+      if (!condition) {\r
+          throw new Error(msg || `unexpected compiler condition`);\r
+      }\r
+  }\r
+  function findDir(node, name, allowEmpty = false) {\r
+      for (let i = 0; i < node.props.length; i++) {\r
+          const p = node.props[i];\r
+          if (p.type === 7 /* DIRECTIVE */ &&\r
+              (allowEmpty || p.exp) &&\r
+              (isString(name) ? p.name === name : name.test(p.name))) {\r
+              return p;\r
+          }\r
+      }\r
+  }\r
+  function findProp(node, name, dynamicOnly = false, allowEmpty = false) {\r
+      for (let i = 0; i < node.props.length; i++) {\r
+          const p = node.props[i];\r
+          if (p.type === 6 /* ATTRIBUTE */) {\r
+              if (dynamicOnly)\r
+                  continue;\r
+              if (p.name === name && (p.value || allowEmpty)) {\r
+                  return p;\r
+              }\r
+          }\r
+          else if (p.name === 'bind' &&\r
+              (p.exp || allowEmpty) &&\r
+              isBindKey(p.arg, name)) {\r
+              return p;\r
+          }\r
+      }\r
+  }\r
+  function isBindKey(arg, name) {\r
+      return !!(arg && isStaticExp(arg) && arg.content === name);\r
+  }\r
+  function hasDynamicKeyVBind(node) {\r
+      return node.props.some(p => p.type === 7 /* DIRECTIVE */ &&\r
+          p.name === 'bind' &&\r
+          (!p.arg || // v-bind="obj"\r
+              p.arg.type !== 4 /* SIMPLE_EXPRESSION */ || // v-bind:[_ctx.foo]\r
+              !p.arg.isStatic) // v-bind:[foo]\r
+      );\r
+  }\r
+  function isText(node) {\r
+      return node.type === 5 /* INTERPOLATION */ || node.type === 2 /* TEXT */;\r
+  }\r
+  function isVSlot(p) {\r
+      return p.type === 7 /* DIRECTIVE */ && p.name === 'slot';\r
+  }\r
+  function isTemplateNode(node) {\r
+      return (node.type === 1 /* ELEMENT */ && node.tagType === 3 /* TEMPLATE */);\r
+  }\r
+  function isSlotOutlet(node) {\r
+      return node.type === 1 /* ELEMENT */ && node.tagType === 2 /* SLOT */;\r
+  }\r
+  function getVNodeHelper(ssr, isComponent) {\r
+      return ssr || isComponent ? CREATE_VNODE : CREATE_ELEMENT_VNODE;\r
+  }\r
+  function getVNodeBlockHelper(ssr, isComponent) {\r
+      return ssr || isComponent ? CREATE_BLOCK : CREATE_ELEMENT_BLOCK;\r
+  }\r
+  const propsHelperSet = new Set([NORMALIZE_PROPS, GUARD_REACTIVE_PROPS]);\r
+  function getUnnormalizedProps(props, callPath = []) {\r
+      if (props &&\r
+          !isString(props) &&\r
+          props.type === 14 /* JS_CALL_EXPRESSION */) {\r
+          const callee = props.callee;\r
+          if (!isString(callee) && propsHelperSet.has(callee)) {\r
+              return getUnnormalizedProps(props.arguments[0], callPath.concat(props));\r
+          }\r
+      }\r
+      return [props, callPath];\r
+  }\r
+  function injectProp(node, prop, context) {\r
+      let propsWithInjection;\r
+      const originalProps = node.type === 13 /* VNODE_CALL */ ? node.props : node.arguments[2];\r
+      /**\r
+       * 1. mergeProps(...)\r
+       * 2. toHandlers(...)\r
+       * 3. normalizeProps(...)\r
+       * 4. normalizeProps(guardReactiveProps(...))\r
+       *\r
+       * we need to get the real props before normalization\r
+       */\r
+      let props = originalProps;\r
+      let callPath = [];\r
+      let parentCall;\r
+      if (props &&\r
+          !isString(props) &&\r
+          props.type === 14 /* JS_CALL_EXPRESSION */) {\r
+          const ret = getUnnormalizedProps(props);\r
+          props = ret[0];\r
+          callPath = ret[1];\r
+          parentCall = callPath[callPath.length - 1];\r
+      }\r
+      if (props == null || isString(props)) {\r
+          propsWithInjection = createObjectExpression([prop]);\r
+      }\r
+      else if (props.type === 14 /* JS_CALL_EXPRESSION */) {\r
+          // merged props... add ours\r
+          // only inject key to object literal if it's the first argument so that\r
+          // if doesn't override user provided keys\r
+          const first = props.arguments[0];\r
+          if (!isString(first) && first.type === 15 /* JS_OBJECT_EXPRESSION */) {\r
+              first.properties.unshift(prop);\r
+          }\r
+          else {\r
+              if (props.callee === TO_HANDLERS) {\r
+                  // #2366\r
+                  propsWithInjection = createCallExpression(context.helper(MERGE_PROPS), [\r
+                      createObjectExpression([prop]),\r
+                      props\r
+                  ]);\r
+              }\r
+              else {\r
+                  props.arguments.unshift(createObjectExpression([prop]));\r
+              }\r
+          }\r
+          !propsWithInjection && (propsWithInjection = props);\r
+      }\r
+      else if (props.type === 15 /* JS_OBJECT_EXPRESSION */) {\r
+          let alreadyExists = false;\r
+          // check existing key to avoid overriding user provided keys\r
+          if (prop.key.type === 4 /* SIMPLE_EXPRESSION */) {\r
+              const propKeyName = prop.key.content;\r
+              alreadyExists = props.properties.some(p => p.key.type === 4 /* SIMPLE_EXPRESSION */ &&\r
+                  p.key.content === propKeyName);\r
+          }\r
+          if (!alreadyExists) {\r
+              props.properties.unshift(prop);\r
+          }\r
+          propsWithInjection = props;\r
+      }\r
+      else {\r
+          // single v-bind with expression, return a merged replacement\r
+          propsWithInjection = createCallExpression(context.helper(MERGE_PROPS), [\r
+              createObjectExpression([prop]),\r
+              props\r
+          ]);\r
+          // in the case of nested helper call, e.g. `normalizeProps(guardReactiveProps(props))`,\r
+          // it will be rewritten as `normalizeProps(mergeProps({ key: 0 }, props))`,\r
+          // the `guardReactiveProps` will no longer be needed\r
+          if (parentCall && parentCall.callee === GUARD_REACTIVE_PROPS) {\r
+              parentCall = callPath[callPath.length - 2];\r
+          }\r
+      }\r
+      if (node.type === 13 /* VNODE_CALL */) {\r
+          if (parentCall) {\r
+              parentCall.arguments[0] = propsWithInjection;\r
+          }\r
+          else {\r
+              node.props = propsWithInjection;\r
+          }\r
+      }\r
+      else {\r
+          if (parentCall) {\r
+              parentCall.arguments[0] = propsWithInjection;\r
+          }\r
+          else {\r
+              node.arguments[2] = propsWithInjection;\r
+          }\r
+      }\r
+  }\r
+  function toValidAssetId(name, type) {\r
+      // see issue#4422, we need adding identifier on validAssetId if variable `name` has specific character\r
+      return `_${type}_${name.replace(/[^\w]/g, (searchValue, replaceValue) => {\r
+        return searchValue === '-' ? '_' : name.charCodeAt(replaceValue).toString();\r
+    })}`;\r
+  }\r
+  function getMemoedVNodeCall(node) {\r
+      if (node.type === 14 /* JS_CALL_EXPRESSION */ && node.callee === WITH_MEMO) {\r
+          return node.arguments[1].returns;\r
+      }\r
+      else {\r
+          return node;\r
+      }\r
+  }\r
+  function makeBlock(node, { helper, removeHelper, inSSR }) {\r
+      if (!node.isBlock) {\r
+          node.isBlock = true;\r
+          removeHelper(getVNodeHelper(inSSR, node.isComponent));\r
+          helper(OPEN_BLOCK);\r
+          helper(getVNodeBlockHelper(inSSR, node.isComponent));\r
+      }\r
+  }
+
+  const deprecationData$1 = {\r
+      ["COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */]: {\r
+          message: `Platform-native elements with "is" prop will no longer be ` +\r
+              `treated as components in Vue 3 unless the "is" value is explicitly ` +\r
+              `prefixed with "vue:".`,\r
+          link: `https://v3.vuejs.org/guide/migration/custom-elements-interop.html`\r
+      },\r
+      ["COMPILER_V_BIND_SYNC" /* COMPILER_V_BIND_SYNC */]: {\r
+          message: key => `.sync modifier for v-bind has been removed. Use v-model with ` +\r
+              `argument instead. \`v-bind:${key}.sync\` should be changed to ` +\r
+              `\`v-model:${key}\`.`,\r
+          link: `https://v3.vuejs.org/guide/migration/v-model.html`\r
+      },\r
+      ["COMPILER_V_BIND_PROP" /* COMPILER_V_BIND_PROP */]: {\r
+          message: `.prop modifier for v-bind has been removed and no longer necessary. ` +\r
+              `Vue 3 will automatically set a binding as DOM property when appropriate.`\r
+      },\r
+      ["COMPILER_V_BIND_OBJECT_ORDER" /* COMPILER_V_BIND_OBJECT_ORDER */]: {\r
+          message: `v-bind="obj" usage is now order sensitive and behaves like JavaScript ` +\r
+              `object spread: it will now overwrite an existing non-mergeable attribute ` +\r
+              `that appears before v-bind in the case of conflict. ` +\r
+              `To retain 2.x behavior, move v-bind to make it the first attribute. ` +\r
+              `You can also suppress this warning if the usage is intended.`,\r
+          link: `https://v3.vuejs.org/guide/migration/v-bind.html`\r
+      },\r
+      ["COMPILER_V_ON_NATIVE" /* COMPILER_V_ON_NATIVE */]: {\r
+          message: `.native modifier for v-on has been removed as is no longer necessary.`,\r
+          link: `https://v3.vuejs.org/guide/migration/v-on-native-modifier-removed.html`\r
+      },\r
+      ["COMPILER_V_IF_V_FOR_PRECEDENCE" /* COMPILER_V_IF_V_FOR_PRECEDENCE */]: {\r
+          message: `v-if / v-for precedence when used on the same element has changed ` +\r
+              `in Vue 3: v-if now takes higher precedence and will no longer have ` +\r
+              `access to v-for scope variables. It is best to avoid the ambiguity ` +\r
+              `with <template> tags or use a computed property that filters v-for ` +\r
+              `data source.`,\r
+          link: `https://v3.vuejs.org/guide/migration/v-if-v-for.html`\r
+      },\r
+      ["COMPILER_V_FOR_REF" /* COMPILER_V_FOR_REF */]: {\r
+          message: `Ref usage on v-for no longer creates array ref values in Vue 3. ` +\r
+              `Consider using function refs or refactor to avoid ref usage altogether.`,\r
+          link: `https://v3.vuejs.org/guide/migration/array-refs.html`\r
+      },\r
+      ["COMPILER_NATIVE_TEMPLATE" /* COMPILER_NATIVE_TEMPLATE */]: {\r
+          message: `<template> with no special directives will render as a native template ` +\r
+              `element instead of its inner content in Vue 3.`\r
+      },\r
+      ["COMPILER_INLINE_TEMPLATE" /* COMPILER_INLINE_TEMPLATE */]: {\r
+          message: `"inline-template" has been removed in Vue 3.`,\r
+          link: `https://v3.vuejs.org/guide/migration/inline-template-attribute.html`\r
+      },\r
+      ["COMPILER_FILTER" /* COMPILER_FILTERS */]: {\r
+          message: `filters have been removed in Vue 3. ` +\r
+              `The "|" symbol will be treated as native JavaScript bitwise OR operator. ` +\r
+              `Use method calls or computed properties instead.`,\r
+          link: `https://v3.vuejs.org/guide/migration/filters.html`\r
+      }\r
+  };\r
+  function getCompatValue(key, context) {\r
+      const config = context.options\r
+          ? context.options.compatConfig\r
+          : context.compatConfig;\r
+      const value = config && config[key];\r
+      if (key === 'MODE') {\r
+          return value || 3; // compiler defaults to v3 behavior\r
+      }\r
+      else {\r
+          return value;\r
+      }\r
+  }\r
+  function isCompatEnabled$1(key, context) {\r
+      const mode = getCompatValue('MODE', context);\r
+      const value = getCompatValue(key, context);\r
+      // in v3 mode, only enable if explicitly set to true\r
+      // otherwise enable for any non-false value\r
+      return mode === 3 ? value === true : value !== false;\r
+  }\r
+  function checkCompatEnabled(key, context, loc, ...args) {\r
+      const enabled = isCompatEnabled$1(key, context);\r
+      if (enabled) {\r
+          warnDeprecation$1(key, context, loc, ...args);\r
+      }\r
+      return enabled;\r
+  }\r
+  function warnDeprecation$1(key, context, loc, ...args) {\r
+      const val = getCompatValue(key, context);\r
+      if (val === 'suppress-warning') {\r
+          return;\r
+      }\r
+      const { message, link } = deprecationData$1[key];\r
+      const msg = `(deprecation ${key}) ${typeof message === 'function' ? message(...args) : message}${link ? `\n  Details: ${link}` : ``}`;\r
+      const err = new SyntaxError(msg);\r
+      err.code = key;\r
+      if (loc)\r
+          err.loc = loc;\r
+      context.onWarn(err);\r
+  }
+
+  // The default decoder only provides escapes for characters reserved as part of\r
+  // the template syntax, and is only used if the custom renderer did not provide\r
+  // a platform-specific decoder.\r
+  const decodeRE = /&(gt|lt|amp|apos|quot);/g;\r
+  const decodeMap = {\r
+      gt: '>',\r
+      lt: '<',\r
+      amp: '&',\r
+      apos: "'",\r
+      quot: '"'\r
+  };\r
+  const defaultParserOptions = {\r
+      delimiters: [`{{`, `}}`],\r
+      getNamespace: () => 0 /* HTML */,\r
+      getTextMode: () => 0 /* DATA */,\r
+      isVoidTag: NO,\r
+      isPreTag: NO,\r
+      isCustomElement: NO,\r
+      decodeEntities: (rawText) => rawText.replace(decodeRE, (_, p1) => decodeMap[p1]),\r
+      onError: defaultOnError,\r
+      onWarn: defaultOnWarn,\r
+      comments: true\r
+  };\r
+  function baseParse(content, options = {}) {\r
+      const context = createParserContext(content, options);\r
+      const start = getCursor(context);\r
+      return createRoot(parseChildren(context, 0 /* DATA */, []), getSelection(context, start));\r
+  }\r
+  function createParserContext(content, rawOptions) {\r
+      const options = extend({}, defaultParserOptions);\r
+      let key;\r
+      for (key in rawOptions) {\r
+          // @ts-ignore\r
+          options[key] =\r
+              rawOptions[key] === undefined\r
+                  ? defaultParserOptions[key]\r
+                  : rawOptions[key];\r
+      }\r
+      return {\r
+          options,\r
+          column: 1,\r
+          line: 1,\r
+          offset: 0,\r
+          originalSource: content,\r
+          source: content,\r
+          inPre: false,\r
+          inVPre: false,\r
+          onWarn: options.onWarn\r
+      };\r
+  }\r
+  function parseChildren(context, mode, ancestors) {\r
+      const parent = last(ancestors);\r
+      const ns = parent ? parent.ns : 0 /* HTML */;\r
+      const nodes = [];\r
+      while (!isEnd(context, mode, ancestors)) {\r
+          const s = context.source;\r
+          let node = undefined;\r
+          if (mode === 0 /* DATA */ || mode === 1 /* RCDATA */) {\r
+              if (!context.inVPre && startsWith(s, context.options.delimiters[0])) {\r
+                  // '{{'\r
+                  node = parseInterpolation(context, mode);\r
+              }\r
+              else if (mode === 0 /* DATA */ && s[0] === '<') {\r
+                  // https://html.spec.whatwg.org/multipage/parsing.html#tag-open-state\r
+                  if (s.length === 1) {\r
+                      emitError(context, 5 /* EOF_BEFORE_TAG_NAME */, 1);\r
+                  }\r
+                  else if (s[1] === '!') {\r
+                      // https://html.spec.whatwg.org/multipage/parsing.html#markup-declaration-open-state\r
+                      if (startsWith(s, '<!--')) {\r
+                          node = parseComment(context);\r
+                      }\r
+                      else if (startsWith(s, '<!DOCTYPE')) {\r
+                          // Ignore DOCTYPE by a limitation.\r
+                          node = parseBogusComment(context);\r
+                      }\r
+                      else if (startsWith(s, '<![CDATA[')) {\r
+                          if (ns !== 0 /* HTML */) {\r
+                              node = parseCDATA(context, ancestors);\r
+                          }\r
+                          else {\r
+                              emitError(context, 1 /* CDATA_IN_HTML_CONTENT */);\r
+                              node = parseBogusComment(context);\r
+                          }\r
+                      }\r
+                      else {\r
+                          emitError(context, 11 /* INCORRECTLY_OPENED_COMMENT */);\r
+                          node = parseBogusComment(context);\r
+                      }\r
+                  }\r
+                  else if (s[1] === '/') {\r
+                      // https://html.spec.whatwg.org/multipage/parsing.html#end-tag-open-state\r
+                      if (s.length === 2) {\r
+                          emitError(context, 5 /* EOF_BEFORE_TAG_NAME */, 2);\r
+                      }\r
+                      else if (s[2] === '>') {\r
+                          emitError(context, 14 /* MISSING_END_TAG_NAME */, 2);\r
+                          advanceBy(context, 3);\r
+                          continue;\r
+                      }\r
+                      else if (/[a-z]/i.test(s[2])) {\r
+                          emitError(context, 23 /* X_INVALID_END_TAG */);\r
+                          parseTag(context, 1 /* End */, parent);\r
+                          continue;\r
+                      }\r
+                      else {\r
+                          emitError(context, 12 /* INVALID_FIRST_CHARACTER_OF_TAG_NAME */, 2);\r
+                          node = parseBogusComment(context);\r
+                      }\r
+                  }\r
+                  else if (/[a-z]/i.test(s[1])) {\r
+                      node = parseElement(context, ancestors);\r
+                  }\r
+                  else if (s[1] === '?') {\r
+                      emitError(context, 21 /* UNEXPECTED_QUESTION_MARK_INSTEAD_OF_TAG_NAME */, 1);\r
+                      node = parseBogusComment(context);\r
+                  }\r
+                  else {\r
+                      emitError(context, 12 /* INVALID_FIRST_CHARACTER_OF_TAG_NAME */, 1);\r
+                  }\r
+              }\r
+          }\r
+          if (!node) {\r
+              node = parseText(context, mode);\r
+          }\r
+          if (isArray(node)) {\r
+              for (let i = 0; i < node.length; i++) {\r
+                  pushNode(nodes, node[i]);\r
+              }\r
+          }\r
+          else {\r
+              pushNode(nodes, node);\r
+          }\r
+      }\r
+      // Whitespace handling strategy like v2\r
+      let removedWhitespace = false;\r
+      if (mode !== 2 /* RAWTEXT */ && mode !== 1 /* RCDATA */) {\r
+          const shouldCondense = context.options.whitespace !== 'preserve';\r
+          for (let i = 0; i < nodes.length; i++) {\r
+              const node = nodes[i];\r
+              if (!context.inPre && node.type === 2 /* TEXT */) {\r
+                  if (!/[^\t\r\n\f ]/.test(node.content)) {\r
+                      const prev = nodes[i - 1];\r
+                      const next = nodes[i + 1];\r
+                      // Remove if:\r
+                      // - the whitespace is the first or last node, or:\r
+                      // - (condense mode) the whitespace is adjacent to a comment, or:\r
+                      // - (condense mode) the whitespace is between two elements AND contains newline\r
+                      if (!prev ||\r
+                          !next ||\r
+                          (shouldCondense &&\r
+                              (prev.type === 3 /* COMMENT */ ||\r
+                                  next.type === 3 /* COMMENT */ ||\r
+                                  (prev.type === 1 /* ELEMENT */ &&\r
+                                      next.type === 1 /* ELEMENT */ &&\r
+                                      /[\r\n]/.test(node.content))))) {\r
+                          removedWhitespace = true;\r
+                          nodes[i] = null;\r
+                      }\r
+                      else {\r
+                          // Otherwise, the whitespace is condensed into a single space\r
+                          node.content = ' ';\r
+                      }\r
+                  }\r
+                  else if (shouldCondense) {\r
+                      // in condense mode, consecutive whitespaces in text are condensed\r
+                      // down to a single space.\r
+                      node.content = node.content.replace(/[\t\r\n\f ]+/g, ' ');\r
+                  }\r
+              }\r
+              // Remove comment nodes if desired by configuration.\r
+              else if (node.type === 3 /* COMMENT */ && !context.options.comments) {\r
+                  removedWhitespace = true;\r
+                  nodes[i] = null;\r
+              }\r
+          }\r
+          if (context.inPre && parent && context.options.isPreTag(parent.tag)) {\r
+              // remove leading newline per html spec\r
+              // https://html.spec.whatwg.org/multipage/grouping-content.html#the-pre-element\r
+              const first = nodes[0];\r
+              if (first && first.type === 2 /* TEXT */) {\r
+                  first.content = first.content.replace(/^\r?\n/, '');\r
+              }\r
+          }\r
+      }\r
+      return removedWhitespace ? nodes.filter(Boolean) : nodes;\r
+  }\r
+  function pushNode(nodes, node) {\r
+      if (node.type === 2 /* TEXT */) {\r
+          const prev = last(nodes);\r
+          // Merge if both this and the previous node are text and those are\r
+          // consecutive. This happens for cases like "a < b".\r
+          if (prev &&\r
+              prev.type === 2 /* TEXT */ &&\r
+              prev.loc.end.offset === node.loc.start.offset) {\r
+              prev.content += node.content;\r
+              prev.loc.end = node.loc.end;\r
+              prev.loc.source += node.loc.source;\r
+              return;\r
+          }\r
+      }\r
+      nodes.push(node);\r
+  }\r
+  function parseCDATA(context, ancestors) {\r
+      advanceBy(context, 9);\r
+      const nodes = parseChildren(context, 3 /* CDATA */, ancestors);\r
+      if (context.source.length === 0) {\r
+          emitError(context, 6 /* EOF_IN_CDATA */);\r
+      }\r
+      else {\r
+          advanceBy(context, 3);\r
+      }\r
+      return nodes;\r
+  }\r
+  function parseComment(context) {\r
+      const start = getCursor(context);\r
+      let content;\r
+      // Regular comment.\r
+      const match = /--(\!)?>/.exec(context.source);\r
+      if (!match) {\r
+          content = context.source.slice(4);\r
+          advanceBy(context, context.source.length);\r
+          emitError(context, 7 /* EOF_IN_COMMENT */);\r
+      }\r
+      else {\r
+          if (match.index <= 3) {\r
+              emitError(context, 0 /* ABRUPT_CLOSING_OF_EMPTY_COMMENT */);\r
+          }\r
+          if (match[1]) {\r
+              emitError(context, 10 /* INCORRECTLY_CLOSED_COMMENT */);\r
+          }\r
+          content = context.source.slice(4, match.index);\r
+          // Advancing with reporting nested comments.\r
+          const s = context.source.slice(0, match.index);\r
+          let prevIndex = 1, nestedIndex = 0;\r
+          while ((nestedIndex = s.indexOf('<!--', prevIndex)) !== -1) {\r
+              advanceBy(context, nestedIndex - prevIndex + 1);\r
+              if (nestedIndex + 4 < s.length) {\r
+                  emitError(context, 16 /* NESTED_COMMENT */);\r
+              }\r
+              prevIndex = nestedIndex + 1;\r
+          }\r
+          advanceBy(context, match.index + match[0].length - prevIndex + 1);\r
+      }\r
+      return {\r
+          type: 3 /* COMMENT */,\r
+          content,\r
+          loc: getSelection(context, start)\r
+      };\r
+  }\r
+  function parseBogusComment(context) {\r
+      const start = getCursor(context);\r
+      const contentStart = context.source[1] === '?' ? 1 : 2;\r
+      let content;\r
+      const closeIndex = context.source.indexOf('>');\r
+      if (closeIndex === -1) {\r
+          content = context.source.slice(contentStart);\r
+          advanceBy(context, context.source.length);\r
+      }\r
+      else {\r
+          content = context.source.slice(contentStart, closeIndex);\r
+          advanceBy(context, closeIndex + 1);\r
+      }\r
+      return {\r
+          type: 3 /* COMMENT */,\r
+          content,\r
+          loc: getSelection(context, start)\r
+      };\r
+  }\r
+  function parseElement(context, ancestors) {\r
+      // Start tag.\r
+      const wasInPre = context.inPre;\r
+      const wasInVPre = context.inVPre;\r
+      const parent = last(ancestors);\r
+      const element = parseTag(context, 0 /* Start */, parent);\r
+      const isPreBoundary = context.inPre && !wasInPre;\r
+      const isVPreBoundary = context.inVPre && !wasInVPre;\r
+      if (element.isSelfClosing || context.options.isVoidTag(element.tag)) {\r
+          // #4030 self-closing <pre> tag\r
+          if (isPreBoundary) {\r
+              context.inPre = false;\r
+          }\r
+          if (isVPreBoundary) {\r
+              context.inVPre = false;\r
+          }\r
+          return element;\r
+      }\r
+      // Children.\r
+      ancestors.push(element);\r
+      const mode = context.options.getTextMode(element, parent);\r
+      const children = parseChildren(context, mode, ancestors);\r
+      ancestors.pop();\r
+      element.children = children;\r
+      // End tag.\r
+      if (startsWithEndTagOpen(context.source, element.tag)) {\r
+          parseTag(context, 1 /* End */, parent);\r
+      }\r
+      else {\r
+          emitError(context, 24 /* X_MISSING_END_TAG */, 0, element.loc.start);\r
+          if (context.source.length === 0 && element.tag.toLowerCase() === 'script') {\r
+              const first = children[0];\r
+              if (first && startsWith(first.loc.source, '<!--')) {\r
+                  emitError(context, 8 /* EOF_IN_SCRIPT_HTML_COMMENT_LIKE_TEXT */);\r
+              }\r
+          }\r
+      }\r
+      element.loc = getSelection(context, element.loc.start);\r
+      if (isPreBoundary) {\r
+          context.inPre = false;\r
+      }\r
+      if (isVPreBoundary) {\r
+          context.inVPre = false;\r
+      }\r
+      return element;\r
+  }\r
+  const isSpecialTemplateDirective = /*#__PURE__*/ makeMap(`if,else,else-if,for,slot`);\r
+  function parseTag(context, type, parent) {\r
+      // Tag open.\r
+      const start = getCursor(context);\r
+      const match = /^<\/?([a-z][^\t\r\n\f />]*)/i.exec(context.source);\r
+      const tag = match[1];\r
+      const ns = context.options.getNamespace(tag, parent);\r
+      advanceBy(context, match[0].length);\r
+      advanceSpaces(context);\r
+      // save current state in case we need to re-parse attributes with v-pre\r
+      const cursor = getCursor(context);\r
+      const currentSource = context.source;\r
+      // check <pre> tag\r
+      if (context.options.isPreTag(tag)) {\r
+          context.inPre = true;\r
+      }\r
+      // Attributes.\r
+      let props = parseAttributes(context, type);\r
+      // check v-pre\r
+      if (type === 0 /* Start */ &&\r
+          !context.inVPre &&\r
+          props.some(p => p.type === 7 /* DIRECTIVE */ && p.name === 'pre')) {\r
+          context.inVPre = true;\r
+          // reset context\r
+          extend(context, cursor);\r
+          context.source = currentSource;\r
+          // re-parse attrs and filter out v-pre itself\r
+          props = parseAttributes(context, type).filter(p => p.name !== 'v-pre');\r
+      }\r
+      // Tag close.\r
+      let isSelfClosing = false;\r
+      if (context.source.length === 0) {\r
+          emitError(context, 9 /* EOF_IN_TAG */);\r
+      }\r
+      else {\r
+          isSelfClosing = startsWith(context.source, '/>');\r
+          if (type === 1 /* End */ && isSelfClosing) {\r
+              emitError(context, 4 /* END_TAG_WITH_TRAILING_SOLIDUS */);\r
+          }\r
+          advanceBy(context, isSelfClosing ? 2 : 1);\r
+      }\r
+      if (type === 1 /* End */) {\r
+          return;\r
+      }\r
+      let tagType = 0 /* ELEMENT */;\r
+      if (!context.inVPre) {\r
+          if (tag === 'slot') {\r
+              tagType = 2 /* SLOT */;\r
+          }\r
+          else if (tag === 'template') {\r
+              if (props.some(p => p.type === 7 /* DIRECTIVE */ && isSpecialTemplateDirective(p.name))) {\r
+                  tagType = 3 /* TEMPLATE */;\r
+              }\r
+          }\r
+          else if (isComponent(tag, props, context)) {\r
+              tagType = 1 /* COMPONENT */;\r
+          }\r
+      }\r
+      return {\r
+          type: 1 /* ELEMENT */,\r
+          ns,\r
+          tag,\r
+          tagType,\r
+          props,\r
+          isSelfClosing,\r
+          children: [],\r
+          loc: getSelection(context, start),\r
+          codegenNode: undefined // to be created during transform phase\r
+      };\r
+  }\r
+  function isComponent(tag, props, context) {\r
+      const options = context.options;\r
+      if (options.isCustomElement(tag)) {\r
+          return false;\r
+      }\r
+      if (tag === 'component' ||\r
+          /^[A-Z]/.test(tag) ||\r
+          isCoreComponent(tag) ||\r
+          (options.isBuiltInComponent && options.isBuiltInComponent(tag)) ||\r
+          (options.isNativeTag && !options.isNativeTag(tag))) {\r
+          return true;\r
+      }\r
+      // at this point the tag should be a native tag, but check for potential "is"\r
+      // casting\r
+      for (let i = 0; i < props.length; i++) {\r
+          const p = props[i];\r
+          if (p.type === 6 /* ATTRIBUTE */) {\r
+              if (p.name === 'is' && p.value) {\r
+                  if (p.value.content.startsWith('vue:')) {\r
+                      return true;\r
+                  }\r
+              }\r
+          }\r
+          else {\r
+              // directive\r
+              // v-is (TODO Deprecate)\r
+              if (p.name === 'is') {\r
+                  return true;\r
+              }\r
+              else if (\r
+              // :is on plain element - only treat as component in compat mode\r
+              p.name === 'bind' &&\r
+                  isBindKey(p.arg, 'is') &&\r
+                  false &&\r
+                  checkCompatEnabled("COMPILER_IS_ON_ELEMENT" /* COMPILER_IS_ON_ELEMENT */, context, p.loc)) {\r
+                  return true;\r
+              }\r
+          }\r
+      }\r
+  }\r
+  function parseAttributes(context, type) {\r
+      const props = [];\r
+      const attributeNames = new Set();\r
+      while (context.source.length > 0 &&\r
+          !startsWith(context.source, '>') &&\r
+          !startsWith(context.source, '/>')) {\r
+          if (startsWith(context.source, '/')) {\r
+              emitError(context, 22 /* UNEXPECTED_SOLIDUS_IN_TAG */);\r
+              advanceBy(context, 1);\r
+              advanceSpaces(context);\r
+              continue;\r
+          }\r
+          if (type === 1 /* End */) {\r
+              emitError(context, 3 /* END_TAG_WITH_ATTRIBUTES */);\r
+          }\r
+          const attr = parseAttribute(context, attributeNames);\r
+          // Trim whitespace between class\r
+          // https://github.com/vuejs/vue-next/issues/4251\r
+          if (attr.type === 6 /* ATTRIBUTE */ &&\r
+              attr.value &&\r
+              attr.name === 'class') {\r
+              attr.value.content = attr.value.content.replace(/\s+/g, ' ').trim();\r
+          }\r
+          if (type === 0 /* Start */) {\r
+              props.push(attr);\r
+          }\r
+          if (/^[^\t\r\n\f />]/.test(context.source)) {\r
+              emitError(context, 15 /* MISSING_WHITESPACE_BETWEEN_ATTRIBUTES */);\r
+          }\r
+          advanceSpaces(context);\r
+      }\r
+      return props;\r
+  }\r
+  function parseAttribute(context, nameSet) {\r
+      // Name.\r
+      const start = getCursor(context);\r
+      const match = /^[^\t\r\n\f />][^\t\r\n\f />=]*/.exec(context.source);\r
+      const name = match[0];\r
+      if (nameSet.has(name)) {\r
+          emitError(context, 2 /* DUPLICATE_ATTRIBUTE */);\r
+      }\r
+      nameSet.add(name);\r
+      if (name[0] === '=') {\r
+          emitError(context, 19 /* UNEXPECTED_EQUALS_SIGN_BEFORE_ATTRIBUTE_NAME */);\r
+      }\r
+      {\r
+          const pattern = /["'<]/g;\r
+          let m;\r
+          while ((m = pattern.exec(name))) {\r
+              emitError(context, 17 /* UNEXPECTED_CHARACTER_IN_ATTRIBUTE_NAME */, m.index);\r
+          }\r
+      }\r
+      advanceBy(context, name.length);\r
+      // Value\r
+      let value = undefined;\r
+      if (/^[\t\r\n\f ]*=/.test(context.source)) {\r
+          advanceSpaces(context);\r
+          advanceBy(context, 1);\r
+          advanceSpaces(context);\r
+          value = parseAttributeValue(context);\r
+          if (!value) {\r
+              emitError(context, 13 /* MISSING_ATTRIBUTE_VALUE */);\r
+          }\r
+      }\r
+      const loc = getSelection(context, start);\r
+      if (!context.inVPre && /^(v-[A-Za-z0-9-]|:|\.|@|#)/.test(name)) {\r
+          const match = /(?:^v-([a-z0-9-]+))?(?:(?::|^\.|^@|^#)(\[[^\]]+\]|[^\.]+))?(.+)?$/i.exec(name);\r
+          let isPropShorthand = startsWith(name, '.');\r
+          let dirName = match[1] ||\r
+              (isPropShorthand || startsWith(name, ':')\r
+                  ? 'bind'\r
+                  : startsWith(name, '@')\r
+                      ? 'on'\r
+                      : 'slot');\r
+          let arg;\r
+          if (match[2]) {\r
+              const isSlot = dirName === 'slot';\r
+              const startOffset = name.lastIndexOf(match[2]);\r
+              const loc = getSelection(context, getNewPosition(context, start, startOffset), getNewPosition(context, start, startOffset + match[2].length + ((isSlot && match[3]) || '').length));\r
+              let content = match[2];\r
+              let isStatic = true;\r
+              if (content.startsWith('[')) {\r
+                  isStatic = false;\r
+                  if (!content.endsWith(']')) {\r
+                      emitError(context, 27 /* X_MISSING_DYNAMIC_DIRECTIVE_ARGUMENT_END */);\r
+                      content = content.substr(1);\r
+                  }\r
+                  else {\r
+                      content = content.substr(1, content.length - 2);\r
+                  }\r
+              }\r
+              else if (isSlot) {\r
+                  // #1241 special case for v-slot: vuetify relies extensively on slot\r
+                  // names containing dots. v-slot doesn't have any modifiers and Vue 2.x\r
+                  // supports such usage so we are keeping it consistent with 2.x.\r
+                  content += match[3] || '';\r
+              }\r
+              arg = {\r
+                  type: 4 /* SIMPLE_EXPRESSION */,\r
+                  content,\r
+                  isStatic,\r
+                  constType: isStatic\r
+                      ? 3 /* CAN_STRINGIFY */\r
+                      : 0 /* NOT_CONSTANT */,\r
+                  loc\r
+              };\r
+          }\r
+          if (value && value.isQuoted) {\r
+              const valueLoc = value.loc;\r
+              valueLoc.start.offset++;\r
+              valueLoc.start.column++;\r
+              valueLoc.end = advancePositionWithClone(valueLoc.start, value.content);\r
+              valueLoc.source = valueLoc.source.slice(1, -1);\r
+          }\r
+          const modifiers = match[3] ? match[3].substr(1).split('.') : [];\r
+          if (isPropShorthand)\r
+              modifiers.push('prop');\r
+          return {\r
+              type: 7 /* DIRECTIVE */,\r
+              name: dirName,\r
+              exp: value && {\r
+                  type: 4 /* SIMPLE_EXPRESSION */,\r
+                  content: value.content,\r
+                  isStatic: false,\r
+                  // Treat as non-constant by default. This can be potentially set to\r
+                  // other values by `transformExpression` to make it eligible for hoisting.\r
+                  constType: 0 /* NOT_CONSTANT */,\r
+                  loc: value.loc\r
+              },\r
+              arg,\r
+              modifiers,\r
+              loc\r
+          };\r
+      }\r
+      // missing directive name or illegal directive name\r
+      if (!context.inVPre && startsWith(name, 'v-')) {\r
+          emitError(context, 26 /* X_MISSING_DIRECTIVE_NAME */);\r
+      }\r
+      return {\r
+          type: 6 /* ATTRIBUTE */,\r
+          name,\r
+          value: value && {\r
+              type: 2 /* TEXT */,\r
+              content: value.content,\r
+              loc: value.loc\r
+          },\r
+          loc\r
+      };\r
+  }\r
+  function parseAttributeValue(context) {\r
+      const start = getCursor(context);\r
+      let content;\r
+      const quote = context.source[0];\r
+      const isQuoted = quote === `"` || quote === `'`;\r
+      if (isQuoted) {\r
+          // Quoted value.\r
+          advanceBy(context, 1);\r
+          const endIndex = context.source.indexOf(quote);\r
+          if (endIndex === -1) {\r
+              content = parseTextData(context, context.source.length, 4 /* ATTRIBUTE_VALUE */);\r
+          }\r
+          else {\r
+              content = parseTextData(context, endIndex, 4 /* ATTRIBUTE_VALUE */);\r
+              advanceBy(context, 1);\r
+          }\r
+      }\r
+      else {\r
+          // Unquoted\r
+          const match = /^[^\t\r\n\f >]+/.exec(context.source);\r
+          if (!match) {\r
+              return undefined;\r
+          }\r
+          const unexpectedChars = /["'<=`]/g;\r
+          let m;\r
+          while ((m = unexpectedChars.exec(match[0]))) {\r
+              emitError(context, 18 /* UNEXPECTED_CHARACTER_IN_UNQUOTED_ATTRIBUTE_VALUE */, m.index);\r
+          }\r
+          content = parseTextData(context, match[0].length, 4 /* ATTRIBUTE_VALUE */);\r
+      }\r
+      return { content, isQuoted, loc: getSelection(context, start) };\r
+  }\r
+  function parseInterpolation(context, mode) {\r
+      const [open, close] = context.options.delimiters;\r
+      const closeIndex = context.source.indexOf(close, open.length);\r
+      if (closeIndex === -1) {\r
+          emitError(context, 25 /* X_MISSING_INTERPOLATION_END */);\r
+          return undefined;\r
+      }\r
+      const start = getCursor(context);\r
+      advanceBy(context, open.length);\r
+      const innerStart = getCursor(context);\r
+      const innerEnd = getCursor(context);\r
+      const rawContentLength = closeIndex - open.length;\r
+      const rawContent = context.source.slice(0, rawContentLength);\r
+      const preTrimContent = parseTextData(context, rawContentLength, mode);\r
+      const content = preTrimContent.trim();\r
+      const startOffset = preTrimContent.indexOf(content);\r
+      if (startOffset > 0) {\r
+          advancePositionWithMutation(innerStart, rawContent, startOffset);\r
+      }\r
+      const endOffset = rawContentLength - (preTrimContent.length - content.length - startOffset);\r
+      advancePositionWithMutation(innerEnd, rawContent, endOffset);\r
+      advanceBy(context, close.length);\r
+      return {\r
+          type: 5 /* INTERPOLATION */,\r
+          content: {\r
+              type: 4 /* SIMPLE_EXPRESSION */,\r
+              isStatic: false,\r
+              // Set `isConstant` to false by default and will decide in transformExpression\r
+              constType: 0 /* NOT_CONSTANT */,\r
+              content,\r
+              loc: getSelection(context, innerStart, innerEnd)\r
+          },\r
+          loc: getSelection(context, start)\r
+      };\r
+  }\r
+  function parseText(context, mode) {\r
+      const endTokens = mode === 3 /* CDATA */ ? [']]>'] : ['<', context.options.delimiters[0]];\r
+      let endIndex = context.source.length;\r
+      for (let i = 0; i < endTokens.length; i++) {\r
+          const index = context.source.indexOf(endTokens[i], 1);\r
+          if (index !== -1 && endIndex > index) {\r
+              endIndex = index;\r
+          }\r
+      }\r
+      const start = getCursor(context);\r
+      const content = parseTextData(context, endIndex, mode);\r
+      return {\r
+          type: 2 /* TEXT */,\r
+          content,\r
+          loc: getSelection(context, start)\r
+      };\r
+  }\r
+  /**\r
+   * Get text data with a given length from the current location.\r
+   * This translates HTML entities in the text data.\r
+   */\r
+  function parseTextData(context, length, mode) {\r
+      const rawText = context.source.slice(0, length);\r
+      advanceBy(context, length);\r
+      if (mode === 2 /* RAWTEXT */ ||\r
+          mode === 3 /* CDATA */ ||\r
+          rawText.indexOf('&') === -1) {\r
+          return rawText;\r
+      }\r
+      else {\r
+          // DATA or RCDATA containing "&"". Entity decoding required.\r
+          return context.options.decodeEntities(rawText, mode === 4 /* ATTRIBUTE_VALUE */);\r
+      }\r
+  }\r
+  function getCursor(context) {\r
+      const { column, line, offset } = context;\r
+      return { column, line, offset };\r
+  }\r
+  function getSelection(context, start, end) {\r
+      end = end || getCursor(context);\r
+      return {\r
+          start,\r
+          end,\r
+          source: context.originalSource.slice(start.offset, end.offset)\r
+      };\r
+  }\r
+  function last(xs) {\r
+      return xs[xs.length - 1];\r
+  }\r
+  function startsWith(source, searchString) {\r
+      return source.startsWith(searchString);\r
+  }\r
+  function advanceBy(context, numberOfCharacters) {\r
+      const { source } = context;\r
+      advancePositionWithMutation(context, source, numberOfCharacters);\r
+      context.source = source.slice(numberOfCharacters);\r
+  }\r
+  function advanceSpaces(context) {\r
+      const match = /^[\t\r\n\f ]+/.exec(context.source);\r
+      if (match) {\r
+          advanceBy(context, match[0].length);\r
+      }\r
+  }\r
+  function getNewPosition(context, start, numberOfCharacters) {\r
+      return advancePositionWithClone(start, context.originalSource.slice(start.offset, numberOfCharacters), numberOfCharacters);\r
+  }\r
+  function emitError(context, code, offset, loc = getCursor(context)) {\r
+      if (offset) {\r
+          loc.offset += offset;\r
+          loc.column += offset;\r
+      }\r
+      context.options.onError(createCompilerError(code, {\r
+          start: loc,\r
+          end: loc,\r
+          source: ''\r
+      }));\r
+  }\r
+  function isEnd(context, mode, ancestors) {\r
+      const s = context.source;\r
+      switch (mode) {\r
+          case 0 /* DATA */:\r
+              if (startsWith(s, '</')) {\r
+                  // TODO: probably bad performance\r
+                  for (let i = ancestors.length - 1; i >= 0; --i) {\r
+                      if (startsWithEndTagOpen(s, ancestors[i].tag)) {\r
+                          return true;\r
+                      }\r
+                  }\r
+              }\r
+              break;\r
+          case 1 /* RCDATA */:\r
+          case 2 /* RAWTEXT */: {\r
+              const parent = last(ancestors);\r
+              if (parent && startsWithEndTagOpen(s, parent.tag)) {\r
+                  return true;\r
+              }\r
+              break;\r
+          }\r
+          case 3 /* CDATA */:\r
+              if (startsWith(s, ']]>')) {\r
+                  return true;\r
+              }\r
+              break;\r
+      }\r
+      return !s;\r
+  }\r
+  function startsWithEndTagOpen(source, tag) {\r
+      return (startsWith(source, '</') &&\r
+          source.substr(2, tag.length).toLowerCase() === tag.toLowerCase() &&\r
+          /[\t\r\n\f />]/.test(source[2 + tag.length] || '>'));\r
+  }
+
+  function hoistStatic(root, context) {\r
+      walk(root, context, \r
+      // Root node is unfortunately non-hoistable due to potential parent\r
+      // fallthrough attributes.\r
+      isSingleElementRoot(root, root.children[0]));\r
+  }\r
+  function isSingleElementRoot(root, child) {\r
+      const { children } = root;\r
+      return (children.length === 1 &&\r
+          child.type === 1 /* ELEMENT */ &&\r
+          !isSlotOutlet(child));\r
+  }\r
+  function walk(node, context, doNotHoistNode = false) {\r
+      // Some transforms, e.g. transformAssetUrls from @vue/compiler-sfc, replaces\r
+      // static bindings with expressions. These expressions are guaranteed to be\r
+      // constant so they are still eligible for hoisting, but they are only\r
+      // available at runtime and therefore cannot be evaluated ahead of time.\r
+      // This is only a concern for pre-stringification (via transformHoist by\r
+      // @vue/compiler-dom), but doing it here allows us to perform only one full\r
+      // walk of the AST and allow `stringifyStatic` to stop walking as soon as its\r
+      // stringficiation threshold is met.\r
+      let canStringify = true;\r
+      const { children } = node;\r
+      const originalCount = children.length;\r
+      let hoistedCount = 0;\r
+      for (let i = 0; i < children.length; i++) {\r
+          const child = children[i];\r
+          // only plain elements & text calls are eligible for hoisting.\r
+          if (child.type === 1 /* ELEMENT */ &&\r
+              child.tagType === 0 /* ELEMENT */) {\r
+              const constantType = doNotHoistNode\r
+                  ? 0 /* NOT_CONSTANT */\r
+                  : getConstantType(child, context);\r
+              if (constantType > 0 /* NOT_CONSTANT */) {\r
+                  if (constantType < 3 /* CAN_STRINGIFY */) {\r
+                      canStringify = false;\r
+                  }\r
+                  if (constantType >= 2 /* CAN_HOIST */) {\r
+                      child.codegenNode.patchFlag =\r
+                          -1 /* HOISTED */ + (` /* HOISTED */` );\r
+                      child.codegenNode = context.hoist(child.codegenNode);\r
+                      hoistedCount++;\r
+                      continue;\r
+                  }\r
+              }\r
+              else {\r
+                  // node may contain dynamic children, but its props may be eligible for\r
+                  // hoisting.\r
+                  const codegenNode = child.codegenNode;\r
+                  if (codegenNode.type === 13 /* VNODE_CALL */) {\r
+                      const flag = getPatchFlag(codegenNode);\r
+                      if ((!flag ||\r
+                          flag === 512 /* NEED_PATCH */ ||\r
+                          flag === 1 /* TEXT */) &&\r
+                          getGeneratedPropsConstantType(child, context) >=\r
+                              2 /* CAN_HOIST */) {\r
+                          const props = getNodeProps(child);\r
+                          if (props) {\r
+                              codegenNode.props = context.hoist(props);\r
+                          }\r
+                      }\r
+                      if (codegenNode.dynamicProps) {\r
+                          codegenNode.dynamicProps = context.hoist(codegenNode.dynamicProps);\r
+                      }\r
+                  }\r
+              }\r
+          }\r
+          else if (child.type === 12 /* TEXT_CALL */) {\r
+              const contentType = getConstantType(child.content, context);\r
+              if (contentType > 0) {\r
+                  if (contentType < 3 /* CAN_STRINGIFY */) {\r
+                      canStringify = false;\r
+                  }\r
+                  if (contentType >= 2 /* CAN_HOIST */) {\r
+                      child.codegenNode = context.hoist(child.codegenNode);\r
+                      hoistedCount++;\r
+                  }\r
+              }\r
+          }\r
+          // walk further\r
+          if (child.type === 1 /* ELEMENT */) {\r
+              const isComponent = child.tagType === 1 /* COMPONENT */;\r
+              if (isComponent) {\r
+                  context.scopes.vSlot++;\r
+              }\r
+              walk(child, context);\r
+              if (isComponent) {\r
+                  context.scopes.vSlot--;\r
+              }\r
+          }\r
+          else if (child.type === 11 /* FOR */) {\r
+              // Do not hoist v-for single child because it has to be a block\r
+              walk(child, context, child.children.length === 1);\r
+          }\r
+          else if (child.type === 9 /* IF */) {\r
+              for (let i = 0; i < child.branches.length; i++) {\r
+                  // Do not hoist v-if single child because it has to be a block\r
+                  walk(child.branches[i], context, child.branches[i].children.length === 1);\r
+              }\r
+          }\r
+      }\r
+      if (canStringify && hoistedCount && context.transformHoist) {\r
+          context.transformHoist(children, context, node);\r
+      }\r
+      // all children were hoisted - the entire children array is hoistable.\r
+      if (hoistedCount &&\r
+          hoistedCount === originalCount &&\r
+          node.type === 1 /* ELEMENT */ &&\r
+          node.tagType === 0 /* ELEMENT */ &&\r
+          node.codegenNode &&\r
+          node.codegenNode.type === 13 /* VNODE_CALL */ &&\r
+          isArray(node.codegenNode.children)) {\r
+          node.codegenNode.children = context.hoist(createArrayExpression(node.codegenNode.children));\r
+      }\r
+  }\r
+  function getConstantType(node, context) {\r
+      const { constantCache } = context;\r
+      switch (node.type) {\r
+          case 1 /* ELEMENT */:\r
+              if (node.tagType !== 0 /* ELEMENT */) {\r
+                  return 0 /* NOT_CONSTANT */;\r
+              }\r
+              const cached = constantCache.get(node);\r
+              if (cached !== undefined) {\r
+                  return cached;\r
+              }\r
+              const codegenNode = node.codegenNode;\r
+              if (codegenNode.type !== 13 /* VNODE_CALL */) {\r
+                  return 0 /* NOT_CONSTANT */;\r
+              }\r
+              const flag = getPatchFlag(codegenNode);\r
+              if (!flag) {\r
+                  let returnType = 3 /* CAN_STRINGIFY */;\r
+                  // Element itself has no patch flag. However we still need to check:\r
+                  // 1. Even for a node with no patch flag, it is possible for it to contain\r
+                  // non-hoistable expressions that refers to scope variables, e.g. compiler\r
+                  // injected keys or cached event handlers. Therefore we need to always\r
+                  // check the codegenNode's props to be sure.\r
+                  const generatedPropsType = getGeneratedPropsConstantType(node, context);\r
+                  if (generatedPropsType === 0 /* NOT_CONSTANT */) {\r
+                      constantCache.set(node, 0 /* NOT_CONSTANT */);\r
+                      return 0 /* NOT_CONSTANT */;\r
+                  }\r
+                  if (generatedPropsType < returnType) {\r
+                      returnType = generatedPropsType;\r
+                  }\r
+                  // 2. its children.\r
+                  for (let i = 0; i < node.children.length; i++) {\r
+                      const childType = getConstantType(node.children[i], context);\r
+                      if (childType === 0 /* NOT_CONSTANT */) {\r
+                          constantCache.set(node, 0 /* NOT_CONSTANT */);\r
+                          return 0 /* NOT_CONSTANT */;\r
+                      }\r
+                      if (childType < returnType) {\r
+                          returnType = childType;\r
+                      }\r
+                  }\r
+                  // 3. if the type is not already CAN_SKIP_PATCH which is the lowest non-0\r
+                  // type, check if any of the props can cause the type to be lowered\r
+                  // we can skip can_patch because it's guaranteed by the absence of a\r
+                  // patchFlag.\r
+                  if (returnType > 1 /* CAN_SKIP_PATCH */) {\r
+                      for (let i = 0; i < node.props.length; i++) {\r
+                          const p = node.props[i];\r
+                          if (p.type === 7 /* DIRECTIVE */ && p.name === 'bind' && p.exp) {\r
+                              const expType = getConstantType(p.exp, context);\r
+                              if (expType === 0 /* NOT_CONSTANT */) {\r
+                                  constantCache.set(node, 0 /* NOT_CONSTANT */);\r
+                                  return 0 /* NOT_CONSTANT */;\r
+                              }\r
+                              if (expType < returnType) {\r
+                                  returnType = expType;\r
+                              }\r
+                          }\r
+                      }\r
+                  }\r
+                  // only svg/foreignObject could be block here, however if they are\r
+                  // static then they don't need to be blocks since there will be no\r
+                  // nested updates.\r
+                  if (codegenNode.isBlock) {\r
+                      context.removeHelper(OPEN_BLOCK);\r
+                      context.removeHelper(getVNodeBlockHelper(context.inSSR, codegenNode.isComponent));\r
+                      codegenNode.isBlock = false;\r
+                      context.helper(getVNodeHelper(context.inSSR, codegenNode.isComponent));\r
+                  }\r
+                  constantCache.set(node, returnType);\r
+                  return returnType;\r
+              }\r
+              else {\r
+                  constantCache.set(node, 0 /* NOT_CONSTANT */);\r
+                  return 0 /* NOT_CONSTANT */;\r
+              }\r
+          case 2 /* TEXT */:\r
+          case 3 /* COMMENT */:\r
+              return 3 /* CAN_STRINGIFY */;\r
+          case 9 /* IF */:\r
+          case 11 /* FOR */:\r
+          case 10 /* IF_BRANCH */:\r
+              return 0 /* NOT_CONSTANT */;\r
+          case 5 /* INTERPOLATION */:\r
+          case 12 /* TEXT_CALL */:\r
+              return getConstantType(node.content, context);\r
+          case 4 /* SIMPLE_EXPRESSION */:\r
+              return node.constType;\r
+          case 8 /* COMPOUND_EXPRESSION */:\r
+              let returnType = 3 /* CAN_STRINGIFY */;\r
+              for (let i = 0; i < node.children.length; i++) {\r
+                  const child = node.children[i];\r
+                  if (isString(child) || isSymbol(child)) {\r
+                      continue;\r
+                  }\r
+                  const childType = getConstantType(child, context);\r
+                  if (childType === 0 /* NOT_CONSTANT */) {\r
+                      return 0 /* NOT_CONSTANT */;\r
+                  }\r
+                  else if (childType < returnType) {\r
+                      returnType = childType;\r
+                  }\r
+              }\r
+              return returnType;\r
+          default:\r
+              return 0 /* NOT_CONSTANT */;\r
+      }\r
+  }\r
+  const allowHoistedHelperSet = new Set([\r
+      NORMALIZE_CLASS,\r
+      NORMALIZE_STYLE,\r
+      NORMALIZE_PROPS,\r
+      GUARD_REACTIVE_PROPS\r
+  ]);\r
+  function getConstantTypeOfHelperCall(value, context) {\r
+      if (value.type === 14 /* JS_CALL_EXPRESSION */ &&\r
+          !isString(value.callee) &&\r
+          allowHoistedHelperSet.has(value.callee)) {\r
+          const arg = value.arguments[0];\r
+          if (arg.type === 4 /* SIMPLE_EXPRESSION */) {\r
+              return getConstantType(arg, context);\r
+          }\r
+          else if (arg.type === 14 /* JS_CALL_EXPRESSION */) {\r
+              // in the case of nested helper call, e.g. `normalizeProps(guardReactiveProps(exp))`\r
+              return getConstantTypeOfHelperCall(arg, context);\r
+          }\r
+      }\r
+      return 0 /* NOT_CONSTANT */;\r
+  }\r
+  function getGeneratedPropsConstantType(node, context) {\r
+      let returnType = 3 /* CAN_STRINGIFY */;\r
+      const props = getNodeProps(node);\r
+      if (props && props.type === 15 /* JS_OBJECT_EXPRESSION */) {\r
+          const { properties } = props;\r
+          for (let i = 0; i < properties.length; i++) {\r
+              const { key, value } = properties[i];\r
+              const keyType = getConstantType(key, context);\r
+              if (keyType === 0 /* NOT_CONSTANT */) {\r
+                  return keyType;\r
+              }\r
+              if (keyType < returnType) {\r
+                  returnType = keyType;\r
+              }\r
+              let valueType;\r
+              if (value.type === 4 /* SIMPLE_EXPRESSION */) {\r
+                  valueType = getConstantType(value, context);\r
+              }\r
+              else if (value.type === 14 /* JS_CALL_EXPRESSION */) {\r
+                  // some helper calls can be hoisted,\r
+                  // such as the `normalizeProps` generated by the compiler for pre-normalize class,\r
+                  // in this case we need to respect the ConstanType of the helper's argments\r
+                  valueType = getConstantTypeOfHelperCall(value, context);\r
+              }\r
+              else {\r
+                  valueType = 0 /* NOT_CONSTANT */;\r
+              }\r
+              if (valueType === 0 /* NOT_CONSTANT */) {\r
+                  return valueType;\r
+              }\r
+              if (valueType < returnType) {\r
+                  returnType = valueType;\r
+              }\r
+          }\r
+      }\r
+      return returnType;\r
+  }\r
+  function getNodeProps(node) {\r
+      const codegenNode = node.codegenNode;\r
+      if (codegenNode.type === 13 /* VNODE_CALL */) {\r
+          return codegenNode.props;\r
+      }\r
+  }\r
+  function getPatchFlag(node) {\r
+      const flag = node.patchFlag;\r
+      return flag ? parseInt(flag, 10) : undefined;\r
+  }
+
+  function createTransformContext(root, { filename = '', prefixIdentifiers = false, hoistStatic = false, cacheHandlers = false, nodeTransforms = [], directiveTransforms = {}, transformHoist = null, isBuiltInComponent = NOOP, isCustomElement = NOOP, expressionPlugins = [], scopeId = null, slotted = true, ssr = false, inSSR = false, ssrCssVars = ``, bindingMetadata = EMPTY_OBJ, inline = false, isTS = false, onError = defaultOnError, onWarn = defaultOnWarn, compatConfig }) {\r
+      const nameMatch = filename.replace(/\?.*$/, '').match(/([^/\\]+)\.\w+$/);\r
+      const context = {\r
+          // options\r
+          selfName: nameMatch && capitalize(camelize(nameMatch[1])),\r
+          prefixIdentifiers,\r
+          hoistStatic,\r
+          cacheHandlers,\r
+          nodeTransforms,\r
+          directiveTransforms,\r
+          transformHoist,\r
+          isBuiltInComponent,\r
+          isCustomElement,\r
+          expressionPlugins,\r
+          scopeId,\r
+          slotted,\r
+          ssr,\r
+          inSSR,\r
+          ssrCssVars,\r
+          bindingMetadata,\r
+          inline,\r
+          isTS,\r
+          onError,\r
+          onWarn,\r
+          compatConfig,\r
+          // state\r
+          root,\r
+          helpers: new Map(),\r
+          components: new Set(),\r
+          directives: new Set(),\r
+          hoists: [],\r
+          imports: [],\r
+          constantCache: new Map(),\r
+          temps: 0,\r
+          cached: 0,\r
+          identifiers: Object.create(null),\r
+          scopes: {\r
+              vFor: 0,\r
+              vSlot: 0,\r
+              vPre: 0,\r
+              vOnce: 0\r
+          },\r
+          parent: null,\r
+          currentNode: root,\r
+          childIndex: 0,\r
+          inVOnce: false,\r
+          // methods\r
+          helper(name) {\r
+              const count = context.helpers.get(name) || 0;\r
+              context.helpers.set(name, count + 1);\r
+              return name;\r
+          },\r
+          removeHelper(name) {\r
+              const count = context.helpers.get(name);\r
+              if (count) {\r
+                  const currentCount = count - 1;\r
+                  if (!currentCount) {\r
+                      context.helpers.delete(name);\r
+                  }\r
+                  else {\r
+                      context.helpers.set(name, currentCount);\r
+                  }\r
+              }\r
+          },\r
+          helperString(name) {\r
+              return `_${helperNameMap[context.helper(name)]}`;\r
+          },\r
+          replaceNode(node) {\r
+              /* istanbul ignore if */\r
+              {\r
+                  if (!context.currentNode) {\r
+                      throw new Error(`Node being replaced is already removed.`);\r
+                  }\r
+                  if (!context.parent) {\r
+                      throw new Error(`Cannot replace root node.`);\r
+                  }\r
+              }\r
+              context.parent.children[context.childIndex] = context.currentNode = node;\r
+          },\r
+          removeNode(node) {\r
+              if (!context.parent) {\r
+                  throw new Error(`Cannot remove root node.`);\r
+              }\r
+              const list = context.parent.children;\r
+              const removalIndex = node\r
+                  ? list.indexOf(node)\r
+                  : context.currentNode\r
+                      ? context.childIndex\r
+                      : -1;\r
+              /* istanbul ignore if */\r
+              if (removalIndex < 0) {\r
+                  throw new Error(`node being removed is not a child of current parent`);\r
+              }\r
+              if (!node || node === context.currentNode) {\r
+                  // current node removed\r
+                  context.currentNode = null;\r
+                  context.onNodeRemoved();\r
+              }\r
+              else {\r
+                  // sibling node removed\r
+                  if (context.childIndex > removalIndex) {\r
+                      context.childIndex--;\r
+                      context.onNodeRemoved();\r
+                  }\r
+              }\r
+              context.parent.children.splice(removalIndex, 1);\r
+          },\r
+          onNodeRemoved: () => { },\r
+          addIdentifiers(exp) {\r
+          },\r
+          removeIdentifiers(exp) {\r
+          },\r
+          hoist(exp) {\r
+              if (isString(exp))\r
+                  exp = createSimpleExpression(exp);\r
+              context.hoists.push(exp);\r
+              const identifier = createSimpleExpression(`_hoisted_${context.hoists.length}`, false, exp.loc, 2 /* CAN_HOIST */);\r
+              identifier.hoisted = exp;\r
+              return identifier;\r
+          },\r
+          cache(exp, isVNode = false) {\r
+              return createCacheExpression(context.cached++, exp, isVNode);\r
+          }\r
+      };\r
+      return context;\r
+  }\r
+  function transform(root, options) {\r
+      const context = createTransformContext(root, options);\r
+      traverseNode(root, context);\r
+      if (options.hoistStatic) {\r
+          hoistStatic(root, context);\r
+      }\r
+      if (!options.ssr) {\r
+          createRootCodegen(root, context);\r
+      }\r
+      // finalize meta information\r
+      root.helpers = [...context.helpers.keys()];\r
+      root.components = [...context.components];\r
+      root.directives = [...context.directives];\r
+      root.imports = context.imports;\r
+      root.hoists = context.hoists;\r
+      root.temps = context.temps;\r
+      root.cached = context.cached;\r
+  }\r
+  function createRootCodegen(root, context) {\r
+      const { helper } = context;\r
+      const { children } = root;\r
+      if (children.length === 1) {\r
+          const child = children[0];\r
+          // if the single child is an element, turn it into a block.\r
+          if (isSingleElementRoot(root, child) && child.codegenNode) {\r
+              // single element root is never hoisted so codegenNode will never be\r
+              // SimpleExpressionNode\r
+              const codegenNode = child.codegenNode;\r
+              if (codegenNode.type === 13 /* VNODE_CALL */) {\r
+                  makeBlock(codegenNode, context);\r
+              }\r
+              root.codegenNode = codegenNode;\r
+          }\r
+          else {\r
+              // - single <slot/>, IfNode, ForNode: already blocks.\r
+              // - single text node: always patched.\r
+              // root codegen falls through via genNode()\r
+              root.codegenNode = child;\r
+          }\r
+      }\r
+      else if (children.length > 1) {\r
+          // root has multiple nodes - return a fragment block.\r
+          let patchFlag = 64 /* STABLE_FRAGMENT */;\r
+          let patchFlagText = PatchFlagNames[64 /* STABLE_FRAGMENT */];\r
+          // check if the fragment actually contains a single valid child with\r
+          // the rest being comments\r
+          if (children.filter(c => c.type !== 3 /* COMMENT */).length === 1) {\r
+              patchFlag |= 2048 /* DEV_ROOT_FRAGMENT */;\r
+              patchFlagText += `, ${PatchFlagNames[2048 /* DEV_ROOT_FRAGMENT */]}`;\r
+          }\r
+          root.codegenNode = createVNodeCall(context, helper(FRAGMENT), undefined, root.children, patchFlag + (` /* ${patchFlagText} */` ), undefined, undefined, true, undefined, false /* isComponent */);\r
+      }\r
+      else ;\r
+  }\r
+  function traverseChildren(parent, context) {\r
+      let i = 0;\r
+      const nodeRemoved = () => {\r
+          i--;\r
+      };\r
+      for (; i < parent.children.length; i++) {\r
+          const child = parent.children[i];\r
+          if (isString(child))\r
+              continue;\r
+          context.parent = parent;\r
+          context.childIndex = i;\r
+          context.onNodeRemoved = nodeRemoved;\r
+          traverseNode(child, context);\r
+      }\r
+  }\r
+  function traverseNode(node, context) {\r
+      context.currentNode = node;\r
+      // apply transform plugins\r
+      const { nodeTransforms } = context;\r
+      const exitFns = [];\r
+      for (let i = 0; i < nodeTransforms.length; i++) {\r
+          const onExit = nodeTransforms[i](node, context);\r
+          if (onExit) {\r
+              if (isArray(onExit)) {\r
+                  exitFns.push(...onExit);\r
+              }\r
+              else {\r
+                  exitFns.push(onExit);\r
+              }\r
+          }\r
+          if (!context.currentNode) {\r
+              // node was removed\r
+              return;\r
+          }\r
+          else {\r
+              // node may have been replaced\r
+              node = context.currentNode;\r
+          }\r
+      }\r
+      switch (node.type) {\r
+          case 3 /* COMMENT */:\r
+              if (!context.ssr) {\r
+                  // inject import for the Comment symbol, which is needed for creating\r
+                  // comment nodes with `createVNode`\r
+                  context.helper(CREATE_COMMENT);\r
+              }\r
+              break;\r
+          case 5 /* INTERPOLATION */:\r
+              // no need to traverse, but we need to inject toString helper\r
+              if (!context.ssr) {\r
+                  context.helper(TO_DISPLAY_STRING);\r
+              }\r
+              break;\r
+          // for container types, further traverse downwards\r
+          case 9 /* IF */:\r
+              for (let i = 0; i < node.branches.length; i++) {\r
+                  traverseNode(node.branches[i], context);\r
+              }\r
+              break;\r
+          case 10 /* IF_BRANCH */:\r
+          case 11 /* FOR */:\r
+          case 1 /* ELEMENT */:\r
+          case 0 /* ROOT */:\r
+              traverseChildren(node, context);\r
+              break;\r
+      }\r
+      // exit transforms\r
+      context.currentNode = node;\r
+      let i = exitFns.length;\r
+      while (i--) {\r
+          exitFns[i]();\r
+      }\r
+  }\r
+  function createStructuralDirectiveTransform(name, fn) {\r
+      const matches = isString(name)\r
+          ? (n) => n === name\r
+          : (n) => name.test(n);\r
+      return (node, context) => {\r
+          if (node.type === 1 /* ELEMENT */) {\r
+              const { props } = node;\r
+              // structural directive transforms are not concerned with slots\r
+              // as they are handled separately in vSlot.ts\r
+              if (node.tagType === 3 /* TEMPLATE */ && props.some(isVSlot)) {\r
+                  return;\r
+              }\r
+              const exitFns = [];\r
+              for (let i = 0; i < props.length; i++) {\r
+                  const prop = props[i];\r
+                  if (prop.type === 7 /* DIRECTIVE */ && matches(prop.name)) {\r
+                      // structural directives are removed to avoid infinite recursion\r
+                      // also we remove them *before* applying so that it can further\r
+                      // traverse itself in case it moves the node around\r
+                      props.splice(i, 1);\r
+                      i--;\r
+                      const onExit = fn(node, prop, context);\r
+                      if (onExit)\r
+                          exitFns.push(onExit);\r
+                  }\r
+              }\r
+              return exitFns;\r
+          }\r
+      };\r
+  }
+
+  const PURE_ANNOTATION = `/*#__PURE__*/`;\r
+  function createCodegenContext(ast, { mode = 'function', prefixIdentifiers = mode === 'module', sourceMap = false, filename = `template.vue.html`, scopeId = null, optimizeImports = false, runtimeGlobalName = `Vue`, runtimeModuleName = `vue`, ssr = false, isTS = false, inSSR = false }) {\r
+      const context = {\r
+          mode,\r
+          prefixIdentifiers,\r
+          sourceMap,\r
+          filename,\r
+          scopeId,\r
+          optimizeImports,\r
+          runtimeGlobalName,\r
+          runtimeModuleName,\r
+          ssr,\r
+          isTS,\r
+          inSSR,\r
+          source: ast.loc.source,\r
+          code: ``,\r
+          column: 1,\r
+          line: 1,\r
+          offset: 0,\r
+          indentLevel: 0,\r
+          pure: false,\r
+          map: undefined,\r
+          helper(key) {\r
+              return `_${helperNameMap[key]}`;\r
+          },\r
+          push(code, node) {\r
+              context.code += code;\r
+          },\r
+          indent() {\r
+              newline(++context.indentLevel);\r
+          },\r
+          deindent(withoutNewLine = false) {\r
+              if (withoutNewLine) {\r
+                  --context.indentLevel;\r
+              }\r
+              else {\r
+                  newline(--context.indentLevel);\r
+              }\r
+          },\r
+          newline() {\r
+              newline(context.indentLevel);\r
+          }\r
+      };\r
+      function newline(n) {\r
+          context.push('\n' + `  `.repeat(n));\r
+      }\r
+      return context;\r
+  }\r
+  function generate(ast, options = {}) {\r
+      const context = createCodegenContext(ast, options);\r
+      if (options.onContextCreated)\r
+          options.onContextCreated(context);\r
+      const { mode, push, prefixIdentifiers, indent, deindent, newline, scopeId, ssr } = context;\r
+      const hasHelpers = ast.helpers.length > 0;\r
+      const useWithBlock = !prefixIdentifiers && mode !== 'module';\r
+      // preambles\r
+      // in setup() inline mode, the preamble is generated in a sub context\r
+      // and returned separately.\r
+      const preambleContext = context;\r
+      {\r
+          genFunctionPreamble(ast, preambleContext);\r
+      }\r
+      // enter render function\r
+      const functionName = ssr ? `ssrRender` : `render`;\r
+      const args = ssr ? ['_ctx', '_push', '_parent', '_attrs'] : ['_ctx', '_cache'];\r
+      const signature = args.join(', ');\r
+      {\r
+          push(`function ${functionName}(${signature}) {`);\r
+      }\r
+      indent();\r
+      if (useWithBlock) {\r
+          push(`with (_ctx) {`);\r
+          indent();\r
+          // function mode const declarations should be inside with block\r
+          // also they should be renamed to avoid collision with user properties\r
+          if (hasHelpers) {\r
+              push(`const { ${ast.helpers\r
+                .map(s => `${helperNameMap[s]}: _${helperNameMap[s]}`)\r
+                .join(', ')} } = _Vue`);\r
+              push(`\n`);\r
+              newline();\r
+          }\r
+      }\r
+      // generate asset resolution statements\r
+      if (ast.components.length) {\r
+          genAssets(ast.components, 'component', context);\r
+          if (ast.directives.length || ast.temps > 0) {\r
+              newline();\r
+          }\r
+      }\r
+      if (ast.directives.length) {\r
+          genAssets(ast.directives, 'directive', context);\r
+          if (ast.temps > 0) {\r
+              newline();\r
+          }\r
+      }\r
+      if (ast.temps > 0) {\r
+          push(`let `);\r
+          for (let i = 0; i < ast.temps; i++) {\r
+              push(`${i > 0 ? `, ` : ``}_temp${i}`);\r
+          }\r
+      }\r
+      if (ast.components.length || ast.directives.length || ast.temps) {\r
+          push(`\n`);\r
+          newline();\r
+      }\r
+      // generate the VNode tree expression\r
+      if (!ssr) {\r
+          push(`return `);\r
+      }\r
+      if (ast.codegenNode) {\r
+          genNode(ast.codegenNode, context);\r
+      }\r
+      else {\r
+          push(`null`);\r
+      }\r
+      if (useWithBlock) {\r
+          deindent();\r
+          push(`}`);\r
+      }\r
+      deindent();\r
+      push(`}`);\r
+      return {\r
+          ast,\r
+          code: context.code,\r
+          preamble: ``,\r
+          // SourceMapGenerator does have toJSON() method but it's not in the types\r
+          map: context.map ? context.map.toJSON() : undefined\r
+      };\r
+  }\r
+  function genFunctionPreamble(ast, context) {\r
+      const { ssr, prefixIdentifiers, push, newline, runtimeModuleName, runtimeGlobalName } = context;\r
+      const VueBinding = runtimeGlobalName;\r
+      const aliasHelper = (s) => `${helperNameMap[s]}: _${helperNameMap[s]}`;\r
+      // Generate const declaration for helpers\r
+      // In prefix mode, we place the const declaration at top so it's done\r
+      // only once; But if we not prefixing, we place the declaration inside the\r
+      // with block so it doesn't incur the `in` check cost for every helper access.\r
+      if (ast.helpers.length > 0) {\r
+          {\r
+              // "with" mode.\r
+              // save Vue in a separate variable to avoid collision\r
+              push(`const _Vue = ${VueBinding}\n`);\r
+              // in "with" mode, helpers are declared inside the with block to avoid\r
+              // has check cost, but hoists are lifted out of the function - we need\r
+              // to provide the helper here.\r
+              if (ast.hoists.length) {\r
+                  const staticHelpers = [\r
+                      CREATE_VNODE,\r
+                      CREATE_ELEMENT_VNODE,\r
+                      CREATE_COMMENT,\r
+                      CREATE_TEXT,\r
+                      CREATE_STATIC\r
+                  ]\r
+                      .filter(helper => ast.helpers.includes(helper))\r
+                      .map(aliasHelper)\r
+                      .join(', ');\r
+                  push(`const { ${staticHelpers} } = _Vue\n`);\r
+              }\r
+          }\r
+      }\r
+      genHoists(ast.hoists, context);\r
+      newline();\r
+      push(`return `);\r
+  }\r
+  function genAssets(assets, type, { helper, push, newline, isTS }) {\r
+      const resolver = helper(type === 'component'\r
+              ? RESOLVE_COMPONENT\r
+              : RESOLVE_DIRECTIVE);\r
+      for (let i = 0; i < assets.length; i++) {\r
+          let id = assets[i];\r
+          // potential component implicit self-reference inferred from SFC filename\r
+          const maybeSelfReference = id.endsWith('__self');\r
+          if (maybeSelfReference) {\r
+              id = id.slice(0, -6);\r
+          }\r
+          push(`const ${toValidAssetId(id, type)} = ${resolver}(${JSON.stringify(id)}${maybeSelfReference ? `, true` : ``})${isTS ? `!` : ``}`);\r
+          if (i < assets.length - 1) {\r
+              newline();\r
+          }\r
+      }\r
+  }\r
+  function genHoists(hoists, context) {\r
+      if (!hoists.length) {\r
+          return;\r
+      }\r
+      context.pure = true;\r
+      const { push, newline, helper, scopeId, mode } = context;\r
+      newline();\r
+      hoists.forEach((exp, i) => {\r
+          if (exp) {\r
+              push(`const _hoisted_${i + 1} = `);\r
+              genNode(exp, context);\r
+              newline();\r
+          }\r
+      });\r
+      context.pure = false;\r
+  }\r
+  function isText$1(n) {\r
+      return (isString(n) ||\r
+          n.type === 4 /* SIMPLE_EXPRESSION */ ||\r
+          n.type === 2 /* TEXT */ ||\r
+          n.type === 5 /* INTERPOLATION */ ||\r
+          n.type === 8 /* COMPOUND_EXPRESSION */);\r
+  }\r
+  function genNodeListAsArray(nodes, context) {\r
+      const multilines = nodes.length > 3 ||\r
+          (nodes.some(n => isArray(n) || !isText$1(n)));\r
+      context.push(`[`);\r
+      multilines && context.indent();\r
+      genNodeList(nodes, context, multilines);\r
+      multilines && context.deindent();\r
+      context.push(`]`);\r
+  }\r
+  function genNodeList(nodes, context, multilines = false, comma = true) {\r
+      const { push, newline } = context;\r
+      for (let i = 0; i < nodes.length; i++) {\r
+          const node = nodes[i];\r
+          if (isString(node)) {\r
+              push(node);\r
+          }\r
+          else if (isArray(node)) {\r
+              genNodeListAsArray(node, context);\r
+          }\r
+          else {\r
+              genNode(node, context);\r
+          }\r
+          if (i < nodes.length - 1) {\r
+              if (multilines) {\r
+                  comma && push(',');\r
+                  newline();\r
+              }\r
+              else {\r
+                  comma && push(', ');\r
+              }\r
+          }\r
+      }\r
+  }\r
+  function genNode(node, context) {\r
+      if (isString(node)) {\r
+          context.push(node);\r
+          return;\r
+      }\r
+      if (isSymbol(node)) {\r
+          context.push(context.helper(node));\r
+          return;\r
+      }\r
+      switch (node.type) {\r
+          case 1 /* ELEMENT */:\r
+          case 9 /* IF */:\r
+          case 11 /* FOR */:\r
+              assert(node.codegenNode != null, `Codegen node is missing for element/if/for node. ` +\r
+                      `Apply appropriate transforms first.`);\r
+              genNode(node.codegenNode, context);\r
+              break;\r
+          case 2 /* TEXT */:\r
+              genText(node, context);\r
+              break;\r
+          case 4 /* SIMPLE_EXPRESSION */:\r
+              genExpression(node, context);\r
+              break;\r
+          case 5 /* INTERPOLATION */:\r
+              genInterpolation(node, context);\r
+              break;\r
+          case 12 /* TEXT_CALL */:\r
+              genNode(node.codegenNode, context);\r
+              break;\r
+          case 8 /* COMPOUND_EXPRESSION */:\r
+              genCompoundExpression(node, context);\r
+              break;\r
+          case 3 /* COMMENT */:\r
+              genComment(node, context);\r
+              break;\r
+          case 13 /* VNODE_CALL */:\r
+              genVNodeCall(node, context);\r
+              break;\r
+          case 14 /* JS_CALL_EXPRESSION */:\r
+              genCallExpression(node, context);\r
+              break;\r
+          case 15 /* JS_OBJECT_EXPRESSION */:\r
+              genObjectExpression(node, context);\r
+              break;\r
+          case 17 /* JS_ARRAY_EXPRESSION */:\r
+              genArrayExpression(node, context);\r
+              break;\r
+          case 18 /* JS_FUNCTION_EXPRESSION */:\r
+              genFunctionExpression(node, context);\r
+              break;\r
+          case 19 /* JS_CONDITIONAL_EXPRESSION */:\r
+              genConditionalExpression(node, context);\r
+              break;\r
+          case 20 /* JS_CACHE_EXPRESSION */:\r
+              genCacheExpression(node, context);\r
+              break;\r
+          case 21 /* JS_BLOCK_STATEMENT */:\r
+              genNodeList(node.body, context, true, false);\r
+              break;\r
+          // SSR only types\r
+          case 22 /* JS_TEMPLATE_LITERAL */:\r
+              break;\r
+          case 23 /* JS_IF_STATEMENT */:\r
+              break;\r
+          case 24 /* JS_ASSIGNMENT_EXPRESSION */:\r
+              break;\r
+          case 25 /* JS_SEQUENCE_EXPRESSION */:\r
+              break;\r
+          case 26 /* JS_RETURN_STATEMENT */:\r
+              break;\r
+          /* istanbul ignore next */\r
+          case 10 /* IF_BRANCH */:\r
+              // noop\r
+              break;\r
+          default:\r
+              {\r
+                  assert(false, `unhandled codegen node type: ${node.type}`);\r
+                  // make sure we exhaust all possible types\r
+                  const exhaustiveCheck = node;\r
+                  return exhaustiveCheck;\r
+              }\r
+      }\r
+  }\r
+  function genText(node, context) {\r
+      context.push(JSON.stringify(node.content), node);\r
+  }\r
+  function genExpression(node, context) {\r
+      const { content, isStatic } = node;\r
+      context.push(isStatic ? JSON.stringify(content) : content, node);\r
+  }\r
+  function genInterpolation(node, context) {\r
+      const { push, helper, pure } = context;\r
+      if (pure)\r
+          push(PURE_ANNOTATION);\r
+      push(`${helper(TO_DISPLAY_STRING)}(`);\r
+      genNode(node.content, context);\r
+      push(`)`);\r
+  }\r
+  function genCompoundExpression(node, context) {\r
+      for (let i = 0; i < node.children.length; i++) {\r
+          const child = node.children[i];\r
+          if (isString(child)) {\r
+              context.push(child);\r
+          }\r
+          else {\r
+              genNode(child, context);\r
+          }\r
+      }\r
+  }\r
+  function genExpressionAsPropertyKey(node, context) {\r
+      const { push } = context;\r
+      if (node.type === 8 /* COMPOUND_EXPRESSION */) {\r
+          push(`[`);\r
+          genCompoundExpression(node, context);\r
+          push(`]`);\r
+      }\r
+      else if (node.isStatic) {\r
+          // only quote keys if necessary\r
+          const text = isSimpleIdentifier(node.content)\r
+              ? node.content\r
+              : JSON.stringify(node.content);\r
+          push(text, node);\r
+      }\r
+      else {\r
+          push(`[${node.content}]`, node);\r
+      }\r
+  }\r
+  function genComment(node, context) {\r
+      const { push, helper, pure } = context;\r
+      if (pure) {\r
+          push(PURE_ANNOTATION);\r
+      }\r
+      push(`${helper(CREATE_COMMENT)}(${JSON.stringify(node.content)})`, node);\r
+  }\r
+  function genVNodeCall(node, context) {\r
+      const { push, helper, pure } = context;\r
+      const { tag, props, children, patchFlag, dynamicProps, directives, isBlock, disableTracking, isComponent } = node;\r
+      if (directives) {\r
+          push(helper(WITH_DIRECTIVES) + `(`);\r
+      }\r
+      if (isBlock) {\r
+          push(`(${helper(OPEN_BLOCK)}(${disableTracking ? `true` : ``}), `);\r
+      }\r
+      if (pure) {\r
+          push(PURE_ANNOTATION);\r
+      }\r
+      const callHelper = isBlock\r
+          ? getVNodeBlockHelper(context.inSSR, isComponent)\r
+          : getVNodeHelper(context.inSSR, isComponent);\r
+      push(helper(callHelper) + `(`, node);\r
+      genNodeList(genNullableArgs([tag, props, children, patchFlag, dynamicProps]), context);\r
+      push(`)`);\r
+      if (isBlock) {\r
+          push(`)`);\r
+      }\r
+      if (directives) {\r
+          push(`, `);\r
+          genNode(directives, context);\r
+          push(`)`);\r
+      }\r
+  }\r
+  function genNullableArgs(args) {\r
+      let i = args.length;\r
+      while (i--) {\r
+          if (args[i] != null)\r
+              break;\r
+      }\r
+      return args.slice(0, i + 1).map(arg => arg || `null`);\r
+  }\r
+  // JavaScript\r
+  function genCallExpression(node, context) {\r
+      const { push, helper, pure } = context;\r
+      const callee = isString(node.callee) ? node.callee : helper(node.callee);\r
+      if (pure) {\r
+          push(PURE_ANNOTATION);\r
+      }\r
+      push(callee + `(`, node);\r
+      genNodeList(node.arguments, context);\r
+      push(`)`);\r
+  }\r
+  function genObjectExpression(node, context) {\r
+      const { push, indent, deindent, newline } = context;\r
+      const { properties } = node;\r
+      if (!properties.length) {\r
+          push(`{}`, node);\r
+          return;\r
+      }\r
+      const multilines = properties.length > 1 ||\r
+          (properties.some(p => p.value.type !== 4 /* SIMPLE_EXPRESSION */));\r
+      push(multilines ? `{` : `{ `);\r
+      multilines && indent();\r
+      for (let i = 0; i < properties.length; i++) {\r
+          const { key, value } = properties[i];\r
+          // key\r
+          genExpressionAsPropertyKey(key, context);\r
+          push(`: `);\r
+          // value\r
+          genNode(value, context);\r
+          if (i < properties.length - 1) {\r
+              // will only reach this if it's multilines\r
+              push(`,`);\r
+              newline();\r
+          }\r
+      }\r
+      multilines && deindent();\r
+      push(multilines ? `}` : ` }`);\r
+  }\r
+  function genArrayExpression(node, context) {\r
+      genNodeListAsArray(node.elements, context);\r
+  }\r
+  function genFunctionExpression(node, context) {\r
+      const { push, indent, deindent } = context;\r
+      const { params, returns, body, newline, isSlot } = node;\r
+      if (isSlot) {\r
+          // wrap slot functions with owner context\r
+          push(`_${helperNameMap[WITH_CTX]}(`);\r
+      }\r
+      push(`(`, node);\r
+      if (isArray(params)) {\r
+          genNodeList(params, context);\r
+      }\r
+      else if (params) {\r
+          genNode(params, context);\r
+      }\r
+      push(`) => `);\r
+      if (newline || body) {\r
+          push(`{`);\r
+          indent();\r
+      }\r
+      if (returns) {\r
+          if (newline) {\r
+              push(`return `);\r
+          }\r
+          if (isArray(returns)) {\r
+              genNodeListAsArray(returns, context);\r
+          }\r
+          else {\r
+              genNode(returns, context);\r
+          }\r
+      }\r
+      else if (body) {\r
+          genNode(body, context);\r
+      }\r
+      if (newline || body) {\r
+          deindent();\r
+          push(`}`);\r
+      }\r
+      if (isSlot) {\r
+          push(`)`);\r
+      }\r
+  }\r
+  function genConditionalExpression(node, context) {\r
+      const { test, consequent, alternate, newline: needNewline } = node;\r
+      const { push, indent, deindent, newline } = context;\r
+      if (test.type === 4 /* SIMPLE_EXPRESSION */) {\r
+          const needsParens = !isSimpleIdentifier(test.content);\r
+          needsParens && push(`(`);\r
+          genExpression(test, context);\r
+          needsParens && push(`)`);\r
+      }\r
+      else {\r
+          push(`(`);\r
+          genNode(test, context);\r
+          push(`)`);\r
+      }\r
+      needNewline && indent();\r
+      context.indentLevel++;\r
+      needNewline || push(` `);\r
+      push(`? `);\r
+      genNode(consequent, context);\r
+      context.indentLevel--;\r
+      needNewline && newline();\r
+      needNewline || push(` `);\r
+      push(`: `);\r
+      const isNested = alternate.type === 19 /* JS_CONDITIONAL_EXPRESSION */;\r
+      if (!isNested) {\r
+          context.indentLevel++;\r
+      }\r
+      genNode(alternate, context);\r
+      if (!isNested) {\r
+          context.indentLevel--;\r
+      }\r
+      needNewline && deindent(true /* without newline */);\r
+  }\r
+  function genCacheExpression(node, context) {\r
+      const { push, helper, indent, deindent, newline } = context;\r
+      push(`_cache[${node.index}] || (`);\r
+      if (node.isVNode) {\r
+          indent();\r
+          push(`${helper(SET_BLOCK_TRACKING)}(-1),`);\r
+          newline();\r
+      }\r
+      push(`_cache[${node.index}] = `);\r
+      genNode(node.value, context);\r
+      if (node.isVNode) {\r
+          push(`,`);\r
+          newline();\r
+          push(`${helper(SET_BLOCK_TRACKING)}(1),`);\r
+          newline();\r
+          push(`_cache[${node.index}]`);\r
+          deindent();\r
+      }\r
+      push(`)`);\r
+  }
+
+  // these keywords should not appear inside expressions, but operators like\r
+  // typeof, instanceof and in are allowed\r
+  const prohibitedKeywordRE = new RegExp('\\b' +\r
+      ('do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' +\r
+          'super,throw,while,yield,delete,export,import,return,switch,default,' +\r
+          'extends,finally,continue,debugger,function,arguments,typeof,void')\r
+          .split(',')\r
+          .join('\\b|\\b') +\r
+      '\\b');\r
+  // strip strings in expressions\r
+  const stripStringRE = /'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"|`(?:[^`\\]|\\.)*\$\{|\}(?:[^`\\]|\\.)*`|`(?:[^`\\]|\\.)*`/g;\r
+  /**\r
+   * Validate a non-prefixed expression.\r
+   * This is only called when using the in-browser runtime compiler since it\r
+   * doesn't prefix expressions.\r
+   */\r
+  function validateBrowserExpression(node, context, asParams = false, asRawStatements = false) {\r
+      const exp = node.content;\r
+      // empty expressions are validated per-directive since some directives\r
+      // do allow empty expressions.\r
+      if (!exp.trim()) {\r
+          return;\r
+      }\r
+      try {\r
+          new Function(asRawStatements\r
+              ? ` ${exp} `\r
+              : `return ${asParams ? `(${exp}) => {}` : `(${exp})`}`);\r
+      }\r
+      catch (e) {\r
+          let message = e.message;\r
+          const keywordMatch = exp\r
+              .replace(stripStringRE, '')\r
+              .match(prohibitedKeywordRE);\r
+          if (keywordMatch) {\r
+              message = `avoid using JavaScript keyword as property name: "${keywordMatch[0]}"`;\r
+          }\r
+          context.onError(createCompilerError(44 /* X_INVALID_EXPRESSION */, node.loc, undefined, message));\r
+      }\r
+  }
+
+  const transformExpression = (node, context) => {\r
+      if (node.type === 5 /* INTERPOLATION */) {\r
+          node.content = processExpression(node.content, context);\r
+      }\r
+      else if (node.type === 1 /* ELEMENT */) {\r
+          // handle directives on element\r
+          for (let i = 0; i < node.props.length; i++) {\r
+              const dir = node.props[i];\r
+              // do not process for v-on & v-for since they are special handled\r
+              if (dir.type === 7 /* DIRECTIVE */ && dir.name !== 'for') {\r
+                  const exp = dir.exp;\r
+                  const arg = dir.arg;\r
+                  // do not process exp if this is v-on:arg - we need special handling\r
+                  // for wrapping inline statements.\r
+                  if (exp &&\r
+                      exp.type === 4 /* SIMPLE_EXPRESSION */ &&\r
+                      !(dir.name === 'on' && arg)) {\r
+                      dir.exp = processExpression(exp, context, \r
+                      // slot args must be processed as function params\r
+                      dir.name === 'slot');\r
+                  }\r
+                  if (arg && arg.type === 4 /* SIMPLE_EXPRESSION */ && !arg.isStatic) {\r
+                      dir.arg = processExpression(arg, context);\r
+                  }\r
+              }\r
+          }\r
+      }\r
+  };\r
+  // Important: since this function uses Node.js only dependencies, it should\r
+  // always be used with a leading !true check so that it can be\r
+  // tree-shaken from the browser build.\r
+  function processExpression(node, context, \r
+  // some expressions like v-slot props & v-for aliases should be parsed as\r
+  // function params\r
+  asParams = false, \r
+  // v-on handler values may contain multiple statements\r
+  asRawStatements = false, localVars = Object.create(context.identifiers)) {\r
+      {\r
+          {\r
+              // simple in-browser validation (same logic in 2.x)\r
+              validateBrowserExpression(node, context, asParams, asRawStatements);\r
+          }\r
+          return node;\r
+      }\r
+  }
+
+  const transformIf = createStructuralDirectiveTransform(/^(if|else|else-if)$/, (node, dir, context) => {\r
+      return processIf(node, dir, context, (ifNode, branch, isRoot) => {\r
+          // #1587: We need to dynamically increment the key based on the current\r
+          // node's sibling nodes, since chained v-if/else branches are\r
+          // rendered at the same depth\r
+          const siblings = context.parent.children;\r
+          let i = siblings.indexOf(ifNode);\r
+          let key = 0;\r
+          while (i-- >= 0) {\r
+              const sibling = siblings[i];\r
+              if (sibling && sibling.type === 9 /* IF */) {\r
+                  key += sibling.branches.length;\r
+              }\r
+          }\r
+          // Exit callback. Complete the codegenNode when all children have been\r
+          // transformed.\r
+          return () => {\r
+              if (isRoot) {\r
+                  ifNode.codegenNode = createCodegenNodeForBranch(branch, key, context);\r
+              }\r
+              else {\r
+                  // attach this branch's codegen node to the v-if root.\r
+                  const parentCondition = getParentCondition(ifNode.codegenNode);\r
+                  parentCondition.alternate = createCodegenNodeForBranch(branch, key + ifNode.branches.length - 1, context);\r
+              }\r
+          };\r
+      });\r
+  });\r
+  // target-agnostic transform used for both Client and SSR\r
+  function processIf(node, dir, context, processCodegen) {\r
+      if (dir.name !== 'else' &&\r
+          (!dir.exp || !dir.exp.content.trim())) {\r
+          const loc = dir.exp ? dir.exp.loc : node.loc;\r
+          context.onError(createCompilerError(28 /* X_V_IF_NO_EXPRESSION */, dir.loc));\r
+          dir.exp = createSimpleExpression(`true`, false, loc);\r
+      }\r
+      if (dir.exp) {\r
+          validateBrowserExpression(dir.exp, context);\r
+      }\r
+      if (dir.name === 'if') {\r
+          const branch = createIfBranch(node, dir);\r
+          const ifNode = {\r
+              type: 9 /* IF */,\r
+              loc: node.loc,\r
+              branches: [branch]\r
+          };\r
+          context.replaceNode(ifNode);\r
+          if (processCodegen) {\r
+              return processCodegen(ifNode, branch, true);\r
+          }\r
+      }\r
+      else {\r
+          // locate the adjacent v-if\r
+          const siblings = context.parent.children;\r
+          const comments = [];\r
+          let i = siblings.indexOf(node);\r
+          while (i-- >= -1) {\r
+              const sibling = siblings[i];\r
+              if (sibling && sibling.type === 3 /* COMMENT */) {\r
+                  context.removeNode(sibling);\r
+                  comments.unshift(sibling);\r
+                  continue;\r
+              }\r
+              if (sibling &&\r
+                  sibling.type === 2 /* TEXT */ &&\r
+                  !sibling.content.trim().length) {\r
+                  context.removeNode(sibling);\r
+                  continue;\r
+              }\r
+              if (sibling && sibling.type === 9 /* IF */) {\r
+                  // move the node to the if node's branches\r
+                  context.removeNode();\r
+                  const branch = createIfBranch(node, dir);\r
+                  if (comments.length &&\r
+                      // #3619 ignore comments if the v-if is direct child of <transition>\r
+                      !(context.parent &&\r
+                          context.parent.type === 1 /* ELEMENT */ &&\r
+                          isBuiltInType(context.parent.tag, 'transition'))) {\r
+                      branch.children = [...comments, ...branch.children];\r
+                  }\r
+                  // check if user is forcing same key on different branches\r
+                  {\r
+                      const key = branch.userKey;\r
+                      if (key) {\r
+                          sibling.branches.forEach(({ userKey }) => {\r
+                              if (isSameKey(userKey, key)) {\r
+                                  context.onError(createCompilerError(29 /* X_V_IF_SAME_KEY */, branch.userKey.loc));\r
+                              }\r
+                          });\r
+                      }\r
+                  }\r
+                  sibling.branches.push(branch);\r
+                  const onExit = processCodegen && processCodegen(sibling, branch, false);\r
+                  // since the branch was removed, it will not be traversed.\r
+                  // make sure to traverse here.\r
+                  traverseNode(branch, context);\r
+                  // call on exit\r
+                  if (onExit)\r
+                      onExit();\r
+                  // make sure to reset currentNode after traversal to indicate this\r
+                  // node has been removed.\r
+                  context.currentNode = null;\r
+              }\r
+              else {\r
+                  context.onError(createCompilerError(30 /* X_V_ELSE_NO_ADJACENT_IF */, node.loc));\r
+              }\r
+              break;\r
+          }\r
+      }\r
+  }\r
+  function createIfBranch(node, dir) {\r
+      return {\r
+          type: 10 /* IF_BRANCH */,\r
+          loc: node.loc,\r
+          condition: dir.name === 'else' ? undefined : dir.exp,\r
+          children: node.tagType === 3 /* TEMPLATE */ && !findDir(node, 'for')\r
+              ? node.children\r
+              : [node],\r
+          userKey: findProp(node, `key`)\r
+      };\r
+  }\r
+  function createCodegenNodeForBranch(branch, keyIndex, context) {\r
+      if (branch.condition) {\r
+          return createConditionalExpression(branch.condition, createChildrenCodegenNode(branch, keyIndex, context), \r
+          // make sure to pass in asBlock: true so that the comment node call\r
+          // closes the current block.\r
+          createCallExpression(context.helper(CREATE_COMMENT), [\r
+              '"v-if"' ,\r
+              'true'\r
+          ]));\r
+      }\r
+      else {\r
+          return createChildrenCodegenNode(branch, keyIndex, context);\r
+      }\r
+  }\r
+  function createChildrenCodegenNode(branch, keyIndex, context) {\r
+      const { helper } = context;\r
+      const keyProperty = createObjectProperty(`key`, createSimpleExpression(`${keyIndex}`, false, locStub, 2 /* CAN_HOIST */));\r
+      const { children } = branch;\r
+      const firstChild = children[0];\r
+      const needFragmentWrapper = children.length !== 1 || firstChild.type !== 1 /* ELEMENT */;\r
+      if (needFragmentWrapper) {\r
+          if (children.length === 1 && firstChild.type === 11 /* FOR */) {\r
+              // optimize away nested fragments when child is a ForNode\r
+              const vnodeCall = firstChild.codegenNode;\r
+              injectProp(vnodeCall, keyProperty, context);\r
+              return vnodeCall;\r
+          }\r
+          else {\r
+              let patchFlag = 64 /* STABLE_FRAGMENT */;\r
+              let patchFlagText = PatchFlagNames[64 /* STABLE_FRAGMENT */];\r
+              // check if the fragment actually contains a single valid child with\r
+              // the rest being comments\r
+              if (children.filter(c => c.type !== 3 /* COMMENT */).length === 1) {\r
+                  patchFlag |= 2048 /* DEV_ROOT_FRAGMENT */;\r
+                  patchFlagText += `, ${PatchFlagNames[2048 /* DEV_ROOT_FRAGMENT */]}`;\r
+              }\r
+              return createVNodeCall(context, helper(FRAGMENT), createObjectExpression([keyProperty]), children, patchFlag + (` /* ${patchFlagText} */` ), undefined, undefined, true, false, false /* isComponent */, branch.loc);\r
+          }\r
+      }\r
+      else {\r
+          const ret = firstChild.codegenNode;\r
+          const vnodeCall = getMemoedVNodeCall(ret);\r
+          // Change createVNode to createBlock.\r
+          if (vnodeCall.type === 13 /* VNODE_CALL */) {\r
+              makeBlock(vnodeCall, context);\r
+          }\r
+          // inject branch key\r
+          injectProp(vnodeCall, keyProperty, context);\r
+          return ret;\r
+      }\r
+  }\r
+  function isSameKey(a, b) {\r
+      if (!a || a.type !== b.type) {\r
+          return false;\r
+      }\r
+      if (a.type === 6 /* ATTRIBUTE */) {\r
+          if (a.value.content !== b.value.content) {\r
+              return false;\r
+          }\r
+      }\r
+      else {\r
+          // directive\r
+          const exp = a.exp;\r
+          const branchExp = b.exp;\r
+          if (exp.type !== branchExp.type) {\r
+              return false;\r
+          }\r
+          if (exp.type !== 4 /* SIMPLE_EXPRESSION */ ||\r
+              exp.isStatic !== branchExp.isStatic ||\r
+              exp.content !== branchExp.content) {\r
+              return false;\r
+          }\r
+      }\r
+      return true;\r
+  }\r
+  function getParentCondition(node) {\r
+      while (true) {\r
+          if (node.type === 19 /* JS_CONDITIONAL_EXPRESSION */) {\r
+              if (node.alternate.type === 19 /* JS_CONDITIONAL_EXPRESSION */) {\r
+                  node = node.alternate;\r
+              }\r
+              else {\r
+                  return node;\r
+              }\r
+          }\r
+          else if (node.type === 20 /* JS_CACHE_EXPRESSION */) {\r
+              node = node.value;\r
+          }\r
+      }\r
+  }
+
+  const transformFor = createStructuralDirectiveTransform('for', (node, dir, context) => {\r
+      const { helper, removeHelper } = context;\r
+      return processFor(node, dir, context, forNode => {\r
+          // create the loop render function expression now, and add the\r
+          // iterator on exit after all children have been traversed\r
+          const renderExp = createCallExpression(helper(RENDER_LIST), [\r
+              forNode.source\r
+          ]);\r
+          const memo = findDir(node, 'memo');\r
+          const keyProp = findProp(node, `key`);\r
+          const keyExp = keyProp &&\r
+              (keyProp.type === 6 /* ATTRIBUTE */\r
+                  ? createSimpleExpression(keyProp.value.content, true)\r
+                  : keyProp.exp);\r
+          const keyProperty = keyProp ? createObjectProperty(`key`, keyExp) : null;\r
+          const isStableFragment = forNode.source.type === 4 /* SIMPLE_EXPRESSION */ &&\r
+              forNode.source.constType > 0 /* NOT_CONSTANT */;\r
+          const fragmentFlag = isStableFragment\r
+              ? 64 /* STABLE_FRAGMENT */\r
+              : keyProp\r
+                  ? 128 /* KEYED_FRAGMENT */\r
+                  : 256 /* UNKEYED_FRAGMENT */;\r
+          forNode.codegenNode = createVNodeCall(context, helper(FRAGMENT), undefined, renderExp, fragmentFlag +\r
+              (` /* ${PatchFlagNames[fragmentFlag]} */` ), undefined, undefined, true /* isBlock */, !isStableFragment /* disableTracking */, false /* isComponent */, node.loc);\r
+          return () => {\r
+              // finish the codegen now that all children have been traversed\r
+              let childBlock;\r
+              const isTemplate = isTemplateNode(node);\r
+              const { children } = forNode;\r
+              // check <template v-for> key placement\r
+              if (isTemplate) {\r
+                  node.children.some(c => {\r
+                      if (c.type === 1 /* ELEMENT */) {\r
+                          const key = findProp(c, 'key');\r
+                          if (key) {\r
+                              context.onError(createCompilerError(33 /* X_V_FOR_TEMPLATE_KEY_PLACEMENT */, key.loc));\r
+                              return true;\r
+                          }\r
+                      }\r
+                  });\r
+              }\r
+              const needFragmentWrapper = children.length !== 1 || children[0].type !== 1 /* ELEMENT */;\r
+              const slotOutlet = isSlotOutlet(node)\r
+                  ? node\r
+                  : isTemplate &&\r
+                      node.children.length === 1 &&\r
+                      isSlotOutlet(node.children[0])\r
+                      ? node.children[0] // api-extractor somehow fails to infer this\r
+                      : null;\r
+              if (slotOutlet) {\r
+                  // <slot v-for="..."> or <template v-for="..."><slot/></template>\r
+                  childBlock = slotOutlet.codegenNode;\r
+                  if (isTemplate && keyProperty) {\r
+                      // <template v-for="..." :key="..."><slot/></template>\r
+                      // we need to inject the key to the renderSlot() call.\r
+                      // the props for renderSlot is passed as the 3rd argument.\r
+                      injectProp(childBlock, keyProperty, context);\r
+                  }\r
+              }\r
+              else if (needFragmentWrapper) {\r
+                  // <template v-for="..."> with text or multi-elements\r
+                  // should generate a fragment block for each loop\r
+                  childBlock = createVNodeCall(context, helper(FRAGMENT), keyProperty ? createObjectExpression([keyProperty]) : undefined, node.children, 64 /* STABLE_FRAGMENT */ +\r
+                      (` /* ${PatchFlagNames[64 /* STABLE_FRAGMENT */]} */`\r
+                          ), undefined, undefined, true, undefined, false /* isComponent */);\r
+              }\r
+              else {\r
+                  // Normal element v-for. Directly use the child's codegenNode\r
+                  // but mark it as a block.\r
+                  childBlock = children[0]\r
+                      .codegenNode;\r
+                  if (isTemplate && keyProperty) {\r
+                      injectProp(childBlock, keyProperty, context);\r
+                  }\r
+                  if (childBlock.isBlock !== !isStableFragment) {\r
+                      if (childBlock.isBlock) {\r
+                          // switch from block to vnode\r
+                          removeHelper(OPEN_BLOCK);\r
+                          removeHelper(getVNodeBlockHelper(context.inSSR, childBlock.isComponent));\r
+                      }\r
+                      else {\r
+                          // switch from vnode to block\r
+                          removeHelper(getVNodeHelper(context.inSSR, childBlock.isComponent));\r
+                      }\r
+                  }\r
+                  childBlock.isBlock = !isStableFragment;\r
+                  if (childBlock.isBlock) {\r
+                      helper(OPEN_BLOCK);\r
+                      helper(getVNodeBlockHelper(context.inSSR, childBlock.isComponent));\r
+                  }\r
+                  else {\r
+                      helper(getVNodeHelper(context.inSSR, childBlock.isComponent));\r
+                  }\r
+              }\r
+              if (memo) {\r
+                  const loop = createFunctionExpression(createForLoopParams(forNode.parseResult, [\r
+                      createSimpleExpression(`_cached`)\r
+                  ]));\r
+                  loop.body = createBlockStatement([\r
+                      createCompoundExpression([`const _memo = (`, memo.exp, `)`]),\r
+                      createCompoundExpression([\r
+                          `if (_cached`,\r
+                          ...(keyExp ? [` && _cached.key === `, keyExp] : []),\r
+                          ` && ${context.helperString(IS_MEMO_SAME)}(_cached, _memo)) return _cached`\r
+                      ]),\r
+                      createCompoundExpression([`const _item = `, childBlock]),\r
+                      createSimpleExpression(`_item.memo = _memo`),\r
+                      createSimpleExpression(`return _item`)\r
+                  ]);\r
+                  renderExp.arguments.push(loop, createSimpleExpression(`_cache`), createSimpleExpression(String(context.cached++)));\r
+              }\r
+              else {\r
+                  renderExp.arguments.push(createFunctionExpression(createForLoopParams(forNode.parseResult), childBlock, true /* force newline */));\r
+              }\r
+          };\r
+      });\r
+  });\r
+  // target-agnostic transform used for both Client and SSR\r
+  function processFor(node, dir, context, processCodegen) {\r
+      if (!dir.exp) {\r
+          context.onError(createCompilerError(31 /* X_V_FOR_NO_EXPRESSION */, dir.loc));\r
+          return;\r
+      }\r
+      const parseResult = parseForExpression(\r
+      // can only be simple expression because vFor transform is applied\r
+      // before expression transform.\r
+      dir.exp, context);\r
+      if (!parseResult) {\r
+          context.onError(createCompilerError(32 /* X_V_FOR_MALFORMED_EXPRESSION */, dir.loc));\r
+          return;\r
+      }\r
+      const { addIdentifiers, removeIdentifiers, scopes } = context;\r
+      const { source, value, key, index } = parseResult;\r
+      const forNode = {\r
+          type: 11 /* FOR */,\r
+          loc: dir.loc,\r
+          source,\r
+          valueAlias: value,\r
+          keyAlias: key,\r
+          objectIndexAlias: index,\r
+          parseResult,\r
+          children: isTemplateNode(node) ? node.children : [node]\r
+      };\r
+      context.replaceNode(forNode);\r
+      // bookkeeping\r
+      scopes.vFor++;\r
+      const onExit = processCodegen && processCodegen(forNode);\r
+      return () => {\r
+          scopes.vFor--;\r
+          if (onExit)\r
+              onExit();\r
+      };\r
+  }\r
+  const forAliasRE = /([\s\S]*?)\s+(?:in|of)\s+([\s\S]*)/;\r
+  // This regex doesn't cover the case if key or index aliases have destructuring,\r
+  // but those do not make sense in the first place, so this works in practice.\r
+  const forIteratorRE = /,([^,\}\]]*)(?:,([^,\}\]]*))?$/;\r
+  const stripParensRE = /^\(|\)$/g;\r
+  function parseForExpression(input, context) {\r
+      const loc = input.loc;\r
+      const exp = input.content;\r
+      const inMatch = exp.match(forAliasRE);\r
+      if (!inMatch)\r
+          return;\r
+      const [, LHS, RHS] = inMatch;\r
+      const result = {\r
+          source: createAliasExpression(loc, RHS.trim(), exp.indexOf(RHS, LHS.length)),\r
+          value: undefined,\r
+          key: undefined,\r
+          index: undefined\r
+      };\r
+      {\r
+          validateBrowserExpression(result.source, context);\r
+      }\r
+      let valueContent = LHS.trim().replace(stripParensRE, '').trim();\r
+      const trimmedOffset = LHS.indexOf(valueContent);\r
+      const iteratorMatch = valueContent.match(forIteratorRE);\r
+      if (iteratorMatch) {\r
+          valueContent = valueContent.replace(forIteratorRE, '').trim();\r
+          const keyContent = iteratorMatch[1].trim();\r
+          let keyOffset;\r
+          if (keyContent) {\r
+              keyOffset = exp.indexOf(keyContent, trimmedOffset + valueContent.length);\r
+              result.key = createAliasExpression(loc, keyContent, keyOffset);\r
+              {\r
+                  validateBrowserExpression(result.key, context, true);\r
+              }\r
+          }\r
+          if (iteratorMatch[2]) {\r
+              const indexContent = iteratorMatch[2].trim();\r
+              if (indexContent) {\r
+                  result.index = createAliasExpression(loc, indexContent, exp.indexOf(indexContent, result.key\r
+                      ? keyOffset + keyContent.length\r
+                      : trimmedOffset + valueContent.length));\r
+                  {\r
+                      validateBrowserExpression(result.index, context, true);\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      if (valueContent) {\r
+          result.value = createAliasExpression(loc, valueContent, trimmedOffset);\r
+          {\r
+              validateBrowserExpression(result.value, context, true);\r
+          }\r
+      }\r
+      return result;\r
+  }\r
+  function createAliasExpression(range, content, offset) {\r
+      return createSimpleExpression(content, false, getInnerRange(range, offset, content.length));\r
+  }\r
+  function createForLoopParams({ value, key, index }, memoArgs = []) {\r
+      return createParamsList([value, key, index, ...memoArgs]);\r
+  }\r
+  function createParamsList(args) {\r
+      let i = args.length;\r
+      while (i--) {\r
+          if (args[i])\r
+              break;\r
+      }\r
+      return args\r
+          .slice(0, i + 1)\r
+          .map((arg, i) => arg || createSimpleExpression(`_`.repeat(i + 1), false));\r
+  }
+
+  const defaultFallback = createSimpleExpression(`undefined`, false);\r
+  // A NodeTransform that:\r
+  // 1. Tracks scope identifiers for scoped slots so that they don't get prefixed\r
+  //    by transformExpression. This is only applied in non-browser builds with\r
+  //    { prefixIdentifiers: true }.\r
+  // 2. Track v-slot depths so that we know a slot is inside another slot.\r
+  //    Note the exit callback is executed before buildSlots() on the same node,\r
+  //    so only nested slots see positive numbers.\r
+  const trackSlotScopes = (node, context) => {\r
+      if (node.type === 1 /* ELEMENT */ &&\r
+          (node.tagType === 1 /* COMPONENT */ ||\r
+              node.tagType === 3 /* TEMPLATE */)) {\r
+          // We are only checking non-empty v-slot here\r
+          // since we only care about slots that introduce scope variables.\r
+          const vSlot = findDir(node, 'slot');\r
+          if (vSlot) {\r
+              vSlot.exp;\r
+              context.scopes.vSlot++;\r
+              return () => {\r
+                  context.scopes.vSlot--;\r
+              };\r
+          }\r
+      }\r
+  };\r
+  const buildClientSlotFn = (props, children, loc) => createFunctionExpression(props, children, false /* newline */, true /* isSlot */, children.length ? children[0].loc : loc);\r
+  // Instead of being a DirectiveTransform, v-slot processing is called during\r
+  // transformElement to build the slots object for a component.\r
+  function buildSlots(node, context, buildSlotFn = buildClientSlotFn) {\r
+      context.helper(WITH_CTX);\r
+      const { children, loc } = node;\r
+      const slotsProperties = [];\r
+      const dynamicSlots = [];\r
+      // If the slot is inside a v-for or another v-slot, force it to be dynamic\r
+      // since it likely uses a scope variable.\r
+      let hasDynamicSlots = context.scopes.vSlot > 0 || context.scopes.vFor > 0;\r
+      // 1. Check for slot with slotProps on component itself.\r
+      //    <Comp v-slot="{ prop }"/>\r
+      const onComponentSlot = findDir(node, 'slot', true);\r
+      if (onComponentSlot) {\r
+          const { arg, exp } = onComponentSlot;\r
+          if (arg && !isStaticExp(arg)) {\r
+              hasDynamicSlots = true;\r
+          }\r
+          slotsProperties.push(createObjectProperty(arg || createSimpleExpression('default', true), buildSlotFn(exp, children, loc)));\r
+      }\r
+      // 2. Iterate through children and check for template slots\r
+      //    <template v-slot:foo="{ prop }">\r
+      let hasTemplateSlots = false;\r
+      let hasNamedDefaultSlot = false;\r
+      const implicitDefaultChildren = [];\r
+      const seenSlotNames = new Set();\r
+      for (let i = 0; i < children.length; i++) {\r
+          const slotElement = children[i];\r
+          let slotDir;\r
+          if (!isTemplateNode(slotElement) ||\r
+              !(slotDir = findDir(slotElement, 'slot', true))) {\r
+              // not a <template v-slot>, skip.\r
+              if (slotElement.type !== 3 /* COMMENT */) {\r
+                  implicitDefaultChildren.push(slotElement);\r
+              }\r
+              continue;\r
+          }\r
+          if (onComponentSlot) {\r
+              // already has on-component slot - this is incorrect usage.\r
+              context.onError(createCompilerError(37 /* X_V_SLOT_MIXED_SLOT_USAGE */, slotDir.loc));\r
+              break;\r
+          }\r
+          hasTemplateSlots = true;\r
+          const { children: slotChildren, loc: slotLoc } = slotElement;\r
+          const { arg: slotName = createSimpleExpression(`default`, true), exp: slotProps, loc: dirLoc } = slotDir;\r
+          // check if name is dynamic.\r
+          let staticSlotName;\r
+          if (isStaticExp(slotName)) {\r
+              staticSlotName = slotName ? slotName.content : `default`;\r
+          }\r
+          else {\r
+              hasDynamicSlots = true;\r
+          }\r
+          const slotFunction = buildSlotFn(slotProps, slotChildren, slotLoc);\r
+          // check if this slot is conditional (v-if/v-for)\r
+          let vIf;\r
+          let vElse;\r
+          let vFor;\r
+          if ((vIf = findDir(slotElement, 'if'))) {\r
+              hasDynamicSlots = true;\r
+              dynamicSlots.push(createConditionalExpression(vIf.exp, buildDynamicSlot(slotName, slotFunction), defaultFallback));\r
+          }\r
+          else if ((vElse = findDir(slotElement, /^else(-if)?$/, true /* allowEmpty */))) {\r
+              // find adjacent v-if\r
+              let j = i;\r
+              let prev;\r
+              while (j--) {\r
+                  prev = children[j];\r
+                  if (prev.type !== 3 /* COMMENT */) {\r
+                      break;\r
+                  }\r
+              }\r
+              if (prev && isTemplateNode(prev) && findDir(prev, 'if')) {\r
+                  // remove node\r
+                  children.splice(i, 1);\r
+                  i--;\r
+                  // attach this slot to previous conditional\r
+                  let conditional = dynamicSlots[dynamicSlots.length - 1];\r
+                  while (conditional.alternate.type === 19 /* JS_CONDITIONAL_EXPRESSION */) {\r
+                      conditional = conditional.alternate;\r
+                  }\r
+                  conditional.alternate = vElse.exp\r
+                      ? createConditionalExpression(vElse.exp, buildDynamicSlot(slotName, slotFunction), defaultFallback)\r
+                      : buildDynamicSlot(slotName, slotFunction);\r
+              }\r
+              else {\r
+                  context.onError(createCompilerError(30 /* X_V_ELSE_NO_ADJACENT_IF */, vElse.loc));\r
+              }\r
+          }\r
+          else if ((vFor = findDir(slotElement, 'for'))) {\r
+              hasDynamicSlots = true;\r
+              const parseResult = vFor.parseResult ||\r
+                  parseForExpression(vFor.exp, context);\r
+              if (parseResult) {\r
+                  // Render the dynamic slots as an array and add it to the createSlot()\r
+                  // args. The runtime knows how to handle it appropriately.\r
+                  dynamicSlots.push(createCallExpression(context.helper(RENDER_LIST), [\r
+                      parseResult.source,\r
+                      createFunctionExpression(createForLoopParams(parseResult), buildDynamicSlot(slotName, slotFunction), true /* force newline */)\r
+                  ]));\r
+              }\r
+              else {\r
+                  context.onError(createCompilerError(32 /* X_V_FOR_MALFORMED_EXPRESSION */, vFor.loc));\r
+              }\r
+          }\r
+          else {\r
+              // check duplicate static names\r
+              if (staticSlotName) {\r
+                  if (seenSlotNames.has(staticSlotName)) {\r
+                      context.onError(createCompilerError(38 /* X_V_SLOT_DUPLICATE_SLOT_NAMES */, dirLoc));\r
+                      continue;\r
+                  }\r
+                  seenSlotNames.add(staticSlotName);\r
+                  if (staticSlotName === 'default') {\r
+                      hasNamedDefaultSlot = true;\r
+                  }\r
+              }\r
+              slotsProperties.push(createObjectProperty(slotName, slotFunction));\r
+          }\r
+      }\r
+      if (!onComponentSlot) {\r
+          const buildDefaultSlotProperty = (props, children) => {\r
+              const fn = buildSlotFn(props, children, loc);\r
+              return createObjectProperty(`default`, fn);\r
+          };\r
+          if (!hasTemplateSlots) {\r
+              // implicit default slot (on component)\r
+              slotsProperties.push(buildDefaultSlotProperty(undefined, children));\r
+          }\r
+          else if (implicitDefaultChildren.length &&\r
+              // #3766\r
+              // with whitespace: 'preserve', whitespaces between slots will end up in\r
+              // implicitDefaultChildren. Ignore if all implicit children are whitespaces.\r
+              implicitDefaultChildren.some(node => isNonWhitespaceContent(node))) {\r
+              // implicit default slot (mixed with named slots)\r
+              if (hasNamedDefaultSlot) {\r
+                  context.onError(createCompilerError(39 /* X_V_SLOT_EXTRANEOUS_DEFAULT_SLOT_CHILDREN */, implicitDefaultChildren[0].loc));\r
+              }\r
+              else {\r
+                  slotsProperties.push(buildDefaultSlotProperty(undefined, implicitDefaultChildren));\r
+              }\r
+          }\r
+      }\r
+      const slotFlag = hasDynamicSlots\r
+          ? 2 /* DYNAMIC */\r
+          : hasForwardedSlots(node.children)\r
+              ? 3 /* FORWARDED */\r
+              : 1 /* STABLE */;\r
+      let slots = createObjectExpression(slotsProperties.concat(createObjectProperty(`_`, \r
+      // 2 = compiled but dynamic = can skip normalization, but must run diff\r
+      // 1 = compiled and static = can skip normalization AND diff as optimized\r
+      createSimpleExpression(slotFlag + (` /* ${slotFlagsText[slotFlag]} */` ), false))), loc);\r
+      if (dynamicSlots.length) {\r
+          slots = createCallExpression(context.helper(CREATE_SLOTS), [\r
+              slots,\r
+              createArrayExpression(dynamicSlots)\r
+          ]);\r
+      }\r
+      return {\r
+          slots,\r
+          hasDynamicSlots\r
+      };\r
+  }\r
+  function buildDynamicSlot(name, fn) {\r
+      return createObjectExpression([\r
+          createObjectProperty(`name`, name),\r
+          createObjectProperty(`fn`, fn)\r
+      ]);\r
+  }\r
+  function hasForwardedSlots(children) {\r
+      for (let i = 0; i < children.length; i++) {\r
+          const child = children[i];\r
+          switch (child.type) {\r
+              case 1 /* ELEMENT */:\r
+                  if (child.tagType === 2 /* SLOT */ ||\r
+                      hasForwardedSlots(child.children)) {\r
+                      return true;\r
+                  }\r
+                  break;\r
+              case 9 /* IF */:\r
+                  if (hasForwardedSlots(child.branches))\r
+                      return true;\r
+                  break;\r
+              case 10 /* IF_BRANCH */:\r
+              case 11 /* FOR */:\r
+                  if (hasForwardedSlots(child.children))\r
+                      return true;\r
+                  break;\r
+          }\r
+      }\r
+      return false;\r
+  }\r
+  function isNonWhitespaceContent(node) {\r
+      if (node.type !== 2 /* TEXT */ && node.type !== 12 /* TEXT_CALL */)\r
+          return true;\r
+      return node.type === 2 /* TEXT */\r
+          ? !!node.content.trim()\r
+          : isNonWhitespaceContent(node.content);\r
+  }
+
+  // some directive transforms (e.g. v-model) may return a symbol for runtime\r
+  // import, which should be used instead of a resolveDirective call.\r
+  const directiveImportMap = new WeakMap();\r
+  // generate a JavaScript AST for this element's codegen\r
+  const transformElement = (node, context) => {\r
+      // perform the work on exit, after all child expressions have been\r
+      // processed and merged.\r
+      return function postTransformElement() {\r
+          node = context.currentNode;\r
+          if (!(node.type === 1 /* ELEMENT */ &&\r
+              (node.tagType === 0 /* ELEMENT */ ||\r
+                  node.tagType === 1 /* COMPONENT */))) {\r
+              return;\r
+          }\r
+          const { tag, props } = node;\r
+          const isComponent = node.tagType === 1 /* COMPONENT */;\r
+          // The goal of the transform is to create a codegenNode implementing the\r
+          // VNodeCall interface.\r
+          let vnodeTag = isComponent\r
+              ? resolveComponentType(node, context)\r
+              : `"${tag}"`;\r
+          const isDynamicComponent = isObject(vnodeTag) && vnodeTag.callee === RESOLVE_DYNAMIC_COMPONENT;\r
+          let vnodeProps;\r
+          let vnodeChildren;\r
+          let vnodePatchFlag;\r
+          let patchFlag = 0;\r
+          let vnodeDynamicProps;\r
+          let dynamicPropNames;\r
+          let vnodeDirectives;\r
+          let shouldUseBlock = \r
+          // dynamic component may resolve to plain elements\r
+          isDynamicComponent ||\r
+              vnodeTag === TELEPORT ||\r
+              vnodeTag === SUSPENSE ||\r
+              (!isComponent &&\r
+                  // <svg> and <foreignObject> must be forced into blocks so that block\r
+                  // updates inside get proper isSVG flag at runtime. (#639, #643)\r
+                  // This is technically web-specific, but splitting the logic out of core\r
+                  // leads to too much unnecessary complexity.\r
+                  (tag === 'svg' ||\r
+                      tag === 'foreignObject' ||\r
+                      // #938: elements with dynamic keys should be forced into blocks\r
+                      findProp(node, 'key', true)));\r
+          // props\r
+          if (props.length > 0) {\r
+              const propsBuildResult = buildProps(node, context);\r
+              vnodeProps = propsBuildResult.props;\r
+              patchFlag = propsBuildResult.patchFlag;\r
+              dynamicPropNames = propsBuildResult.dynamicPropNames;\r
+              const directives = propsBuildResult.directives;\r
+              vnodeDirectives =\r
+                  directives && directives.length\r
+                      ? createArrayExpression(directives.map(dir => buildDirectiveArgs(dir, context)))\r
+                      : undefined;\r
+          }\r
+          // children\r
+          if (node.children.length > 0) {\r
+              if (vnodeTag === KEEP_ALIVE) {\r
+                  // Although a built-in component, we compile KeepAlive with raw children\r
+                  // instead of slot functions so that it can be used inside Transition\r
+                  // or other Transition-wrapping HOCs.\r
+                  // To ensure correct updates with block optimizations, we need to:\r
+                  // 1. Force keep-alive into a block. This avoids its children being\r
+                  //    collected by a parent block.\r
+                  shouldUseBlock = true;\r
+                  // 2. Force keep-alive to always be updated, since it uses raw children.\r
+                  patchFlag |= 1024 /* DYNAMIC_SLOTS */;\r
+                  if (node.children.length > 1) {\r
+                      context.onError(createCompilerError(45 /* X_KEEP_ALIVE_INVALID_CHILDREN */, {\r
+                          start: node.children[0].loc.start,\r
+                          end: node.children[node.children.length - 1].loc.end,\r
+                          source: ''\r
+                      }));\r
+                  }\r
+              }\r
+              const shouldBuildAsSlots = isComponent &&\r
+                  // Teleport is not a real component and has dedicated runtime handling\r
+                  vnodeTag !== TELEPORT &&\r
+                  // explained above.\r
+                  vnodeTag !== KEEP_ALIVE;\r
+              if (shouldBuildAsSlots) {\r
+                  const { slots, hasDynamicSlots } = buildSlots(node, context);\r
+                  vnodeChildren = slots;\r
+                  if (hasDynamicSlots) {\r
+                      patchFlag |= 1024 /* DYNAMIC_SLOTS */;\r
+                  }\r
+              }\r
+              else if (node.children.length === 1 && vnodeTag !== TELEPORT) {\r
+                  const child = node.children[0];\r
+                  const type = child.type;\r
+                  // check for dynamic text children\r
+                  const hasDynamicTextChild = type === 5 /* INTERPOLATION */ ||\r
+                      type === 8 /* COMPOUND_EXPRESSION */;\r
+                  if (hasDynamicTextChild &&\r
+                      getConstantType(child, context) === 0 /* NOT_CONSTANT */) {\r
+                      patchFlag |= 1 /* TEXT */;\r
+                  }\r
+                  // pass directly if the only child is a text node\r
+                  // (plain / interpolation / expression)\r
+                  if (hasDynamicTextChild || type === 2 /* TEXT */) {\r
+                      vnodeChildren = child;\r
+                  }\r
+                  else {\r
+                      vnodeChildren = node.children;\r
+                  }\r
+              }\r
+              else {\r
+                  vnodeChildren = node.children;\r
+              }\r
+          }\r
+          // patchFlag & dynamicPropNames\r
+          if (patchFlag !== 0) {\r
+              {\r
+                  if (patchFlag < 0) {\r
+                      // special flags (negative and mutually exclusive)\r
+                      vnodePatchFlag = patchFlag + ` /* ${PatchFlagNames[patchFlag]} */`;\r
+                  }\r
+                  else {\r
+                      // bitwise flags\r
+                      const flagNames = Object.keys(PatchFlagNames)\r
+                          .map(Number)\r
+                          .filter(n => n > 0 && patchFlag & n)\r
+                          .map(n => PatchFlagNames[n])\r
+                          .join(`, `);\r
+                      vnodePatchFlag = patchFlag + ` /* ${flagNames} */`;\r
+                  }\r
+              }\r
+              if (dynamicPropNames && dynamicPropNames.length) {\r
+                  vnodeDynamicProps = stringifyDynamicPropNames(dynamicPropNames);\r
+              }\r
+          }\r
+          node.codegenNode = createVNodeCall(context, vnodeTag, vnodeProps, vnodeChildren, vnodePatchFlag, vnodeDynamicProps, vnodeDirectives, !!shouldUseBlock, false /* disableTracking */, isComponent, node.loc);\r
+      };\r
+  };\r
+  function resolveComponentType(node, context, ssr = false) {\r
+      let { tag } = node;\r
+      // 1. dynamic component\r
+      const isExplicitDynamic = isComponentTag(tag);\r
+      const isProp = findProp(node, 'is');\r
+      if (isProp) {\r
+          if (isExplicitDynamic ||\r
+              (false )) {\r
+              const exp = isProp.type === 6 /* ATTRIBUTE */\r
+                  ? isProp.value && createSimpleExpression(isProp.value.content, true)\r
+                  : isProp.exp;\r
+              if (exp) {\r
+                  return createCallExpression(context.helper(RESOLVE_DYNAMIC_COMPONENT), [\r
+                      exp\r
+                  ]);\r
+              }\r
+          }\r
+          else if (isProp.type === 6 /* ATTRIBUTE */ &&\r
+              isProp.value.content.startsWith('vue:')) {\r
+              // <button is="vue:xxx">\r
+              // if not <component>, only is value that starts with "vue:" will be\r
+              // treated as component by the parse phase and reach here, unless it's\r
+              // compat mode where all is values are considered components\r
+              tag = isProp.value.content.slice(4);\r
+          }\r
+      }\r
+      // 1.5 v-is (TODO: Deprecate)\r
+      const isDir = !isExplicitDynamic && findDir(node, 'is');\r
+      if (isDir && isDir.exp) {\r
+          return createCallExpression(context.helper(RESOLVE_DYNAMIC_COMPONENT), [\r
+              isDir.exp\r
+          ]);\r
+      }\r
+      // 2. built-in components (Teleport, Transition, KeepAlive, Suspense...)\r
+      const builtIn = isCoreComponent(tag) || context.isBuiltInComponent(tag);\r
+      if (builtIn) {\r
+          // built-ins are simply fallthroughs / have special handling during ssr\r
+          // so we don't need to import their runtime equivalents\r
+          if (!ssr)\r
+              context.helper(builtIn);\r
+          return builtIn;\r
+      }\r
+      // 5. user component (resolve)\r
+      context.helper(RESOLVE_COMPONENT);\r
+      context.components.add(tag);\r
+      return toValidAssetId(tag, `component`);\r
+  }\r
+  function buildProps(node, context, props = node.props, ssr = false) {\r
+      const { tag, loc: elementLoc } = node;\r
+      const isComponent = node.tagType === 1 /* COMPONENT */;\r
+      let properties = [];\r
+      const mergeArgs = [];\r
+      const runtimeDirectives = [];\r
+      // patchFlag analysis\r
+      let patchFlag = 0;\r
+      let hasRef = false;\r
+      let hasClassBinding = false;\r
+      let hasStyleBinding = false;\r
+      let hasHydrationEventBinding = false;\r
+      let hasDynamicKeys = false;\r
+      let hasVnodeHook = false;\r
+      const dynamicPropNames = [];\r
+      const analyzePatchFlag = ({ key, value }) => {\r
+          if (isStaticExp(key)) {\r
+              const name = key.content;\r
+              const isEventHandler = isOn(name);\r
+              if (!isComponent &&\r
+                  isEventHandler &&\r
+                  // omit the flag for click handlers because hydration gives click\r
+                  // dedicated fast path.\r
+                  name.toLowerCase() !== 'onclick' &&\r
+                  // omit v-model handlers\r
+                  name !== 'onUpdate:modelValue' &&\r
+                  // omit onVnodeXXX hooks\r
+                  !isReservedProp(name)) {\r
+                  hasHydrationEventBinding = true;\r
+              }\r
+              if (isEventHandler && isReservedProp(name)) {\r
+                  hasVnodeHook = true;\r
+              }\r
+              if (value.type === 20 /* JS_CACHE_EXPRESSION */ ||\r
+                  ((value.type === 4 /* SIMPLE_EXPRESSION */ ||\r
+                      value.type === 8 /* COMPOUND_EXPRESSION */) &&\r
+                      getConstantType(value, context) > 0)) {\r
+                  // skip if the prop is a cached handler or has constant value\r
+                  return;\r
+              }\r
+              if (name === 'ref') {\r
+                  hasRef = true;\r
+              }\r
+              else if (name === 'class') {\r
+                  hasClassBinding = true;\r
+              }\r
+              else if (name === 'style') {\r
+                  hasStyleBinding = true;\r
+              }\r
+              else if (name !== 'key' && !dynamicPropNames.includes(name)) {\r
+                  dynamicPropNames.push(name);\r
+              }\r
+              // treat the dynamic class and style binding of the component as dynamic props\r
+              if (isComponent &&\r
+                  (name === 'class' || name === 'style') &&\r
+                  !dynamicPropNames.includes(name)) {\r
+                  dynamicPropNames.push(name);\r
+              }\r
+          }\r
+          else {\r
+              hasDynamicKeys = true;\r
+          }\r
+      };\r
+      for (let i = 0; i < props.length; i++) {\r
+          // static attribute\r
+          const prop = props[i];\r
+          if (prop.type === 6 /* ATTRIBUTE */) {\r
+              const { loc, name, value } = prop;\r
+              let valueNode = createSimpleExpression(value ? value.content : '', true, value ? value.loc : loc);\r
+              if (name === 'ref') {\r
+                  hasRef = true;\r
+              }\r
+              // skip is on <component>, or is="vue:xxx"\r
+              if (name === 'is' &&\r
+                  (isComponentTag(tag) ||\r
+                      (value && value.content.startsWith('vue:')) ||\r
+                      (false ))) {\r
+                  continue;\r
+              }\r
+              properties.push(createObjectProperty(createSimpleExpression(name, true, getInnerRange(loc, 0, name.length)), valueNode));\r
+          }\r
+          else {\r
+              // directives\r
+              const { name, arg, exp, loc } = prop;\r
+              const isVBind = name === 'bind';\r
+              const isVOn = name === 'on';\r
+              // skip v-slot - it is handled by its dedicated transform.\r
+              if (name === 'slot') {\r
+                  if (!isComponent) {\r
+                      context.onError(createCompilerError(40 /* X_V_SLOT_MISPLACED */, loc));\r
+                  }\r
+                  continue;\r
+              }\r
+              // skip v-once/v-memo - they are handled by dedicated transforms.\r
+              if (name === 'once' || name === 'memo') {\r
+                  continue;\r
+              }\r
+              // skip v-is and :is on <component>\r
+              if (name === 'is' ||\r
+                  (isVBind &&\r
+                      isBindKey(arg, 'is') &&\r
+                      (isComponentTag(tag) ||\r
+                          (false )))) {\r
+                  continue;\r
+              }\r
+              // skip v-on in SSR compilation\r
+              if (isVOn && ssr) {\r
+                  continue;\r
+              }\r
+              // special case for v-bind and v-on with no argument\r
+              if (!arg && (isVBind || isVOn)) {\r
+                  hasDynamicKeys = true;\r
+                  if (exp) {\r
+                      if (properties.length) {\r
+                          mergeArgs.push(createObjectExpression(dedupeProperties(properties), elementLoc));\r
+                          properties = [];\r
+                      }\r
+                      if (isVBind) {\r
+                          mergeArgs.push(exp);\r
+                      }\r
+                      else {\r
+                          // v-on="obj" -> toHandlers(obj)\r
+                          mergeArgs.push({\r
+                              type: 14 /* JS_CALL_EXPRESSION */,\r
+                              loc,\r
+                              callee: context.helper(TO_HANDLERS),\r
+                              arguments: [exp]\r
+                          });\r
+                      }\r
+                  }\r
+                  else {\r
+                      context.onError(createCompilerError(isVBind\r
+                          ? 34 /* X_V_BIND_NO_EXPRESSION */\r
+                          : 35 /* X_V_ON_NO_EXPRESSION */, loc));\r
+                  }\r
+                  continue;\r
+              }\r
+              const directiveTransform = context.directiveTransforms[name];\r
+              if (directiveTransform) {\r
+                  // has built-in directive transform.\r
+                  const { props, needRuntime } = directiveTransform(prop, node, context);\r
+                  !ssr && props.forEach(analyzePatchFlag);\r
+                  properties.push(...props);\r
+                  if (needRuntime) {\r
+                      runtimeDirectives.push(prop);\r
+                      if (isSymbol(needRuntime)) {\r
+                          directiveImportMap.set(prop, needRuntime);\r
+                      }\r
+                  }\r
+              }\r
+              else {\r
+                  // no built-in transform, this is a user custom directive.\r
+                  runtimeDirectives.push(prop);\r
+              }\r
+          }\r
+      }\r
+      let propsExpression = undefined;\r
+      // has v-bind="object" or v-on="object", wrap with mergeProps\r
+      if (mergeArgs.length) {\r
+          if (properties.length) {\r
+              mergeArgs.push(createObjectExpression(dedupeProperties(properties), elementLoc));\r
+          }\r
+          if (mergeArgs.length > 1) {\r
+              propsExpression = createCallExpression(context.helper(MERGE_PROPS), mergeArgs, elementLoc);\r
+          }\r
+          else {\r
+              // single v-bind with nothing else - no need for a mergeProps call\r
+              propsExpression = mergeArgs[0];\r
+          }\r
+      }\r
+      else if (properties.length) {\r
+          propsExpression = createObjectExpression(dedupeProperties(properties), elementLoc);\r
+      }\r
+      // patchFlag analysis\r
+      if (hasDynamicKeys) {\r
+          patchFlag |= 16 /* FULL_PROPS */;\r
+      }\r
+      else {\r
+          if (hasClassBinding && !isComponent) {\r
+              patchFlag |= 2 /* CLASS */;\r
+          }\r
+          if (hasStyleBinding && !isComponent) {\r
+              patchFlag |= 4 /* STYLE */;\r
+          }\r
+          if (dynamicPropNames.length) {\r
+              patchFlag |= 8 /* PROPS */;\r
+          }\r
+          if (hasHydrationEventBinding) {\r
+              patchFlag |= 32 /* HYDRATE_EVENTS */;\r
+          }\r
+      }\r
+      if ((patchFlag === 0 || patchFlag === 32 /* HYDRATE_EVENTS */) &&\r
+          (hasRef || hasVnodeHook || runtimeDirectives.length > 0)) {\r
+          patchFlag |= 512 /* NEED_PATCH */;\r
+      }\r
+      // pre-normalize props, SSR is skipped for now\r
+      if (!context.inSSR && propsExpression) {\r
+          switch (propsExpression.type) {\r
+              case 15 /* JS_OBJECT_EXPRESSION */:\r
+                  // means that there is no v-bind,\r
+                  // but still need to deal with dynamic key binding\r
+                  let classKeyIndex = -1;\r
+                  let styleKeyIndex = -1;\r
+                  let hasDynamicKey = false;\r
+                  for (let i = 0; i < propsExpression.properties.length; i++) {\r
+                      const key = propsExpression.properties[i].key;\r
+                      if (isStaticExp(key)) {\r
+                          if (key.content === 'class') {\r
+                              classKeyIndex = i;\r
+                          }\r
+                          else if (key.content === 'style') {\r
+                              styleKeyIndex = i;\r
+                          }\r
+                      }\r
+                      else if (!key.isHandlerKey) {\r
+                          hasDynamicKey = true;\r
+                      }\r
+                  }\r
+                  const classProp = propsExpression.properties[classKeyIndex];\r
+                  const styleProp = propsExpression.properties[styleKeyIndex];\r
+                  // no dynamic key\r
+                  if (!hasDynamicKey) {\r
+                      if (classProp && !isStaticExp(classProp.value)) {\r
+                          classProp.value = createCallExpression(context.helper(NORMALIZE_CLASS), [classProp.value]);\r
+                      }\r
+                      if (styleProp &&\r
+                          !isStaticExp(styleProp.value) &&\r
+                          // the static style is compiled into an object,\r
+                          // so use `hasStyleBinding` to ensure that it is a dynamic style binding\r
+                          (hasStyleBinding ||\r
+                              // v-bind:style and style both exist,\r
+                              // v-bind:style with static literal object\r
+                              styleProp.value.type === 17 /* JS_ARRAY_EXPRESSION */)) {\r
+                          styleProp.value = createCallExpression(context.helper(NORMALIZE_STYLE), [styleProp.value]);\r
+                      }\r
+                  }\r
+                  else {\r
+                      // dynamic key binding, wrap with `normalizeProps`\r
+                      propsExpression = createCallExpression(context.helper(NORMALIZE_PROPS), [propsExpression]);\r
+                  }\r
+                  break;\r
+              case 14 /* JS_CALL_EXPRESSION */:\r
+                  // mergeProps call, do nothing\r
+                  break;\r
+              default:\r
+                  // single v-bind\r
+                  propsExpression = createCallExpression(context.helper(NORMALIZE_PROPS), [\r
+                      createCallExpression(context.helper(GUARD_REACTIVE_PROPS), [\r
+                          propsExpression\r
+                      ])\r
+                  ]);\r
+                  break;\r
+          }\r
+      }\r
+      return {\r
+          props: propsExpression,\r
+          directives: runtimeDirectives,\r
+          patchFlag,\r
+          dynamicPropNames\r
+      };\r
+  }\r
+  // Dedupe props in an object literal.\r
+  // Literal duplicated attributes would have been warned during the parse phase,\r
+  // however, it's possible to encounter duplicated `onXXX` handlers with different\r
+  // modifiers. We also need to merge static and dynamic class / style attributes.\r
+  // - onXXX handlers / style: merge into array\r
+  // - class: merge into single expression with concatenation\r
+  function dedupeProperties(properties) {\r
+      const knownProps = new Map();\r
+      const deduped = [];\r
+      for (let i = 0; i < properties.length; i++) {\r
+          const prop = properties[i];\r
+          // dynamic keys are always allowed\r
+          if (prop.key.type === 8 /* COMPOUND_EXPRESSION */ || !prop.key.isStatic) {\r
+              deduped.push(prop);\r
+              continue;\r
+          }\r
+          const name = prop.key.content;\r
+          const existing = knownProps.get(name);\r
+          if (existing) {\r
+              if (name === 'style' || name === 'class' || name.startsWith('on')) {\r
+                  mergeAsArray$1(existing, prop);\r
+              }\r
+              // unexpected duplicate, should have emitted error during parse\r
+          }\r
+          else {\r
+              knownProps.set(name, prop);\r
+              deduped.push(prop);\r
+          }\r
+      }\r
+      return deduped;\r
+  }\r
+  function mergeAsArray$1(existing, incoming) {\r
+      if (existing.value.type === 17 /* JS_ARRAY_EXPRESSION */) {\r
+          existing.value.elements.push(incoming.value);\r
+      }\r
+      else {\r
+          existing.value = createArrayExpression([existing.value, incoming.value], existing.loc);\r
+      }\r
+  }\r
+  function buildDirectiveArgs(dir, context) {\r
+      const dirArgs = [];\r
+      const runtime = directiveImportMap.get(dir);\r
+      if (runtime) {\r
+          // built-in directive with runtime\r
+          dirArgs.push(context.helperString(runtime));\r
+      }\r
+      else {\r
+          {\r
+              // inject statement for resolving directive\r
+              context.helper(RESOLVE_DIRECTIVE);\r
+              context.directives.add(dir.name);\r
+              dirArgs.push(toValidAssetId(dir.name, `directive`));\r
+          }\r
+      }\r
+      const { loc } = dir;\r
+      if (dir.exp)\r
+          dirArgs.push(dir.exp);\r
+      if (dir.arg) {\r
+          if (!dir.exp) {\r
+              dirArgs.push(`void 0`);\r
+          }\r
+          dirArgs.push(dir.arg);\r
+      }\r
+      if (Object.keys(dir.modifiers).length) {\r
+          if (!dir.arg) {\r
+              if (!dir.exp) {\r
+                  dirArgs.push(`void 0`);\r
+              }\r
+              dirArgs.push(`void 0`);\r
+          }\r
+          const trueExpression = createSimpleExpression(`true`, false, loc);\r
+          dirArgs.push(createObjectExpression(dir.modifiers.map(modifier => createObjectProperty(modifier, trueExpression)), loc));\r
+      }\r
+      return createArrayExpression(dirArgs, dir.loc);\r
+  }\r
+  function stringifyDynamicPropNames(props) {\r
+      let propsNamesString = `[`;\r
+      for (let i = 0, l = props.length; i < l; i++) {\r
+          propsNamesString += JSON.stringify(props[i]);\r
+          if (i < l - 1)\r
+              propsNamesString += ', ';\r
+      }\r
+      return propsNamesString + `]`;\r
+  }\r
+  function isComponentTag(tag) {\r
+      return tag[0].toLowerCase() + tag.slice(1) === 'component';\r
+  }
+
+  const transformSlotOutlet = (node, context) => {\r
+      if (isSlotOutlet(node)) {\r
+          const { children, loc } = node;\r
+          const { slotName, slotProps } = processSlotOutlet(node, context);\r
+          const slotArgs = [\r
+              context.prefixIdentifiers ? `_ctx.$slots` : `$slots`,\r
+              slotName\r
+          ];\r
+          if (slotProps) {\r
+              slotArgs.push(slotProps);\r
+          }\r
+          if (children.length) {\r
+              if (!slotProps) {\r
+                  slotArgs.push(`{}`);\r
+              }\r
+              slotArgs.push(createFunctionExpression([], children, false, false, loc));\r
+          }\r
+          if (context.scopeId && !context.slotted) {\r
+              if (!slotProps) {\r
+                  slotArgs.push(`{}`);\r
+              }\r
+              if (!children.length) {\r
+                  slotArgs.push(`undefined`);\r
+              }\r
+              slotArgs.push(`true`);\r
+          }\r
+          node.codegenNode = createCallExpression(context.helper(RENDER_SLOT), slotArgs, loc);\r
+      }\r
+  };\r
+  function processSlotOutlet(node, context) {\r
+      let slotName = `"default"`;\r
+      let slotProps = undefined;\r
+      const nonNameProps = [];\r
+      for (let i = 0; i < node.props.length; i++) {\r
+          const p = node.props[i];\r
+          if (p.type === 6 /* ATTRIBUTE */) {\r
+              if (p.value) {\r
+                  if (p.name === 'name') {\r
+                      slotName = JSON.stringify(p.value.content);\r
+                  }\r
+                  else {\r
+                      p.name = camelize(p.name);\r
+                      nonNameProps.push(p);\r
+                  }\r
+              }\r
+          }\r
+          else {\r
+              if (p.name === 'bind' && isBindKey(p.arg, 'name')) {\r
+                  if (p.exp)\r
+                      slotName = p.exp;\r
+              }\r
+              else {\r
+                  if (p.name === 'bind' && p.arg && isStaticExp(p.arg)) {\r
+                      p.arg.content = camelize(p.arg.content);\r
+                  }\r
+                  nonNameProps.push(p);\r
+              }\r
+          }\r
+      }\r
+      if (nonNameProps.length > 0) {\r
+          const { props, directives } = buildProps(node, context, nonNameProps);\r
+          slotProps = props;\r
+          if (directives.length) {\r
+              context.onError(createCompilerError(36 /* X_V_SLOT_UNEXPECTED_DIRECTIVE_ON_SLOT_OUTLET */, directives[0].loc));\r
+          }\r
+      }\r
+      return {\r
+          slotName,\r
+          slotProps\r
+      };\r
+  }
+
+  const fnExpRE = /^\s*([\w$_]+|\([^)]*?\))\s*=>|^\s*function(?:\s+[\w$]+)?\s*\(/;\r
+  const transformOn = (dir, node, context, augmentor) => {\r
+      const { loc, modifiers, arg } = dir;\r
+      if (!dir.exp && !modifiers.length) {\r
+          context.onError(createCompilerError(35 /* X_V_ON_NO_EXPRESSION */, loc));\r
+      }\r
+      let eventName;\r
+      if (arg.type === 4 /* SIMPLE_EXPRESSION */) {\r
+          if (arg.isStatic) {\r
+              const rawName = arg.content;\r
+              // for all event listeners, auto convert it to camelCase. See issue #2249\r
+              eventName = createSimpleExpression(toHandlerKey(camelize(rawName)), true, arg.loc);\r
+          }\r
+          else {\r
+              // #2388\r
+              eventName = createCompoundExpression([\r
+                  `${context.helperString(TO_HANDLER_KEY)}(`,\r
+                  arg,\r
+                  `)`\r
+              ]);\r
+          }\r
+      }\r
+      else {\r
+          // already a compound expression.\r
+          eventName = arg;\r
+          eventName.children.unshift(`${context.helperString(TO_HANDLER_KEY)}(`);\r
+          eventName.children.push(`)`);\r
+      }\r
+      // handler processing\r
+      let exp = dir.exp;\r
+      if (exp && !exp.content.trim()) {\r
+          exp = undefined;\r
+      }\r
+      let shouldCache = context.cacheHandlers && !exp && !context.inVOnce;\r
+      if (exp) {\r
+          const isMemberExp = isMemberExpression(exp.content);\r
+          const isInlineStatement = !(isMemberExp || fnExpRE.test(exp.content));\r
+          const hasMultipleStatements = exp.content.includes(`;`);\r
+          {\r
+              validateBrowserExpression(exp, context, false, hasMultipleStatements);\r
+          }\r
+          if (isInlineStatement || (shouldCache && isMemberExp)) {\r
+              // wrap inline statement in a function expression\r
+              exp = createCompoundExpression([\r
+                  `${isInlineStatement\r
+                    ? `$event`\r
+                    : `${``}(...args)`} => ${hasMultipleStatements ? `{` : `(`}`,\r
+                  exp,\r
+                  hasMultipleStatements ? `}` : `)`\r
+              ]);\r
+          }\r
+      }\r
+      let ret = {\r
+          props: [\r
+              createObjectProperty(eventName, exp || createSimpleExpression(`() => {}`, false, loc))\r
+          ]\r
+      };\r
+      // apply extended compiler augmentor\r
+      if (augmentor) {\r
+          ret = augmentor(ret);\r
+      }\r
+      if (shouldCache) {\r
+          // cache handlers so that it's always the same handler being passed down.\r
+          // this avoids unnecessary re-renders when users use inline handlers on\r
+          // components.\r
+          ret.props[0].value = context.cache(ret.props[0].value);\r
+      }\r
+      // mark the key as handler for props normalization check\r
+      ret.props.forEach(p => (p.key.isHandlerKey = true));\r
+      return ret;\r
+  };
+
+  // v-bind without arg is handled directly in ./transformElements.ts due to it affecting\r
+  // codegen for the entire props object. This transform here is only for v-bind\r
+  // *with* args.\r
+  const transformBind = (dir, _node, context) => {\r
+      const { exp, modifiers, loc } = dir;\r
+      const arg = dir.arg;\r
+      if (arg.type !== 4 /* SIMPLE_EXPRESSION */) {\r
+          arg.children.unshift(`(`);\r
+          arg.children.push(`) || ""`);\r
+      }\r
+      else if (!arg.isStatic) {\r
+          arg.content = `${arg.content} || ""`;\r
+      }\r
+      // .sync is replaced by v-model:arg\r
+      if (modifiers.includes('camel')) {\r
+          if (arg.type === 4 /* SIMPLE_EXPRESSION */) {\r
+              if (arg.isStatic) {\r
+                  arg.content = camelize(arg.content);\r
+              }\r
+              else {\r
+                  arg.content = `${context.helperString(CAMELIZE)}(${arg.content})`;\r
+              }\r
+          }\r
+          else {\r
+              arg.children.unshift(`${context.helperString(CAMELIZE)}(`);\r
+              arg.children.push(`)`);\r
+          }\r
+      }\r
+      if (!context.inSSR) {\r
+          if (modifiers.includes('prop')) {\r
+              injectPrefix(arg, '.');\r
+          }\r
+          if (modifiers.includes('attr')) {\r
+              injectPrefix(arg, '^');\r
+          }\r
+      }\r
+      if (!exp ||\r
+          (exp.type === 4 /* SIMPLE_EXPRESSION */ && !exp.content.trim())) {\r
+          context.onError(createCompilerError(34 /* X_V_BIND_NO_EXPRESSION */, loc));\r
+          return {\r
+              props: [createObjectProperty(arg, createSimpleExpression('', true, loc))]\r
+          };\r
+      }\r
+      return {\r
+          props: [createObjectProperty(arg, exp)]\r
+      };\r
+  };\r
+  const injectPrefix = (arg, prefix) => {\r
+      if (arg.type === 4 /* SIMPLE_EXPRESSION */) {\r
+          if (arg.isStatic) {\r
+              arg.content = prefix + arg.content;\r
+          }\r
+          else {\r
+              arg.content = `\`${prefix}\${${arg.content}}\``;\r
+          }\r
+      }\r
+      else {\r
+          arg.children.unshift(`'${prefix}' + (`);\r
+          arg.children.push(`)`);\r
+      }\r
+  };
+
+  // Merge adjacent text nodes and expressions into a single expression\r
+  // e.g. <div>abc {{ d }} {{ e }}</div> should have a single expression node as child.\r
+  const transformText = (node, context) => {\r
+      if (node.type === 0 /* ROOT */ ||\r
+          node.type === 1 /* ELEMENT */ ||\r
+          node.type === 11 /* FOR */ ||\r
+          node.type === 10 /* IF_BRANCH */) {\r
+          // perform the transform on node exit so that all expressions have already\r
+          // been processed.\r
+          return () => {\r
+              const children = node.children;\r
+              let currentContainer = undefined;\r
+              let hasText = false;\r
+              for (let i = 0; i < children.length; i++) {\r
+                  const child = children[i];\r
+                  if (isText(child)) {\r
+                      hasText = true;\r
+                      for (let j = i + 1; j < children.length; j++) {\r
+                          const next = children[j];\r
+                          if (isText(next)) {\r
+                              if (!currentContainer) {\r
+                                  currentContainer = children[i] = {\r
+                                      type: 8 /* COMPOUND_EXPRESSION */,\r
+                                      loc: child.loc,\r
+                                      children: [child]\r
+                                  };\r
+                              }\r
+                              // merge adjacent text node into current\r
+                              currentContainer.children.push(` + `, next);\r
+                              children.splice(j, 1);\r
+                              j--;\r
+                          }\r
+                          else {\r
+                              currentContainer = undefined;\r
+                              break;\r
+                          }\r
+                      }\r
+                  }\r
+              }\r
+              if (!hasText ||\r
+                  // if this is a plain element with a single text child, leave it\r
+                  // as-is since the runtime has dedicated fast path for this by directly\r
+                  // setting textContent of the element.\r
+                  // for component root it's always normalized anyway.\r
+                  (children.length === 1 &&\r
+                      (node.type === 0 /* ROOT */ ||\r
+                          (node.type === 1 /* ELEMENT */ &&\r
+                              node.tagType === 0 /* ELEMENT */ &&\r
+                              // #3756\r
+                              // custom directives can potentially add DOM elements arbitrarily,\r
+                              // we need to avoid setting textContent of the element at runtime\r
+                              // to avoid accidentally overwriting the DOM elements added\r
+                              // by the user through custom directives.\r
+                              !node.props.find(p => p.type === 7 /* DIRECTIVE */ &&\r
+                                  !context.directiveTransforms[p.name]) &&\r
+                              // in compat mode, <template> tags with no special directives\r
+                              // will be rendered as a fragment so its children must be\r
+                              // converted into vnodes.\r
+                              !(false ))))) {\r
+                  return;\r
+              }\r
+              // pre-convert text nodes into createTextVNode(text) calls to avoid\r
+              // runtime normalization.\r
+              for (let i = 0; i < children.length; i++) {\r
+                  const child = children[i];\r
+                  if (isText(child) || child.type === 8 /* COMPOUND_EXPRESSION */) {\r
+                      const callArgs = [];\r
+                      // createTextVNode defaults to single whitespace, so if it is a\r
+                      // single space the code could be an empty call to save bytes.\r
+                      if (child.type !== 2 /* TEXT */ || child.content !== ' ') {\r
+                          callArgs.push(child);\r
+                      }\r
+                      // mark dynamic text with flag so it gets patched inside a block\r
+                      if (!context.ssr &&\r
+                          getConstantType(child, context) === 0 /* NOT_CONSTANT */) {\r
+                          callArgs.push(1 /* TEXT */ +\r
+                              (` /* ${PatchFlagNames[1 /* TEXT */]} */` ));\r
+                      }\r
+                      children[i] = {\r
+                          type: 12 /* TEXT_CALL */,\r
+                          content: child,\r
+                          loc: child.loc,\r
+                          codegenNode: createCallExpression(context.helper(CREATE_TEXT), callArgs)\r
+                      };\r
+                  }\r
+              }\r
+          };\r
+      }\r
+  };
+
+  const seen = new WeakSet();\r
+  const transformOnce = (node, context) => {\r
+      if (node.type === 1 /* ELEMENT */ && findDir(node, 'once', true)) {\r
+          if (seen.has(node) || context.inVOnce) {\r
+              return;\r
+          }\r
+          seen.add(node);\r
+          context.inVOnce = true;\r
+          context.helper(SET_BLOCK_TRACKING);\r
+          return () => {\r
+              context.inVOnce = false;\r
+              const cur = context.currentNode;\r
+              if (cur.codegenNode) {\r
+                  cur.codegenNode = context.cache(cur.codegenNode, true /* isVNode */);\r
+              }\r
+          };\r
+      }\r
+  };
+
+  const transformModel = (dir, node, context) => {\r
+      const { exp, arg } = dir;\r
+      if (!exp) {\r
+          context.onError(createCompilerError(41 /* X_V_MODEL_NO_EXPRESSION */, dir.loc));\r
+          return createTransformProps();\r
+      }\r
+      const rawExp = exp.loc.source;\r
+      const expString = exp.type === 4 /* SIMPLE_EXPRESSION */ ? exp.content : rawExp;\r
+      // im SFC <script setup> inline mode, the exp may have been transformed into\r
+      // _unref(exp)\r
+      context.bindingMetadata[rawExp];\r
+      const maybeRef = !true    /* SETUP_CONST */;\r
+      if (!expString.trim() || (!isMemberExpression(expString) && !maybeRef)) {\r
+          context.onError(createCompilerError(42 /* X_V_MODEL_MALFORMED_EXPRESSION */, exp.loc));\r
+          return createTransformProps();\r
+      }\r
+      const propName = arg ? arg : createSimpleExpression('modelValue', true);\r
+      const eventName = arg\r
+          ? isStaticExp(arg)\r
+              ? `onUpdate:${arg.content}`\r
+              : createCompoundExpression(['"onUpdate:" + ', arg])\r
+          : `onUpdate:modelValue`;\r
+      let assignmentExp;\r
+      const eventArg = context.isTS ? `($event: any)` : `$event`;\r
+      {\r
+          assignmentExp = createCompoundExpression([\r
+              `${eventArg} => (`,\r
+              exp,\r
+              ` = $event)`\r
+          ]);\r
+      }\r
+      const props = [\r
+          // modelValue: foo\r
+          createObjectProperty(propName, dir.exp),\r
+          // "onUpdate:modelValue": $event => (foo = $event)\r
+          createObjectProperty(eventName, assignmentExp)\r
+      ];\r
+      // modelModifiers: { foo: true, "bar-baz": true }\r
+      if (dir.modifiers.length && node.tagType === 1 /* COMPONENT */) {\r
+          const modifiers = dir.modifiers\r
+              .map(m => (isSimpleIdentifier(m) ? m : JSON.stringify(m)) + `: true`)\r
+              .join(`, `);\r
+          const modifiersKey = arg\r
+              ? isStaticExp(arg)\r
+                  ? `${arg.content}Modifiers`\r
+                  : createCompoundExpression([arg, ' + "Modifiers"'])\r
+              : `modelModifiers`;\r
+          props.push(createObjectProperty(modifiersKey, createSimpleExpression(`{ ${modifiers} }`, false, dir.loc, 2 /* CAN_HOIST */)));\r
+      }\r
+      return createTransformProps(props);\r
+  };\r
+  function createTransformProps(props = []) {\r
+      return { props };\r
+  }
+
+  const seen$1 = new WeakSet();\r
+  const transformMemo = (node, context) => {\r
+      if (node.type === 1 /* ELEMENT */) {\r
+          const dir = findDir(node, 'memo');\r
+          if (!dir || seen$1.has(node)) {\r
+              return;\r
+          }\r
+          seen$1.add(node);\r
+          return () => {\r
+              const codegenNode = node.codegenNode ||\r
+                  context.currentNode.codegenNode;\r
+              if (codegenNode && codegenNode.type === 13 /* VNODE_CALL */) {\r
+                  // non-component sub tree should be turned into a block\r
+                  if (node.tagType !== 1 /* COMPONENT */) {\r
+                      makeBlock(codegenNode, context);\r
+                  }\r
+                  node.codegenNode = createCallExpression(context.helper(WITH_MEMO), [\r
+                      dir.exp,\r
+                      createFunctionExpression(undefined, codegenNode),\r
+                      `_cache`,\r
+                      String(context.cached++)\r
+                  ]);\r
+              }\r
+          };\r
+      }\r
+  };
+
+  function getBaseTransformPreset(prefixIdentifiers) {\r
+      return [\r
+          [\r
+              transformOnce,\r
+              transformIf,\r
+              transformMemo,\r
+              transformFor,\r
+              ...([]),\r
+              ...([transformExpression]\r
+                      ),\r
+              transformSlotOutlet,\r
+              transformElement,\r
+              trackSlotScopes,\r
+              transformText\r
+          ],\r
+          {\r
+              on: transformOn,\r
+              bind: transformBind,\r
+              model: transformModel\r
+          }\r
+      ];\r
+  }\r
+  // we name it `baseCompile` so that higher order compilers like\r
+  // @vue/compiler-dom can export `compile` while re-exporting everything else.\r
+  function baseCompile(template, options = {}) {\r
+      const onError = options.onError || defaultOnError;\r
+      const isModuleMode = options.mode === 'module';\r
+      /* istanbul ignore if */\r
+      {\r
+          if (options.prefixIdentifiers === true) {\r
+              onError(createCompilerError(46 /* X_PREFIX_ID_NOT_SUPPORTED */));\r
+          }\r
+          else if (isModuleMode) {\r
+              onError(createCompilerError(47 /* X_MODULE_MODE_NOT_SUPPORTED */));\r
+          }\r
+      }\r
+      const prefixIdentifiers = !true ;\r
+      if (options.cacheHandlers) {\r
+          onError(createCompilerError(48 /* X_CACHE_HANDLER_NOT_SUPPORTED */));\r
+      }\r
+      if (options.scopeId && !isModuleMode) {\r
+          onError(createCompilerError(49 /* X_SCOPE_ID_NOT_SUPPORTED */));\r
+      }\r
+      const ast = isString(template) ? baseParse(template, options) : template;\r
+      const [nodeTransforms, directiveTransforms] = getBaseTransformPreset();\r
+      transform(ast, extend({}, options, {\r
+          prefixIdentifiers,\r
+          nodeTransforms: [\r
+              ...nodeTransforms,\r
+              ...(options.nodeTransforms || []) // user transforms\r
+          ],\r
+          directiveTransforms: extend({}, directiveTransforms, options.directiveTransforms || {} // user transforms\r
+          )\r
+      }));\r
+      return generate(ast, extend({}, options, {\r
+          prefixIdentifiers\r
+      }));\r
+  }
+
+  const noopDirectiveTransform = () => ({ props: [] });
+
+  const V_MODEL_RADIO = Symbol(`vModelRadio` );\r
+  const V_MODEL_CHECKBOX = Symbol(`vModelCheckbox` );\r
+  const V_MODEL_TEXT = Symbol(`vModelText` );\r
+  const V_MODEL_SELECT = Symbol(`vModelSelect` );\r
+  const V_MODEL_DYNAMIC = Symbol(`vModelDynamic` );\r
+  const V_ON_WITH_MODIFIERS = Symbol(`vOnModifiersGuard` );\r
+  const V_ON_WITH_KEYS = Symbol(`vOnKeysGuard` );\r
+  const V_SHOW = Symbol(`vShow` );\r
+  const TRANSITION$1 = Symbol(`Transition` );\r
+  const TRANSITION_GROUP = Symbol(`TransitionGroup` );\r
+  registerRuntimeHelpers({\r
+      [V_MODEL_RADIO]: `vModelRadio`,\r
+      [V_MODEL_CHECKBOX]: `vModelCheckbox`,\r
+      [V_MODEL_TEXT]: `vModelText`,\r
+      [V_MODEL_SELECT]: `vModelSelect`,\r
+      [V_MODEL_DYNAMIC]: `vModelDynamic`,\r
+      [V_ON_WITH_MODIFIERS]: `withModifiers`,\r
+      [V_ON_WITH_KEYS]: `withKeys`,\r
+      [V_SHOW]: `vShow`,\r
+      [TRANSITION$1]: `Transition`,\r
+      [TRANSITION_GROUP]: `TransitionGroup`\r
+  });
+
+  /* eslint-disable no-restricted-globals */\r
+  let decoder;\r
+  function decodeHtmlBrowser(raw, asAttr = false) {\r
+      if (!decoder) {\r
+          decoder = document.createElement('div');\r
+      }\r
+      if (asAttr) {\r
+          decoder.innerHTML = `<div foo="${raw.replace(/"/g, '&quot;')}">`;\r
+          return decoder.children[0].getAttribute('foo');\r
+      }\r
+      else {\r
+          decoder.innerHTML = raw;\r
+          return decoder.textContent;\r
+      }\r
+  }
+
+  const isRawTextContainer = /*#__PURE__*/ makeMap('style,iframe,script,noscript', true);\r
+  const parserOptions = {\r
+      isVoidTag,\r
+      isNativeTag: tag => isHTMLTag(tag) || isSVGTag(tag),\r
+      isPreTag: tag => tag === 'pre',\r
+      decodeEntities: decodeHtmlBrowser ,\r
+      isBuiltInComponent: (tag) => {\r
+          if (isBuiltInType(tag, `Transition`)) {\r
+              return TRANSITION$1;\r
+          }\r
+          else if (isBuiltInType(tag, `TransitionGroup`)) {\r
+              return TRANSITION_GROUP;\r
+          }\r
+      },\r
+      // https://html.spec.whatwg.org/multipage/parsing.html#tree-construction-dispatcher\r
+      getNamespace(tag, parent) {\r
+          let ns = parent ? parent.ns : 0 /* HTML */;\r
+          if (parent && ns === 2 /* MATH_ML */) {\r
+              if (parent.tag === 'annotation-xml') {\r
+                  if (tag === 'svg') {\r
+                      return 1 /* SVG */;\r
+                  }\r
+                  if (parent.props.some(a => a.type === 6 /* ATTRIBUTE */ &&\r
+                      a.name === 'encoding' &&\r
+                      a.value != null &&\r
+                      (a.value.content === 'text/html' ||\r
+                          a.value.content === 'application/xhtml+xml'))) {\r
+                      ns = 0 /* HTML */;\r
+                  }\r
+              }\r
+              else if (/^m(?:[ions]|text)$/.test(parent.tag) &&\r
+                  tag !== 'mglyph' &&\r
+                  tag !== 'malignmark') {\r
+                  ns = 0 /* HTML */;\r
+              }\r
+          }\r
+          else if (parent && ns === 1 /* SVG */) {\r
+              if (parent.tag === 'foreignObject' ||\r
+                  parent.tag === 'desc' ||\r
+                  parent.tag === 'title') {\r
+                  ns = 0 /* HTML */;\r
+              }\r
+          }\r
+          if (ns === 0 /* HTML */) {\r
+              if (tag === 'svg') {\r
+                  return 1 /* SVG */;\r
+              }\r
+              if (tag === 'math') {\r
+                  return 2 /* MATH_ML */;\r
+              }\r
+          }\r
+          return ns;\r
+      },\r
+      // https://html.spec.whatwg.org/multipage/parsing.html#parsing-html-fragments\r
+      getTextMode({ tag, ns }) {\r
+          if (ns === 0 /* HTML */) {\r
+              if (tag === 'textarea' || tag === 'title') {\r
+                  return 1 /* RCDATA */;\r
+              }\r
+              if (isRawTextContainer(tag)) {\r
+                  return 2 /* RAWTEXT */;\r
+              }\r
+          }\r
+          return 0 /* DATA */;\r
+      }\r
+  };
+
+  // Parse inline CSS strings for static style attributes into an object.\r
+  // This is a NodeTransform since it works on the static `style` attribute and\r
+  // converts it into a dynamic equivalent:\r
+  // style="color: red" -> :style='{ "color": "red" }'\r
+  // It is then processed by `transformElement` and included in the generated\r
+  // props.\r
+  const transformStyle = node => {\r
+      if (node.type === 1 /* ELEMENT */) {\r
+          node.props.forEach((p, i) => {\r
+              if (p.type === 6 /* ATTRIBUTE */ && p.name === 'style' && p.value) {\r
+                  // replace p with an expression node\r
+                  node.props[i] = {\r
+                      type: 7 /* DIRECTIVE */,\r
+                      name: `bind`,\r
+                      arg: createSimpleExpression(`style`, true, p.loc),\r
+                      exp: parseInlineCSS(p.value.content, p.loc),\r
+                      modifiers: [],\r
+                      loc: p.loc\r
+                  };\r
+              }\r
+          });\r
+      }\r
+  };\r
+  const parseInlineCSS = (cssText, loc) => {\r
+      const normalized = parseStringStyle(cssText);\r
+      return createSimpleExpression(JSON.stringify(normalized), false, loc, 3 /* CAN_STRINGIFY */);\r
+  };
+
+  function createDOMCompilerError(code, loc) {\r
+      return createCompilerError(code, loc, DOMErrorMessages );\r
+  }\r
+  const DOMErrorMessages = {\r
+      [50 /* X_V_HTML_NO_EXPRESSION */]: `v-html is missing expression.`,\r
+      [51 /* X_V_HTML_WITH_CHILDREN */]: `v-html will override element children.`,\r
+      [52 /* X_V_TEXT_NO_EXPRESSION */]: `v-text is missing expression.`,\r
+      [53 /* X_V_TEXT_WITH_CHILDREN */]: `v-text will override element children.`,\r
+      [54 /* X_V_MODEL_ON_INVALID_ELEMENT */]: `v-model can only be used on <input>, <textarea> and <select> elements.`,\r
+      [55 /* X_V_MODEL_ARG_ON_ELEMENT */]: `v-model argument is not supported on plain elements.`,\r
+      [56 /* X_V_MODEL_ON_FILE_INPUT_ELEMENT */]: `v-model cannot be used on file inputs since they are read-only. Use a v-on:change listener instead.`,\r
+      [57 /* X_V_MODEL_UNNECESSARY_VALUE */]: `Unnecessary value binding used alongside v-model. It will interfere with v-model's behavior.`,\r
+      [58 /* X_V_SHOW_NO_EXPRESSION */]: `v-show is missing expression.`,\r
+      [59 /* X_TRANSITION_INVALID_CHILDREN */]: `<Transition> expects exactly one child element or component.`,\r
+      [60 /* X_IGNORED_SIDE_EFFECT_TAG */]: `Tags with side effect (<script> and <style>) are ignored in client component templates.`\r
+  };
+
+  const transformVHtml = (dir, node, context) => {\r
+      const { exp, loc } = dir;\r
+      if (!exp) {\r
+          context.onError(createDOMCompilerError(50 /* X_V_HTML_NO_EXPRESSION */, loc));\r
+      }\r
+      if (node.children.length) {\r
+          context.onError(createDOMCompilerError(51 /* X_V_HTML_WITH_CHILDREN */, loc));\r
+          node.children.length = 0;\r
+      }\r
+      return {\r
+          props: [\r
+              createObjectProperty(createSimpleExpression(`innerHTML`, true, loc), exp || createSimpleExpression('', true))\r
+          ]\r
+      };\r
+  };
+
+  const transformVText = (dir, node, context) => {\r
+      const { exp, loc } = dir;\r
+      if (!exp) {\r
+          context.onError(createDOMCompilerError(52 /* X_V_TEXT_NO_EXPRESSION */, loc));\r
+      }\r
+      if (node.children.length) {\r
+          context.onError(createDOMCompilerError(53 /* X_V_TEXT_WITH_CHILDREN */, loc));\r
+          node.children.length = 0;\r
+      }\r
+      return {\r
+          props: [\r
+              createObjectProperty(createSimpleExpression(`textContent`, true), exp\r
+                  ? createCallExpression(context.helperString(TO_DISPLAY_STRING), [exp], loc)\r
+                  : createSimpleExpression('', true))\r
+          ]\r
+      };\r
+  };
+
+  const transformModel$1 = (dir, node, context) => {\r
+      const baseResult = transformModel(dir, node, context);\r
+      // base transform has errors OR component v-model (only need props)\r
+      if (!baseResult.props.length || node.tagType === 1 /* COMPONENT */) {\r
+          return baseResult;\r
+      }\r
+      if (dir.arg) {\r
+          context.onError(createDOMCompilerError(55 /* X_V_MODEL_ARG_ON_ELEMENT */, dir.arg.loc));\r
+      }\r
+      function checkDuplicatedValue() {\r
+          const value = findProp(node, 'value');\r
+          if (value) {\r
+              context.onError(createDOMCompilerError(57 /* X_V_MODEL_UNNECESSARY_VALUE */, value.loc));\r
+          }\r
+      }\r
+      const { tag } = node;\r
+      const isCustomElement = context.isCustomElement(tag);\r
+      if (tag === 'input' ||\r
+          tag === 'textarea' ||\r
+          tag === 'select' ||\r
+          isCustomElement) {\r
+          let directiveToUse = V_MODEL_TEXT;\r
+          let isInvalidType = false;\r
+          if (tag === 'input' || isCustomElement) {\r
+              const type = findProp(node, `type`);\r
+              if (type) {\r
+                  if (type.type === 7 /* DIRECTIVE */) {\r
+                      // :type="foo"\r
+                      directiveToUse = V_MODEL_DYNAMIC;\r
+                  }\r
+                  else if (type.value) {\r
+                      switch (type.value.content) {\r
+                          case 'radio':\r
+                              directiveToUse = V_MODEL_RADIO;\r
+                              break;\r
+                          case 'checkbox':\r
+                              directiveToUse = V_MODEL_CHECKBOX;\r
+                              break;\r
+                          case 'file':\r
+                              isInvalidType = true;\r
+                              context.onError(createDOMCompilerError(56 /* X_V_MODEL_ON_FILE_INPUT_ELEMENT */, dir.loc));\r
+                              break;\r
+                          default:\r
+                              // text type\r
+                              checkDuplicatedValue();\r
+                              break;\r
+                      }\r
+                  }\r
+              }\r
+              else if (hasDynamicKeyVBind(node)) {\r
+                  // element has bindings with dynamic keys, which can possibly contain\r
+                  // "type".\r
+                  directiveToUse = V_MODEL_DYNAMIC;\r
+              }\r
+              else {\r
+                  // text type\r
+                  checkDuplicatedValue();\r
+              }\r
+          }\r
+          else if (tag === 'select') {\r
+              directiveToUse = V_MODEL_SELECT;\r
+          }\r
+          else {\r
+              // textarea\r
+              checkDuplicatedValue();\r
+          }\r
+          // inject runtime directive\r
+          // by returning the helper symbol via needRuntime\r
+          // the import will replaced a resolveDirective call.\r
+          if (!isInvalidType) {\r
+              baseResult.needRuntime = context.helper(directiveToUse);\r
+          }\r
+      }\r
+      else {\r
+          context.onError(createDOMCompilerError(54 /* X_V_MODEL_ON_INVALID_ELEMENT */, dir.loc));\r
+      }\r
+      // native vmodel doesn't need the `modelValue` props since they are also\r
+      // passed to the runtime as `binding.value`. removing it reduces code size.\r
+      baseResult.props = baseResult.props.filter(p => !(p.key.type === 4 /* SIMPLE_EXPRESSION */ &&\r
+          p.key.content === 'modelValue'));\r
+      return baseResult;\r
+  };
+
+  const isEventOptionModifier = /*#__PURE__*/ makeMap(`passive,once,capture`);\r
+  const isNonKeyModifier = /*#__PURE__*/ makeMap(\r
+  // event propagation management\r
+`stop,prevent,self,`   +\r
+      // system modifiers + exact\r
+      `ctrl,shift,alt,meta,exact,` +\r
+      // mouse\r
+      `middle`);\r
+  // left & right could be mouse or key modifiers based on event type\r
+  const maybeKeyModifier = /*#__PURE__*/ makeMap('left,right');\r
+  const isKeyboardEvent = /*#__PURE__*/ makeMap(`onkeyup,onkeydown,onkeypress`, true);\r
+  const resolveModifiers = (key, modifiers, context, loc) => {\r
+      const keyModifiers = [];\r
+      const nonKeyModifiers = [];\r
+      const eventOptionModifiers = [];\r
+      for (let i = 0; i < modifiers.length; i++) {\r
+          const modifier = modifiers[i];\r
+          if (isEventOptionModifier(modifier)) {\r
+              // eventOptionModifiers: modifiers for addEventListener() options,\r
+              // e.g. .passive & .capture\r
+              eventOptionModifiers.push(modifier);\r
+          }\r
+          else {\r
+              // runtimeModifiers: modifiers that needs runtime guards\r
+              if (maybeKeyModifier(modifier)) {\r
+                  if (isStaticExp(key)) {\r
+                      if (isKeyboardEvent(key.content)) {\r
+                          keyModifiers.push(modifier);\r
+                      }\r
+                      else {\r
+                          nonKeyModifiers.push(modifier);\r
+                      }\r
+                  }\r
+                  else {\r
+                      keyModifiers.push(modifier);\r
+                      nonKeyModifiers.push(modifier);\r
+                  }\r
+              }\r
+              else {\r
+                  if (isNonKeyModifier(modifier)) {\r
+                      nonKeyModifiers.push(modifier);\r
+                  }\r
+                  else {\r
+                      keyModifiers.push(modifier);\r
+                  }\r
+              }\r
+          }\r
+      }\r
+      return {\r
+          keyModifiers,\r
+          nonKeyModifiers,\r
+          eventOptionModifiers\r
+      };\r
+  };\r
+  const transformClick = (key, event) => {\r
+      const isStaticClick = isStaticExp(key) && key.content.toLowerCase() === 'onclick';\r
+      return isStaticClick\r
+          ? createSimpleExpression(event, true)\r
+          : key.type !== 4 /* SIMPLE_EXPRESSION */\r
+              ? createCompoundExpression([\r
+                  `(`,\r
+                  key,\r
+                  `) === "onClick" ? "${event}" : (`,\r
+                  key,\r
+                  `)`\r
+              ])\r
+              : key;\r
+  };\r
+  const transformOn$1 = (dir, node, context) => {\r
+      return transformOn(dir, node, context, baseResult => {\r
+          const { modifiers } = dir;\r
+          if (!modifiers.length)\r
+              return baseResult;\r
+          let { key, value: handlerExp } = baseResult.props[0];\r
+          const { keyModifiers, nonKeyModifiers, eventOptionModifiers } = resolveModifiers(key, modifiers, context, dir.loc);\r
+          // normalize click.right and click.middle since they don't actually fire\r
+          if (nonKeyModifiers.includes('right')) {\r
+              key = transformClick(key, `onContextmenu`);\r
+          }\r
+          if (nonKeyModifiers.includes('middle')) {\r
+              key = transformClick(key, `onMouseup`);\r
+          }\r
+          if (nonKeyModifiers.length) {\r
+              handlerExp = createCallExpression(context.helper(V_ON_WITH_MODIFIERS), [\r
+                  handlerExp,\r
+                  JSON.stringify(nonKeyModifiers)\r
+              ]);\r
+          }\r
+          if (keyModifiers.length &&\r
+              // if event name is dynamic, always wrap with keys guard\r
+              (!isStaticExp(key) || isKeyboardEvent(key.content))) {\r
+              handlerExp = createCallExpression(context.helper(V_ON_WITH_KEYS), [\r
+                  handlerExp,\r
+                  JSON.stringify(keyModifiers)\r
+              ]);\r
+          }\r
+          if (eventOptionModifiers.length) {\r
+              const modifierPostfix = eventOptionModifiers.map(capitalize).join('');\r
+              key = isStaticExp(key)\r
+                  ? createSimpleExpression(`${key.content}${modifierPostfix}`, true)\r
+                  : createCompoundExpression([`(`, key, `) + "${modifierPostfix}"`]);\r
+          }\r
+          return {\r
+              props: [createObjectProperty(key, handlerExp)]\r
+          };\r
+      });\r
+  };
+
+  const transformShow = (dir, node, context) => {\r
+      const { exp, loc } = dir;\r
+      if (!exp) {\r
+          context.onError(createDOMCompilerError(58 /* X_V_SHOW_NO_EXPRESSION */, loc));\r
+      }\r
+      return {\r
+          props: [],\r
+          needRuntime: context.helper(V_SHOW)\r
+      };\r
+  };
+
+  const warnTransitionChildren = (node, context) => {\r
+      if (node.type === 1 /* ELEMENT */ &&\r
+          node.tagType === 1 /* COMPONENT */) {\r
+          const component = context.isBuiltInComponent(node.tag);\r
+          if (component === TRANSITION$1) {\r
+              return () => {\r
+                  if (node.children.length && hasMultipleChildren(node)) {\r
+                      context.onError(createDOMCompilerError(59 /* X_TRANSITION_INVALID_CHILDREN */, {\r
+                          start: node.children[0].loc.start,\r
+                          end: node.children[node.children.length - 1].loc.end,\r
+                          source: ''\r
+                      }));\r
+                  }\r
+              };\r
+          }\r
+      }\r
+  };\r
+  function hasMultipleChildren(node) {\r
+      // #1352 filter out potential comment nodes.\r
+      const children = (node.children = node.children.filter(c => c.type !== 3 /* COMMENT */));\r
+      const child = children[0];\r
+      return (children.length !== 1 ||\r
+          child.type === 11 /* FOR */ ||\r
+          (child.type === 9 /* IF */ && child.branches.some(hasMultipleChildren)));\r
+  }
+
+  const ignoreSideEffectTags = (node, context) => {\r
+      if (node.type === 1 /* ELEMENT */ &&\r
+          node.tagType === 0 /* ELEMENT */ &&\r
+          (node.tag === 'script' || node.tag === 'style')) {\r
+          context.onError(createDOMCompilerError(60 /* X_IGNORED_SIDE_EFFECT_TAG */, node.loc));\r
+          context.removeNode();\r
+      }\r
+  };
+
+  const DOMNodeTransforms = [\r
+      transformStyle,\r
+      ...([warnTransitionChildren] )\r
+  ];\r
+  const DOMDirectiveTransforms = {\r
+      cloak: noopDirectiveTransform,\r
+      html: transformVHtml,\r
+      text: transformVText,\r
+      model: transformModel$1,\r
+      on: transformOn$1,\r
+      show: transformShow\r
+  };\r
+  function compile$1(template, options = {}) {\r
+      return baseCompile(template, extend({}, parserOptions, options, {\r
+          nodeTransforms: [\r
+              // ignore <script> and <tag>\r
+              // this is not put inside DOMNodeTransforms because that list is used\r
+              // by compiler-ssr to generate vnode fallback branches\r
+              ignoreSideEffectTags,\r
+              ...DOMNodeTransforms,\r
+              ...(options.nodeTransforms || [])\r
+          ],\r
+          directiveTransforms: extend({}, DOMDirectiveTransforms, options.directiveTransforms || {}),\r
+          transformHoist: null \r
+      }));\r
+  }
+
+  // This entry is the "full-build" that includes both the runtime\r
+  {\r
+      initDev();\r
+  }\r
+  const compileCache = Object.create(null);\r
+  function compileToFunction(template, options) {\r
+      if (!isString(template)) {\r
+          if (template.nodeType) {\r
+              template = template.innerHTML;\r
+          }\r
+          else {\r
+              warn$1(`invalid template option: `, template);\r
+              return NOOP;\r
+          }\r
+      }\r
+      const key = template;\r
+      const cached = compileCache[key];\r
+      if (cached) {\r
+          return cached;\r
+      }\r
+      if (template[0] === '#') {\r
+          const el = document.querySelector(template);\r
+          if (!el) {\r
+              warn$1(`Template element not found or is empty: ${template}`);\r
+          }\r
+          // __UNSAFE__\r
+          // Reason: potential execution of JS expressions in in-DOM template.\r
+          // The user must make sure the in-DOM template is trusted. If it's rendered\r
+          // by the server, the template should not contain any user data.\r
+          template = el ? el.innerHTML : ``;\r
+      }\r
+      const { code } = compile$1(template, extend({\r
+          hoistStatic: true,\r
+          onError: onError ,\r
+          onWarn: e => onError(e, true) \r
+      }, options));\r
+      function onError(err, asWarning = false) {\r
+          const message = asWarning\r
+              ? err.message\r
+              : `Template compilation error: ${err.message}`;\r
+          const codeFrame = err.loc &&\r
+              generateCodeFrame(template, err.loc.start.offset, err.loc.end.offset);\r
+          warn$1(codeFrame ? `${message}\n${codeFrame}` : message);\r
+      }\r
+      // The wildcard import results in a huge object with every export\r
+      // with keys that cannot be mangled, and can be quite heavy size-wise.\r
+      // In the global build we know `Vue` is available globally so we can avoid\r
+      // the wildcard object.\r
+      const render = (new Function(code)() );\r
+      render._rc = true;\r
+      return (compileCache[key] = render);\r
+  }\r
+  registerRuntimeCompiler(compileToFunction);
+
+  exports.BaseTransition = BaseTransition;
+  exports.Comment = Comment;
+  exports.EffectScope = EffectScope;
+  exports.Fragment = Fragment;
+  exports.KeepAlive = KeepAlive;
+  exports.ReactiveEffect = ReactiveEffect;
+  exports.Static = Static;
+  exports.Suspense = Suspense;
+  exports.Teleport = Teleport;
+  exports.Text = Text;
+  exports.Transition = Transition;
+  exports.TransitionGroup = TransitionGroup;
+  exports.VueElement = VueElement;
+  exports.callWithAsyncErrorHandling = callWithAsyncErrorHandling;
+  exports.callWithErrorHandling = callWithErrorHandling;
+  exports.camelize = camelize;
+  exports.capitalize = capitalize;
+  exports.cloneVNode = cloneVNode;
+  exports.compatUtils = compatUtils;
+  exports.compile = compileToFunction;
+  exports.computed = computed;
+  exports.createApp = createApp;
+  exports.createBlock = createBlock;
+  exports.createCommentVNode = createCommentVNode;
+  exports.createElementBlock = createElementBlock;
+  exports.createElementVNode = createBaseVNode;
+  exports.createHydrationRenderer = createHydrationRenderer;
+  exports.createRenderer = createRenderer;
+  exports.createSSRApp = createSSRApp;
+  exports.createSlots = createSlots;
+  exports.createStaticVNode = createStaticVNode;
+  exports.createTextVNode = createTextVNode;
+  exports.createVNode = createVNode;
+  exports.customRef = customRef;
+  exports.defineAsyncComponent = defineAsyncComponent;
+  exports.defineComponent = defineComponent;
+  exports.defineCustomElement = defineCustomElement;
+  exports.defineEmits = defineEmits;
+  exports.defineExpose = defineExpose;
+  exports.defineProps = defineProps;
+  exports.defineSSRCustomElement = defineSSRCustomElement;
+  exports.effect = effect;
+  exports.effectScope = effectScope;
+  exports.getCurrentInstance = getCurrentInstance;
+  exports.getCurrentScope = getCurrentScope;
+  exports.getTransitionRawChildren = getTransitionRawChildren;
+  exports.guardReactiveProps = guardReactiveProps;
+  exports.h = h;
+  exports.handleError = handleError;
+  exports.hydrate = hydrate;
+  exports.initCustomFormatter = initCustomFormatter;
+  exports.inject = inject;
+  exports.isMemoSame = isMemoSame;
+  exports.isProxy = isProxy;
+  exports.isReactive = isReactive;
+  exports.isReadonly = isReadonly;
+  exports.isRef = isRef;
+  exports.isRuntimeOnly = isRuntimeOnly;
+  exports.isVNode = isVNode;
+  exports.markRaw = markRaw;
+  exports.mergeDefaults = mergeDefaults;
+  exports.mergeProps = mergeProps;
+  exports.nextTick = nextTick;
+  exports.normalizeClass = normalizeClass;
+  exports.normalizeProps = normalizeProps;
+  exports.normalizeStyle = normalizeStyle;
+  exports.onActivated = onActivated;
+  exports.onBeforeMount = onBeforeMount;
+  exports.onBeforeUnmount = onBeforeUnmount;
+  exports.onBeforeUpdate = onBeforeUpdate;
+  exports.onDeactivated = onDeactivated;
+  exports.onErrorCaptured = onErrorCaptured;
+  exports.onMounted = onMounted;
+  exports.onRenderTracked = onRenderTracked;
+  exports.onRenderTriggered = onRenderTriggered;
+  exports.onScopeDispose = onScopeDispose;
+  exports.onServerPrefetch = onServerPrefetch;
+  exports.onUnmounted = onUnmounted;
+  exports.onUpdated = onUpdated;
+  exports.openBlock = openBlock;
+  exports.popScopeId = popScopeId;
+  exports.provide = provide;
+  exports.proxyRefs = proxyRefs;
+  exports.pushScopeId = pushScopeId;
+  exports.queuePostFlushCb = queuePostFlushCb;
+  exports.reactive = reactive;
+  exports.readonly = readonly;
+  exports.ref = ref;
+  exports.registerRuntimeCompiler = registerRuntimeCompiler;
+  exports.render = render;
+  exports.renderList = renderList;
+  exports.renderSlot = renderSlot;
+  exports.resolveComponent = resolveComponent;
+  exports.resolveDirective = resolveDirective;
+  exports.resolveDynamicComponent = resolveDynamicComponent;
+  exports.resolveFilter = resolveFilter;
+  exports.resolveTransitionHooks = resolveTransitionHooks;
+  exports.setBlockTracking = setBlockTracking;
+  exports.setDevtoolsHook = setDevtoolsHook;
+  exports.setTransitionHooks = setTransitionHooks;
+  exports.shallowReactive = shallowReactive;
+  exports.shallowReadonly = shallowReadonly;
+  exports.shallowRef = shallowRef;
+  exports.ssrContextKey = ssrContextKey;
+  exports.ssrUtils = ssrUtils;
+  exports.stop = stop;
+  exports.toDisplayString = toDisplayString;
+  exports.toHandlerKey = toHandlerKey;
+  exports.toHandlers = toHandlers;
+  exports.toRaw = toRaw;
+  exports.toRef = toRef;
+  exports.toRefs = toRefs;
+  exports.transformVNodeArgs = transformVNodeArgs;
+  exports.triggerRef = triggerRef;
+  exports.unref = unref;
+  exports.useAttrs = useAttrs;
+  exports.useCssModule = useCssModule;
+  exports.useCssVars = useCssVars;
+  exports.useSSRContext = useSSRContext;
+  exports.useSlots = useSlots;
+  exports.useTransitionState = useTransitionState;
+  exports.vModelCheckbox = vModelCheckbox;
+  exports.vModelDynamic = vModelDynamic;
+  exports.vModelRadio = vModelRadio;
+  exports.vModelSelect = vModelSelect;
+  exports.vModelText = vModelText;
+  exports.vShow = vShow;
+  exports.version = version;
+  exports.warn = warn$1;
+  exports.watch = watch;
+  exports.watchEffect = watchEffect;
+  exports.watchPostEffect = watchPostEffect;
+  exports.watchSyncEffect = watchSyncEffect;
+  exports.withAsyncContext = withAsyncContext;
+  exports.withCtx = withCtx;
+  exports.withDefaults = withDefaults;
+  exports.withDirectives = withDirectives;
+  exports.withKeys = withKeys;
+  exports.withMemo = withMemo;
+  exports.withModifiers = withModifiers;
+  exports.withScopeId = withScopeId;
+
+  Object.defineProperty(exports, '__esModule', { value: true });
+
+  return exports;
+
+}({}));
diff --git a/src/session.js b/src/session.js
new file mode 100644 (file)
index 0000000..4798042
--- /dev/null
@@ -0,0 +1,105 @@
+const { Notification, ipcMain } = require("electron");
+
+const store = require("./utils/store");
+const { backgroundMitt, ipcEmit } = require("./utils/emitter");
+const { connectToPlatform, disconnectFromPlatform } = require("./io");
+const { initAudio, terminateAudio, playback, streamState } = require("./audio");
+
+const util = require('util');
+
+let ui;
+let current;
+
+const messageQueue = [];
+
+let processContentId;
+
+/* Possible messages:
+ *    - New UI (set ui)
+ *    - New message (add message to ui.messages)
+ *    - New content (add content to existing message)
+ *    - Update person
+ *    - Notification
+ */
+backgroundMitt.on("message", (message) => messageQueue.push(message));
+
+function handleMessageQueue()
+{
+    if (!streamState.pb && !streamState.rec)
+    {
+        const update = messageQueue.shift();
+
+        if (update)
+        {          
+            if (update.person)
+            {
+                ui = update; 
+                current = update.messages.at(-1);
+            }
+            else if (update.name)
+            {
+                ui.person = update;
+            }
+            else if (update.modifier)
+            {
+                ui.messages.push(update); 
+                current = update;
+            }
+            else if (update.category)
+            {
+                current.content.push(update);
+            }
+            else if (update.context)
+            {
+                current.context = update.context;
+            }
+            else if (update.text)
+            {
+                current.content.at(-1).text = update.text;
+            }
+            else
+            {
+                const content = current.content.at(-1);
+
+                new Notification({
+                    title: current.context, 
+                    body: content.text
+                }).show();
+
+                /* Ideally, we want a more native solution than this */
+                if (current.modifier == "ai" && content.category == "audio")
+                {
+                    playback(content.blob, current.id);
+                }
+
+                return;
+            }
+
+            ipcEmit("message", update);
+        }
+    }
+}
+
+function launchSession(account)
+{
+    connectToPlatform(account);
+    initAudio();
+    processContentId = setInterval(handleMessageQueue, 100);
+}
+
+function endSession()
+{
+    clearInterval(processContentId);
+    terminateAudio();
+    disconnectFromPlatform();
+    ui = null;
+}
+
+ipcMain.on("messenger", () => {
+    if (ui) {
+        ipcEmit("message", ui);
+    }
+});
+
+exports.launchSession = launchSession;
+exports.endSession = endSession;
diff --git a/src/tray.js b/src/tray.js
new file mode 100644 (file)
index 0000000..0f8c69f
--- /dev/null
@@ -0,0 +1,43 @@
+const fs = require("fs");
+const path = require("path");
+const { Tray } = require("electron");
+
+const { backgroundMitt } = require("./utils/emitter");
+
+let tray;
+const TRAY_PATH = path.join(__dirname, "assets/tray");
+
+/* Current state of recording, playback, and ws connection */
+const state = {
+    recording: false,
+    playback: false,
+    disconnect: 0 // whether we're experiencing connection issues
+}
+
+/**
+ * Updates the tray icon given a new state of an attribute.
+ * @param {"recording" | "playback" | "disconnect"} attribute
+ * @param {boolean} newState
+ */
+function updateTray(attribute, newState) 
+{
+    state[attribute] = newState;
+
+    // convert boolean to number
+    const bi = (b) => b ? 1 : 0;
+
+    // Make sure we have the icon we're looking for.
+    tray.setImage(path.join(
+        TRAY_PATH, 
+        `${bi(state.recording)}${bi(state.playback)}${bi(state.disconnect)}` + 
+        ".png"
+    ));
+}
+
+function initTray()
+{
+    tray = new Tray(path.join(TRAY_PATH, "000.png"));
+}
+
+exports.initTray = initTray;
+exports.updateTray = updateTray;
diff --git a/src/utils/emitter.js b/src/utils/emitter.js
new file mode 100644 (file)
index 0000000..d3d533b
--- /dev/null
@@ -0,0 +1,11 @@
+const EventEmitter = require("events");
+
+const backgroundMitt = new EventEmitter();
+
+const ipcEmit = (channel, ...args) => 
+{
+    backgroundMitt.emit("ipc-renderer", channel, ...args);
+};
+
+module.exports.backgroundMitt = backgroundMitt;
+module.exports.ipcEmit = ipcEmit;
diff --git a/src/utils/store.js b/src/utils/store.js
new file mode 100644 (file)
index 0000000..9f72b24
--- /dev/null
@@ -0,0 +1,5 @@
+const Store = require("electron-store");
+
+module.exports = new Store({
+    encryptionKey: "super user test"
+});
diff --git a/src/window.js b/src/window.js
new file mode 100644 (file)
index 0000000..767420e
--- /dev/null
@@ -0,0 +1,80 @@
+const path = require("path");
+const { app, BrowserWindow, ipcMain } = require("electron");
+
+const store = require("./utils/store");
+const { sendMessage } = require("./io");
+const { backgroundMitt } = require("./utils/emitter");
+
+let win;
+
+function updateWindowPosition()
+{
+    const bounds = win.getBounds();
+    const position = win.getPosition();
+
+    store.set("window-position", {
+        width: bounds.width, 
+        height: bounds.height, 
+        x: position[0], 
+        y: position[1]
+    })
+}
+
+
+function onNav(_e, cmd) 
+{
+    cmd === "close" ? win.close() : win.minimize();
+}
+
+function createWin()
+{
+    if (win) return;
+
+    let pos = store.get("window-position");
+    if (!pos) pos = { width: 350, height: 750, x: null, y: null }
+
+    win = new BrowserWindow({
+        width:           pos.width,
+        height:          pos.height,
+        x:               pos.x,
+        y:               pos.y,
+        resizable:       true,
+        frame:           false,
+        minWidth:        350,
+        minHeight:       500,
+        backgroundColor: "#EBEBEB",
+        webPreferences:  { preload: path.join(__dirname, "render/preload.js") }
+    })
+
+    // TODO: find a simpler way to notify platform of user events
+    .on("focus", () => store.set("focus", true))
+    .on("blur", () => store.set("focus", false))
+
+    .on("closed", () => {
+        store.set("focus", false);
+        win = null;
+    })
+
+    .on("moved", updateWindowPosition)
+    .on("resize", updateWindowPosition);
+
+    win.loadFile(path.join(__dirname, "render/index.html"));
+
+    win.webContents.on("did-finish-load", () => {
+
+        backgroundMitt.removeAllListeners("ipc-renderer");
+
+        backgroundMitt.on("ipc-renderer", (channel, ...args) => {
+            if (win) 
+            {
+                win.webContents.send(channel, ...args);    
+            }
+        });
+
+        win.webContents.send("account", store.get("account"));
+    });
+}
+
+ipcMain.on("nav", onNav);
+
+exports.createWin = createWin;