@metamask/snaps-rollup-plugin 3.0.2 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [4.0.0]
10
+ ### Changed
11
+ - **BREAKING:** Update ESM build to be fully compliant with the ESM standard ([#2210](https://github.com/MetaMask/snaps/pull/2210))
12
+
9
13
  ## [3.0.2]
10
14
  ### Changed
11
15
  - Bump several MetaMask dependencies ([#2054](https://github.com/MetaMask/snaps/pull/2054), [#2100](https://github.com/MetaMask/snaps/pull/2100), [#2105](https://github.com/MetaMask/snaps/pull/2105), [#2173](https://github.com/MetaMask/snaps/pull/2173))
@@ -32,7 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
32
36
  - The version of the package no longer needs to match the version of all other
33
37
  MetaMask Snaps packages.
34
38
 
35
- [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@3.0.2...HEAD
39
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@4.0.0...HEAD
40
+ [4.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@3.0.2...@metamask/snaps-rollup-plugin@4.0.0
36
41
  [3.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@3.0.1...@metamask/snaps-rollup-plugin@3.0.2
37
42
  [3.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@3.0.0...@metamask/snaps-rollup-plugin@3.0.1
38
43
  [3.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rollup-plugin@2.0.0...@metamask/snaps-rollup-plugin@3.0.0
@@ -0,0 +1,71 @@
1
+ // src/plugin.ts
2
+ import {
3
+ checkManifest,
4
+ evalBundle,
5
+ postProcessBundle
6
+ } from "@metamask/snaps-utils/node";
7
+ import { promises as fs } from "fs";
8
+ import pathUtils from "path";
9
+ function snaps(options) {
10
+ const defaultOptions = {
11
+ eval: true,
12
+ manifestPath: pathUtils.join(process.cwd(), "snap.manifest.json"),
13
+ writeManifest: true,
14
+ ...options
15
+ };
16
+ return {
17
+ name: "@metamask/snaps-rollup-plugin",
18
+ renderChunk(code) {
19
+ const result = postProcessBundle(code, {
20
+ ...defaultOptions,
21
+ sourceMap: true
22
+ });
23
+ if (result.warnings.length > 0) {
24
+ this.warn(
25
+ `Bundle Warning: Processing of the Snap bundle completed with warnings.
26
+ ${result.warnings.join(
27
+ "\n"
28
+ )}`
29
+ );
30
+ }
31
+ return { code: result.code, map: result.sourceMap };
32
+ },
33
+ async writeBundle(output) {
34
+ if (!output.file) {
35
+ this.warn("No output file specified, skipping bundle validation.");
36
+ return;
37
+ }
38
+ if (defaultOptions.eval) {
39
+ await evalBundle(output.file).catch((error) => {
40
+ this.error(error);
41
+ });
42
+ }
43
+ if (defaultOptions.manifestPath) {
44
+ const { errors, warnings } = await checkManifest(
45
+ pathUtils.dirname(defaultOptions.manifestPath),
46
+ defaultOptions.writeManifest,
47
+ await fs.readFile(output.file, "utf8")
48
+ );
49
+ if (!defaultOptions.writeManifest && errors.length > 0) {
50
+ this.error(
51
+ `Manifest Error: The manifest is invalid.
52
+ ${errors.join("\n")}`
53
+ );
54
+ }
55
+ if (warnings.length > 0) {
56
+ this.warn(
57
+ `Manifest Warning: Validation of snap.manifest.json completed with warnings.
58
+ ${warnings.join(
59
+ "\n"
60
+ )}`
61
+ );
62
+ }
63
+ }
64
+ }
65
+ };
66
+ }
67
+
68
+ export {
69
+ snaps
70
+ };
71
+ //# sourceMappingURL=chunk-GQVPCX7R.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/plugin.ts"],"sourcesContent":["import type { PostProcessOptions } from '@metamask/snaps-utils/node';\nimport {\n checkManifest,\n evalBundle,\n postProcessBundle,\n} from '@metamask/snaps-utils/node';\nimport { promises as fs } from 'fs';\nimport pathUtils from 'path';\n// eslint-disable-next-line @typescript-eslint/no-shadow\nimport type { Plugin, SourceMapInput } from 'rollup';\n\ntype PluginOptions = {\n eval?: boolean;\n manifestPath?: string;\n writeManifest?: boolean;\n};\n\nexport type Options = PluginOptions &\n Omit<PostProcessOptions, 'sourceMap' | 'inputSourceMap'>;\n\n/**\n * Creates a Snaps Rollup plugin instance.\n *\n * @param options - The plugin options.\n * @param options.stripComments - Whether to strip comments. Defaults to `true`.\n * @param options.eval - Whether to evaluate the bundle to test SES\n * compatibility. Defaults to `true`.\n * @param options.manifestPath - The path to the manifest file. If provided,\n * the manifest will be validated. Defaults to\n * `process.cwd() + '/snap.manifest.json'`.\n * @param options.writeManifest - Whether to fix the manifest. Defaults to\n * `true`.\n * @returns The Rollup plugin object.\n */\nexport default function snaps(options?: Partial<Options>): Plugin {\n const defaultOptions = {\n eval: true,\n manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),\n writeManifest: true,\n ...options,\n };\n\n return {\n name: '@metamask/snaps-rollup-plugin',\n\n renderChunk(code: string): { code: string; map?: SourceMapInput } | null {\n // Rollup internally merges the new source map with the old one, so there\n // is no need to pass the current source map to the function.\n const result = postProcessBundle(code, {\n ...defaultOptions,\n sourceMap: true,\n });\n\n if (result.warnings.length > 0) {\n this.warn(\n `Bundle Warning: Processing of the Snap bundle completed with warnings.\\n${result.warnings.join(\n '\\n',\n )}`,\n );\n }\n\n return { code: result.code, map: result.sourceMap };\n },\n\n async writeBundle(output): Promise<void> {\n if (!output.file) {\n this.warn('No output file specified, skipping bundle validation.');\n return;\n }\n\n if (defaultOptions.eval) {\n await evalBundle(output.file).catch((error) => {\n this.error(error);\n });\n }\n\n if (defaultOptions.manifestPath) {\n const { errors, warnings } = await checkManifest(\n pathUtils.dirname(defaultOptions.manifestPath),\n defaultOptions.writeManifest,\n await fs.readFile(output.file, 'utf8'),\n );\n\n if (!defaultOptions.writeManifest && errors.length > 0) {\n this.error(\n `Manifest Error: The manifest is invalid.\\n${errors.join('\\n')}`,\n );\n }\n\n if (warnings.length > 0) {\n this.warn(\n `Manifest Warning: Validation of snap.manifest.json completed with warnings.\\n${warnings.join(\n '\\n',\n )}`,\n );\n }\n }\n },\n };\n}\n"],"mappings":";AACA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,YAAY,UAAU;AAC/B,OAAO,eAAe;AA2BP,SAAR,MAAuB,SAAoC;AAChE,QAAM,iBAAiB;AAAA,IACrB,MAAM;AAAA,IACN,cAAc,UAAU,KAAK,QAAQ,IAAI,GAAG,oBAAoB;AAAA,IAChE,eAAe;AAAA,IACf,GAAG;AAAA,EACL;AAEA,SAAO;AAAA,IACL,MAAM;AAAA,IAEN,YAAY,MAA6D;AAGvE,YAAM,SAAS,kBAAkB,MAAM;AAAA,QACrC,GAAG;AAAA,QACH,WAAW;AAAA,MACb,CAAC;AAED,UAAI,OAAO,SAAS,SAAS,GAAG;AAC9B,aAAK;AAAA,UACH;AAAA,EAA2E,OAAO,SAAS;AAAA,YACzF;AAAA,UACF,CAAC;AAAA,QACH;AAAA,MACF;AAEA,aAAO,EAAE,MAAM,OAAO,MAAM,KAAK,OAAO,UAAU;AAAA,IACpD;AAAA,IAEA,MAAM,YAAY,QAAuB;AACvC,UAAI,CAAC,OAAO,MAAM;AAChB,aAAK,KAAK,uDAAuD;AACjE;AAAA,MACF;AAEA,UAAI,eAAe,MAAM;AACvB,cAAM,WAAW,OAAO,IAAI,EAAE,MAAM,CAAC,UAAU;AAC7C,eAAK,MAAM,KAAK;AAAA,QAClB,CAAC;AAAA,MACH;AAEA,UAAI,eAAe,cAAc;AAC/B,cAAM,EAAE,QAAQ,SAAS,IAAI,MAAM;AAAA,UACjC,UAAU,QAAQ,eAAe,YAAY;AAAA,UAC7C,eAAe;AAAA,UACf,MAAM,GAAG,SAAS,OAAO,MAAM,MAAM;AAAA,QACvC;AAEA,YAAI,CAAC,eAAe,iBAAiB,OAAO,SAAS,GAAG;AACtD,eAAK;AAAA,YACH;AAAA,EAA6C,OAAO,KAAK,IAAI,CAAC;AAAA,UAChE;AAAA,QACF;AAEA,YAAI,SAAS,SAAS,GAAG;AACvB,eAAK;AAAA,YACH;AAAA,EAAgF,SAAS;AAAA,cACvF;AAAA,YACF,CAAC;AAAA,UACH;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAAA,EACF;AACF;","names":[]}
@@ -0,0 +1,71 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }// src/plugin.ts
2
+
3
+
4
+
5
+
6
+ var _node = require('@metamask/snaps-utils/node');
7
+ var _fs = require('fs');
8
+ var _path = require('path'); var _path2 = _interopRequireDefault(_path);
9
+ function snaps(options) {
10
+ const defaultOptions = {
11
+ eval: true,
12
+ manifestPath: _path2.default.join(process.cwd(), "snap.manifest.json"),
13
+ writeManifest: true,
14
+ ...options
15
+ };
16
+ return {
17
+ name: "@metamask/snaps-rollup-plugin",
18
+ renderChunk(code) {
19
+ const result = _node.postProcessBundle.call(void 0, code, {
20
+ ...defaultOptions,
21
+ sourceMap: true
22
+ });
23
+ if (result.warnings.length > 0) {
24
+ this.warn(
25
+ `Bundle Warning: Processing of the Snap bundle completed with warnings.
26
+ ${result.warnings.join(
27
+ "\n"
28
+ )}`
29
+ );
30
+ }
31
+ return { code: result.code, map: result.sourceMap };
32
+ },
33
+ async writeBundle(output) {
34
+ if (!output.file) {
35
+ this.warn("No output file specified, skipping bundle validation.");
36
+ return;
37
+ }
38
+ if (defaultOptions.eval) {
39
+ await _node.evalBundle.call(void 0, output.file).catch((error) => {
40
+ this.error(error);
41
+ });
42
+ }
43
+ if (defaultOptions.manifestPath) {
44
+ const { errors, warnings } = await _node.checkManifest.call(void 0,
45
+ _path2.default.dirname(defaultOptions.manifestPath),
46
+ defaultOptions.writeManifest,
47
+ await _fs.promises.readFile(output.file, "utf8")
48
+ );
49
+ if (!defaultOptions.writeManifest && errors.length > 0) {
50
+ this.error(
51
+ `Manifest Error: The manifest is invalid.
52
+ ${errors.join("\n")}`
53
+ );
54
+ }
55
+ if (warnings.length > 0) {
56
+ this.warn(
57
+ `Manifest Warning: Validation of snap.manifest.json completed with warnings.
58
+ ${warnings.join(
59
+ "\n"
60
+ )}`
61
+ );
62
+ }
63
+ }
64
+ }
65
+ };
66
+ }
67
+
68
+
69
+
70
+ exports.snaps = snaps;
71
+ //# sourceMappingURL=chunk-SLRY33B7.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/plugin.ts"],"names":[],"mappings":";AACA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,YAAY,UAAU;AAC/B,OAAO,eAAe;AA2BP,SAAR,MAAuB,SAAoC;AAChE,QAAM,iBAAiB;AAAA,IACrB,MAAM;AAAA,IACN,cAAc,UAAU,KAAK,QAAQ,IAAI,GAAG,oBAAoB;AAAA,IAChE,eAAe;AAAA,IACf,GAAG;AAAA,EACL;AAEA,SAAO;AAAA,IACL,MAAM;AAAA,IAEN,YAAY,MAA6D;AAGvE,YAAM,SAAS,kBAAkB,MAAM;AAAA,QACrC,GAAG;AAAA,QACH,WAAW;AAAA,MACb,CAAC;AAED,UAAI,OAAO,SAAS,SAAS,GAAG;AAC9B,aAAK;AAAA,UACH;AAAA,EAA2E,OAAO,SAAS;AAAA,YACzF;AAAA,UACF,CAAC;AAAA,QACH;AAAA,MACF;AAEA,aAAO,EAAE,MAAM,OAAO,MAAM,KAAK,OAAO,UAAU;AAAA,IACpD;AAAA,IAEA,MAAM,YAAY,QAAuB;AACvC,UAAI,CAAC,OAAO,MAAM;AAChB,aAAK,KAAK,uDAAuD;AACjE;AAAA,MACF;AAEA,UAAI,eAAe,MAAM;AACvB,cAAM,WAAW,OAAO,IAAI,EAAE,MAAM,CAAC,UAAU;AAC7C,eAAK,MAAM,KAAK;AAAA,QAClB,CAAC;AAAA,MACH;AAEA,UAAI,eAAe,cAAc;AAC/B,cAAM,EAAE,QAAQ,SAAS,IAAI,MAAM;AAAA,UACjC,UAAU,QAAQ,eAAe,YAAY;AAAA,UAC7C,eAAe;AAAA,UACf,MAAM,GAAG,SAAS,OAAO,MAAM,MAAM;AAAA,QACvC;AAEA,YAAI,CAAC,eAAe,iBAAiB,OAAO,SAAS,GAAG;AACtD,eAAK;AAAA,YACH;AAAA,EAA6C,OAAO,KAAK,IAAI,CAAC;AAAA,UAChE;AAAA,QACF;AAEA,YAAI,SAAS,SAAS,GAAG;AACvB,eAAK;AAAA,YACH;AAAA,EAAgF,SAAS;AAAA,cACvF;AAAA,YACF,CAAC;AAAA,UACH;AAAA,QACF;AAAA,MACF;AAAA,IACF;AAAA,EACF;AACF","sourcesContent":["import type { PostProcessOptions } from '@metamask/snaps-utils/node';\nimport {\n checkManifest,\n evalBundle,\n postProcessBundle,\n} from '@metamask/snaps-utils/node';\nimport { promises as fs } from 'fs';\nimport pathUtils from 'path';\n// eslint-disable-next-line @typescript-eslint/no-shadow\nimport type { Plugin, SourceMapInput } from 'rollup';\n\ntype PluginOptions = {\n eval?: boolean;\n manifestPath?: string;\n writeManifest?: boolean;\n};\n\nexport type Options = PluginOptions &\n Omit<PostProcessOptions, 'sourceMap' | 'inputSourceMap'>;\n\n/**\n * Creates a Snaps Rollup plugin instance.\n *\n * @param options - The plugin options.\n * @param options.stripComments - Whether to strip comments. Defaults to `true`.\n * @param options.eval - Whether to evaluate the bundle to test SES\n * compatibility. Defaults to `true`.\n * @param options.manifestPath - The path to the manifest file. If provided,\n * the manifest will be validated. Defaults to\n * `process.cwd() + '/snap.manifest.json'`.\n * @param options.writeManifest - Whether to fix the manifest. Defaults to\n * `true`.\n * @returns The Rollup plugin object.\n */\nexport default function snaps(options?: Partial<Options>): Plugin {\n const defaultOptions = {\n eval: true,\n manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),\n writeManifest: true,\n ...options,\n };\n\n return {\n name: '@metamask/snaps-rollup-plugin',\n\n renderChunk(code: string): { code: string; map?: SourceMapInput } | null {\n // Rollup internally merges the new source map with the old one, so there\n // is no need to pass the current source map to the function.\n const result = postProcessBundle(code, {\n ...defaultOptions,\n sourceMap: true,\n });\n\n if (result.warnings.length > 0) {\n this.warn(\n `Bundle Warning: Processing of the Snap bundle completed with warnings.\\n${result.warnings.join(\n '\\n',\n )}`,\n );\n }\n\n return { code: result.code, map: result.sourceMap };\n },\n\n async writeBundle(output): Promise<void> {\n if (!output.file) {\n this.warn('No output file specified, skipping bundle validation.');\n return;\n }\n\n if (defaultOptions.eval) {\n await evalBundle(output.file).catch((error) => {\n this.error(error);\n });\n }\n\n if (defaultOptions.manifestPath) {\n const { errors, warnings } = await checkManifest(\n pathUtils.dirname(defaultOptions.manifestPath),\n defaultOptions.writeManifest,\n await fs.readFile(output.file, 'utf8'),\n );\n\n if (!defaultOptions.writeManifest && errors.length > 0) {\n this.error(\n `Manifest Error: The manifest is invalid.\\n${errors.join('\\n')}`,\n );\n }\n\n if (warnings.length > 0) {\n this.warn(\n `Manifest Warning: Validation of snap.manifest.json completed with warnings.\\n${warnings.join(\n '\\n',\n )}`,\n );\n }\n }\n },\n };\n}\n"]}
package/dist/index.js ADDED
@@ -0,0 +1,7 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
+
3
+ var _chunkSLRY33B7js = require('./chunk-SLRY33B7.js');
4
+
5
+
6
+ exports.default = _chunkSLRY33B7js.snaps;
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":""}
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ import {
2
+ snaps
3
+ } from "./chunk-GQVPCX7R.mjs";
4
+ export {
5
+ snaps as default
6
+ };
7
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/dist/plugin.js ADDED
@@ -0,0 +1,7 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
+
3
+ var _chunkSLRY33B7js = require('./chunk-SLRY33B7.js');
4
+
5
+
6
+ exports.default = _chunkSLRY33B7js.snaps;
7
+ //# sourceMappingURL=plugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":""}
@@ -0,0 +1,7 @@
1
+ import {
2
+ snaps
3
+ } from "./chunk-GQVPCX7R.mjs";
4
+ export {
5
+ snaps as default
6
+ };
7
+ //# sourceMappingURL=plugin.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../snaps-utils/dist/types/array.d.ts","../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../node_modules/@types/node/ts4.8/console.d.ts","../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../../node_modules/@types/node/ts4.8/events.d.ts","../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../node_modules/@types/node/ts4.8/http.d.ts","../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../node_modules/@types/node/ts4.8/https.d.ts","../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../node_modules/@types/node/ts4.8/module.d.ts","../../../node_modules/@types/node/ts4.8/net.d.ts","../../../node_modules/@types/node/ts4.8/os.d.ts","../../../node_modules/@types/node/ts4.8/path.d.ts","../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../node_modules/@types/node/ts4.8/process.d.ts","../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../node_modules/@types/node/ts4.8/test.d.ts","../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../node_modules/@types/node/ts4.8/url.d.ts","../../../node_modules/@types/node/ts4.8/util.d.ts","../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../node_modules/@types/node/ts4.8/index.d.ts","../../../node_modules/superstruct/dist/error.d.ts","../../../node_modules/superstruct/dist/utils.d.ts","../../../node_modules/superstruct/dist/struct.d.ts","../../../node_modules/superstruct/dist/structs/coercions.d.ts","../../../node_modules/superstruct/dist/structs/refinements.d.ts","../../../node_modules/superstruct/dist/structs/types.d.ts","../../../node_modules/superstruct/dist/structs/utilities.d.ts","../../../node_modules/superstruct/dist/index.d.ts","../../../node_modules/@metamask/utils/dist/types/assert.d.ts","../../../node_modules/@metamask/utils/dist/types/base64.d.ts","../../../node_modules/@metamask/utils/dist/types/hex.d.ts","../../../node_modules/@metamask/utils/dist/types/bytes.d.ts","../../../node_modules/@metamask/utils/dist/types/caip-types.d.ts","../../../node_modules/@metamask/utils/dist/types/checksum.d.ts","../../../node_modules/@metamask/utils/dist/types/coercers.d.ts","../../../node_modules/@metamask/utils/dist/types/collections.d.ts","../../../node_modules/@metamask/utils/dist/types/encryption-types.d.ts","../../../node_modules/@metamask/utils/dist/types/errors.d.ts","../../../node_modules/@metamask/utils/dist/types/json.d.ts","../../../node_modules/@ethereumjs/common/dist/enums.d.ts","../../../node_modules/@ethereumjs/common/dist/types.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/@ethereumjs/util/dist/constants.d.ts","../../../node_modules/@ethereumjs/util/dist/units.d.ts","../../../node_modules/@ethereumjs/util/dist/address.d.ts","../../../node_modules/@ethereumjs/util/dist/bytes.d.ts","../../../node_modules/@ethereumjs/util/dist/types.d.ts","../../../node_modules/@ethereumjs/util/dist/account.d.ts","../../../node_modules/@ethereumjs/util/dist/withdrawal.d.ts","../../../node_modules/@ethereumjs/util/dist/signature.d.ts","../../../node_modules/@ethereumjs/util/dist/encoding.d.ts","../../../node_modules/@ethereumjs/util/dist/asyncEventEmitter.d.ts","../../../node_modules/@ethereumjs/util/dist/internal.d.ts","../../../node_modules/@ethereumjs/util/dist/lock.d.ts","../../../node_modules/@ethereumjs/util/dist/provider.d.ts","../../../node_modules/@ethereumjs/util/dist/index.d.ts","../../../node_modules/@ethereumjs/common/dist/common.d.ts","../../../node_modules/@ethereumjs/common/dist/utils.d.ts","../../../node_modules/@ethereumjs/common/dist/index.d.ts","../../../node_modules/@ethereumjs/tx/dist/eip2930Transaction.d.ts","../../../node_modules/@ethereumjs/tx/dist/legacyTransaction.d.ts","../../../node_modules/@ethereumjs/tx/dist/types.d.ts","../../../node_modules/@ethereumjs/tx/dist/baseTransaction.d.ts","../../../node_modules/@ethereumjs/tx/dist/eip1559Transaction.d.ts","../../../node_modules/@ethereumjs/tx/dist/transactionFactory.d.ts","../../../node_modules/@ethereumjs/tx/dist/index.d.ts","../../../node_modules/@metamask/utils/dist/types/keyring.d.ts","../../../node_modules/@types/ms/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@metamask/utils/dist/types/logging.d.ts","../../../node_modules/@metamask/utils/dist/types/misc.d.ts","../../../node_modules/@metamask/utils/dist/types/number.d.ts","../../../node_modules/@metamask/utils/dist/types/opaque.d.ts","../../../node_modules/@metamask/utils/dist/types/promise.d.ts","../../../node_modules/@metamask/utils/dist/types/time.d.ts","../../../node_modules/@metamask/utils/dist/types/transaction-types.d.ts","../../../node_modules/@metamask/utils/dist/types/versions.d.ts","../../../node_modules/@metamask/utils/dist/types/index.d.ts","../../../node_modules/@metamask/rpc-errors/dist/types/utils.d.ts","../../../node_modules/@metamask/rpc-errors/dist/types/classes.d.ts","../../../node_modules/@metamask/rpc-errors/dist/types/errors.d.ts","../../../node_modules/@metamask/rpc-errors/dist/types/error-constants.d.ts","../../../node_modules/@metamask/rpc-errors/dist/types/index.d.ts","../../snaps-sdk/dist/types/errors.d.ts","../../snaps-sdk/dist/types/internals/error-wrappers.d.ts","../../snaps-sdk/dist/types/internals/errors.d.ts","../../snaps-sdk/dist/types/internals/helpers.d.ts","../../snaps-sdk/dist/types/internals/structs.d.ts","../../snaps-sdk/dist/types/internals/svg.d.ts","../../snaps-sdk/dist/types/internals/index.d.ts","../../snaps-sdk/dist/types/error-wrappers.d.ts","../../snaps-sdk/dist/types/ui/nodes.d.ts","../../snaps-sdk/dist/types/ui/components/address.d.ts","../../snaps-sdk/dist/types/ui/components/copyable.d.ts","../../snaps-sdk/dist/types/ui/components/divider.d.ts","../../snaps-sdk/dist/types/ui/components/heading.d.ts","../../snaps-sdk/dist/types/ui/components/image.d.ts","../../snaps-sdk/dist/types/ui/components/panel.d.ts","../../snaps-sdk/dist/types/ui/components/spinner.d.ts","../../snaps-sdk/dist/types/ui/components/text.d.ts","../../snaps-sdk/dist/types/ui/components/row.d.ts","../../snaps-sdk/dist/types/ui/components/button.d.ts","../../snaps-sdk/dist/types/ui/components/input.d.ts","../../snaps-sdk/dist/types/ui/components/form.d.ts","../../snaps-sdk/dist/types/ui/components/index.d.ts","../../snaps-sdk/dist/types/ui/component.d.ts","../../snaps-sdk/dist/types/ui/index.d.ts","../../snaps-sdk/dist/types/images.d.ts","../../../node_modules/@metamask/safe-event-emitter/index.d.ts","../../../node_modules/@metamask/json-rpc-engine/dist/JsonRpcEngine.d.ts","../../../node_modules/@metamask/json-rpc-engine/dist/createAsyncMiddleware.d.ts","../../../node_modules/@metamask/json-rpc-engine/dist/createScaffoldMiddleware.d.ts","../../../node_modules/@metamask/json-rpc-engine/dist/getUniqueId.d.ts","../../../node_modules/@metamask/json-rpc-engine/dist/idRemapMiddleware.d.ts","../../../node_modules/@metamask/json-rpc-engine/dist/mergeMiddleware.d.ts","../../../node_modules/@metamask/json-rpc-engine/dist/index.d.ts","../../../node_modules/@metamask/providers/dist/utils.d.ts","../../../node_modules/@metamask/providers/dist/BaseProvider.d.ts","../../../node_modules/@metamask/providers/dist/EIP6963.d.ts","../../../node_modules/@types/readable-stream/node_modules/safe-buffer/index.d.ts","../../../node_modules/@types/readable-stream/index.d.ts","../../../node_modules/@metamask/providers/dist/StreamProvider.d.ts","../../../node_modules/@metamask/providers/dist/extension-provider/createExternalExtensionProvider.d.ts","../../../node_modules/@metamask/providers/dist/MetaMaskInpageProvider.d.ts","../../../node_modules/@metamask/providers/dist/initializeInpageProvider.d.ts","../../../node_modules/@metamask/providers/dist/shimWeb3.d.ts","../../../node_modules/@metamask/providers/dist/index.d.ts","../../snaps-sdk/dist/types/types/methods/create-interface.d.ts","../../snaps-sdk/dist/types/types/methods/dialog.d.ts","../../../node_modules/@metamask/key-tree/dist/types/constants.d.ts","../../../node_modules/@noble/ed25519/lib/index.d.ts","../../../node_modules/@metamask/key-tree/dist/types/curves/ed25519.d.ts","../../../node_modules/@noble/secp256k1/lib/index.d.ts","../../../node_modules/@metamask/key-tree/dist/types/curves/secp256k1.d.ts","../../../node_modules/@metamask/key-tree/dist/types/curves/curve.d.ts","../../../node_modules/@metamask/key-tree/dist/types/curves/index.d.ts","../../../node_modules/@metamask/key-tree/dist/types/utils.d.ts","../../../node_modules/@metamask/key-tree/dist/types/BIP44CoinTypeNode.d.ts","../../../node_modules/@metamask/key-tree/dist/types/SLIP10Node.d.ts","../../../node_modules/@metamask/key-tree/dist/types/BIP44Node.d.ts","../../../node_modules/@metamask/key-tree/dist/types/derivers/bip32.d.ts","../../../node_modules/@metamask/key-tree/dist/types/derivers/bip39.d.ts","../../../node_modules/@metamask/key-tree/dist/types/derivers/slip10.d.ts","../../../node_modules/@metamask/key-tree/dist/types/derivers/index.d.ts","../../../node_modules/@metamask/key-tree/dist/types/index.d.ts","../../snaps-sdk/dist/types/types/caip.d.ts","../../snaps-sdk/dist/types/types/permissions.d.ts","../../snaps-sdk/dist/types/types/methods/get-bip32-entropy.d.ts","../../snaps-sdk/dist/types/types/methods/get-bip32-public-key.d.ts","../../snaps-sdk/dist/types/types/methods/get-bip44-entropy.d.ts","../../snaps-sdk/dist/types/types/methods/get-client-status.d.ts","../../snaps-sdk/dist/types/types/methods/get-entropy.d.ts","../../snaps-sdk/dist/types/types/methods/get-file.d.ts","../../snaps-sdk/dist/types/types/interface.d.ts","../../snaps-sdk/dist/types/types/methods/get-interface-state.d.ts","../../snaps-sdk/dist/types/types/methods/get-locale.d.ts","../../snaps-sdk/dist/types/types/snap.d.ts","../../snaps-sdk/dist/types/types/methods/get-snaps.d.ts","../../snaps-sdk/dist/types/types/methods/invoke-snap.d.ts","../../snaps-sdk/dist/types/types/methods/invoke-keyring.d.ts","../../snaps-sdk/dist/types/types/methods/manage-accounts.d.ts","../../snaps-sdk/dist/types/types/methods/manage-state.d.ts","../../snaps-sdk/dist/types/types/methods/notify.d.ts","../../snaps-sdk/dist/types/types/methods/request-snaps.d.ts","../../snaps-sdk/dist/types/types/methods/update-interface.d.ts","../../snaps-sdk/dist/types/types/methods/methods.d.ts","../../snaps-sdk/dist/types/types/methods/index.d.ts","../../snaps-sdk/dist/types/types/provider.d.ts","../../snaps-sdk/dist/types/types/global.d.ts","../../snaps-sdk/dist/types/types/handlers/cronjob.d.ts","../../snaps-sdk/dist/types/types/handlers/home-page.d.ts","../../snaps-sdk/dist/types/types/handlers/keyring.d.ts","../../snaps-sdk/dist/types/types/handlers/lifecycle.d.ts","../../snaps-sdk/dist/types/types/handlers/name-lookup.d.ts","../../snaps-sdk/dist/types/types/handlers/rpc-request.d.ts","../../snaps-sdk/dist/types/types/handlers/transaction.d.ts","../../snaps-sdk/dist/types/types/handlers/signature.d.ts","../../snaps-sdk/dist/types/types/handlers/user-input.d.ts","../../snaps-sdk/dist/types/types/handlers/index.d.ts","../../snaps-sdk/dist/types/types/index.d.ts","../../snaps-sdk/dist/types/index.d.ts","../../snaps-utils/dist/types/auxiliary-files.d.ts","../../snaps-utils/dist/types/virtual-file/VirtualFile.d.ts","../../snaps-utils/dist/types/virtual-file/index.d.ts","../../snaps-utils/dist/types/base64.d.ts","../../snaps-utils/dist/types/bytes.d.ts","../../snaps-utils/dist/types/caveats.d.ts","../../snaps-utils/dist/types/checksum.d.ts","../../../node_modules/cron-parser/types/common.d.ts","../../../node_modules/cron-parser/types/index.d.ts","../../../node_modules/cron-parser/index.d.ts","../../snaps-utils/dist/types/cronjob.d.ts","../../snaps-utils/dist/types/deep-clone.d.ts","../../snaps-utils/dist/types/default-endowments.d.ts","../../snaps-utils/dist/types/derivation-paths.d.ts","../../snaps-utils/dist/types/entropy.d.ts","../../snaps-utils/dist/types/errors.d.ts","../../snaps-utils/dist/types/handler-types.d.ts","../../snaps-utils/dist/types/handlers.d.ts","../../snaps-utils/dist/types/iframe.d.ts","../../snaps-utils/dist/types/json.d.ts","../../../node_modules/@metamask/base-controller/dist/BaseControllerV1.d.ts","../../../node_modules/immer/dist/utils/env.d.ts","../../../node_modules/immer/dist/utils/errors.d.ts","../../../node_modules/immer/dist/types/types-external.d.ts","../../../node_modules/immer/dist/types/types-internal.d.ts","../../../node_modules/immer/dist/utils/common.d.ts","../../../node_modules/immer/dist/utils/plugins.d.ts","../../../node_modules/immer/dist/core/scope.d.ts","../../../node_modules/immer/dist/core/finalize.d.ts","../../../node_modules/immer/dist/core/proxy.d.ts","../../../node_modules/immer/dist/core/immerClass.d.ts","../../../node_modules/immer/dist/core/current.d.ts","../../../node_modules/immer/dist/internal.d.ts","../../../node_modules/immer/dist/plugins/es5.d.ts","../../../node_modules/immer/dist/plugins/patches.d.ts","../../../node_modules/immer/dist/plugins/mapset.d.ts","../../../node_modules/immer/dist/plugins/all.d.ts","../../../node_modules/immer/dist/immer.d.ts","../../../node_modules/@metamask/base-controller/dist/RestrictedControllerMessenger.d.ts","../../../node_modules/@metamask/base-controller/dist/ControllerMessenger.d.ts","../../../node_modules/@metamask/base-controller/dist/BaseControllerV2.d.ts","../../../node_modules/@metamask/base-controller/dist/index.d.ts","../../../node_modules/@metamask/controller-utils/dist/types.d.ts","../../../node_modules/@metamask/controller-utils/dist/constants.d.ts","../../../node_modules/@types/bn.js/index.d.ts","../../../node_modules/@metamask/eth-query/index.d.ts","../../../node_modules/rlp/dist/types.d.ts","../../../node_modules/rlp/dist/index.d.ts","../../../node_modules/ethereumjs-util/dist/externals.d.ts","../../../node_modules/ethereumjs-util/dist/constants.d.ts","../../../node_modules/ethereumjs-util/dist/address.d.ts","../../../node_modules/ethereumjs-util/dist/bytes.d.ts","../../../node_modules/ethereumjs-util/dist/types.d.ts","../../../node_modules/ethereumjs-util/dist/account.d.ts","../../../node_modules/ethereumjs-util/dist/hash.d.ts","../../../node_modules/ethereumjs-util/dist/signature.d.ts","../../../node_modules/ethereumjs-util/dist/object.d.ts","../../../node_modules/ethereumjs-util/dist/internal.d.ts","../../../node_modules/ethereumjs-util/dist/index.d.ts","../../../node_modules/@metamask/controller-utils/dist/util.d.ts","../../../node_modules/@spruceid/siwe-parser/dist/abnf.d.ts","../../../node_modules/@spruceid/siwe-parser/dist/regex.d.ts","../../../node_modules/@spruceid/siwe-parser/dist/parsers.d.ts","../../../node_modules/@metamask/controller-utils/dist/siwe.d.ts","../../../node_modules/@metamask/controller-utils/dist/index.d.ts","../../../node_modules/@metamask/approval-controller/dist/ApprovalController.d.ts","../../../node_modules/@metamask/approval-controller/dist/errors.d.ts","../../../node_modules/@metamask/approval-controller/dist/index.d.ts","../../../node_modules/@metamask/permission-controller/dist/permission-middleware.d.ts","../../../node_modules/@metamask/permission-controller/dist/SubjectMetadataController.d.ts","../../../node_modules/@metamask/permission-controller/dist/PermissionController.d.ts","../../../node_modules/@metamask/permission-controller/dist/Permission.d.ts","../../../node_modules/@metamask/permission-controller/dist/Caveat.d.ts","../../../node_modules/@metamask/permission-controller/dist/errors.d.ts","../../../node_modules/@metamask/permission-controller/dist/utils.d.ts","../../../node_modules/@metamask/permission-controller/dist/rpc-methods/getPermissions.d.ts","../../../node_modules/@metamask/permission-controller/dist/rpc-methods/requestPermissions.d.ts","../../../node_modules/@metamask/permission-controller/dist/rpc-methods/revokePermissions.d.ts","../../../node_modules/@metamask/permission-controller/dist/rpc-methods/index.d.ts","../../../node_modules/@metamask/permission-controller/dist/index.d.ts","../../snaps-utils/dist/types/json-rpc.d.ts","../../snaps-utils/dist/types/structs.d.ts","../../snaps-utils/dist/types/manifest/validation.d.ts","../../snaps-utils/dist/types/manifest/index.d.ts","../../snaps-utils/dist/types/localization.d.ts","../../snaps-utils/dist/types/logging.d.ts","../../snaps-utils/dist/types/namespace.d.ts","../../snaps-utils/dist/types/path.d.ts","../../../node_modules/@metamask/snaps-registry/dist/verify.d.ts","../../../node_modules/@metamask/snaps-registry/dist/index.d.ts","../../snaps-utils/dist/types/types.d.ts","../../snaps-utils/dist/types/snaps.d.ts","../../snaps-utils/dist/types/strings.d.ts","../../snaps-utils/dist/types/ui.d.ts","../../snaps-utils/dist/types/validation.d.ts","../../snaps-utils/dist/types/versions.d.ts","../../snaps-utils/dist/types/index.d.ts","../../snaps-utils/dist/types/eval.d.ts","../../snaps-utils/dist/types/fs.d.ts","../../snaps-utils/dist/types/virtual-file/toVirtualFile.d.ts","../../snaps-utils/dist/types/virtual-file/node.d.ts","../../snaps-utils/dist/types/manifest/manifest.d.ts","../../snaps-utils/dist/types/manifest/node.d.ts","../../snaps-utils/dist/types/mock.d.ts","../../snaps-utils/dist/types/npm.d.ts","../../snaps-utils/dist/types/post-process.d.ts","../../snaps-utils/dist/types/node.d.ts","../../../node_modules/rollup/dist/rollup.d.ts","../src/plugin.ts","../src/index.ts","../src/__fixtures__/source-map.ts","../../../node_modules/@types/aria-query/index.d.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/insert-module-globals/index.d.ts","../../../node_modules/@types/browserify/index.d.ts","../../../node_modules/@types/har-format/index.d.ts","../../../node_modules/@types/chrome/har-format/index.d.ts","../../../node_modules/@types/chrome/chrome-cast/index.d.ts","../../../node_modules/@types/filewriter/index.d.ts","../../../node_modules/@types/filesystem/index.d.ts","../../../node_modules/@types/chrome/index.d.ts","../../../node_modules/@types/concat-stream/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/convert-source-map/index.d.ts","../../../node_modules/@types/deep-freeze-strict/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/serve-static/node_modules/@types/mime/Mime.d.ts","../../../node_modules/@types/serve-static/node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/minimatch/dist/cjs/escape.d.ts","../../../node_modules/minimatch/dist/cjs/unescape.d.ts","../../../node_modules/minimatch/dist/cjs/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/gunzip-maybe/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/react/ts5.0/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/ts5.0/index.d.ts","../../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/@types/istanbul-lib-source-maps/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/@types/jest/node_modules/jest-diff/build/index.d.ts","../../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash.mergewith/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/pbkdf2/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/punycode/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/react-transition-group/Transition.d.ts","../../../node_modules/@types/react-transition-group/CSSTransition.d.ts","../../../node_modules/@types/react-transition-group/TransitionGroup.d.ts","../../../node_modules/@types/react-transition-group/SwitchTransition.d.ts","../../../node_modules/@types/react-transition-group/config.d.ts","../../../node_modules/@types/react-transition-group/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/rimraf/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/secp256k1/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-handler/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/source-list-map/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tar-stream/index.d.ts","../../../node_modules/@types/use-sync-external-store/index.d.ts","../../../node_modules/@types/validate-npm-package-name/index.d.ts","../../../node_modules/@types/warning/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../../node_modules/@types/webpack-sources/lib/index.d.ts","../../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../../node_modules/@types/webpack-sources/index.d.ts","../../../node_modules/@types/which/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"9b087de7268e4efc5f215347a62656663933d63c0b1d7b624913240367b999ea","affectsGlobalScope":true},{"version":"3260e3386d9535b804205bdddb5618a9a27735bd22927f48ad54363abcd23d45","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"00abf32ca3af92f8be9ecbc9b63090b4909a756317d791927a83cffd24e9c8ac","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"02873d070f9cb79f50833fbf4a9a27ac578a2edf8ddb8421eba1b37faba83bfb","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"a8c260f87bca4da5d28dbc255c17656831e64d173a6cbbc2748e5cc12b77731c","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5eb881ed2a0d5b17ea36df5cd4c4be500e460c412f270c3170e906bec65580ac","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","3163f47436da41706c6e2b3c1511f3b7cce9f9f3905b2f3e01246c48b4ba7d14","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","e475453e7140e95542332943d3052fe4c7430ad1efce42b3e9157f1fee8cbc5f","ebfdf904255ce746c9d30117c2edef355fb19bf7650478d2405f39f0e4f302e6","f3f63b48addb8e2ea9d20bb671c3c306413b3daa39996d0ae52f63d8e32158e1","a50599c08934a62f11657bdbe0dc929ab66da1b1f09974408fd9a33ec1bb8060","5a20e7d6c630b91be15e9b837853173829d00273197481dc8d3e94df61105a71","8d478048d71cc16f806d4b71b252ecb67c7444ccf4f4b09b29a312712184f859","b4000a0a525fa921e896cbdb32ae802c9684f0fd371b5fc69e7310f7918cc2c3","9df4662ca3dbc2522bc115833ee04faa1afbb4e249a85ef4a0a09c621346bd08","b25d9065cf1c1f537a140bbc508e953ed2262f77134574c432d206ff36f4bdbf","1b103313097041aa9cd705a682c652f08613cb5cf8663321061c0902f845e81c","68ccec8662818911d8a12b8ed028bc5729fb4f1d34793c4701265ba60bc73cf4","5f85b8b79dc4d36af672c035b2beb71545de63a5d60bccbeee64c260941672ab","affb9dc7079c3a3522e046c5dc1325950a843b1ebd7dc0f0386aeb2397b9f0db","40fe4b689225816b31fe5794c0fbf3534568819709e40295ead998a2bc1ab237","f65b5e33b9ad545a1eebbd6afe857314725ad42aaf069913e33f928ab3e4990a","fb6f2a87beb7fb1f4c2b762d0c76a9459fc91f557231569b0ee21399e22aa13d","31c858dc85996fac4b7fa944e1016d5c72f514930a72357ab5001097bf6511c7","3de30a871b3340be8b679c52aa12f90dd1c8c60874517be58968fdbcc4d79445","6fd985bd31eaf77542625306fb0404d32bff978990f0a06428e5f0b9a3b58109","175323e2a79a6076e0bada8a390d535a3ea817158bf1b1f46e31efca9028a0a2","7a10053aadc19335532a4d02756db4865974fd69bea5439ddcc5bfdf062d9476","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","aed9e712a9b168345362e8f3a949f16c99ca1e05d21328f05735dfdbb24414ef","b04fe6922ed3db93afdbd49cdda8576aa75f744592fceea96fb0d5f32158c4f5","ed8d6c8de90fc2a4faaebc28e91f2469928738efd5208fb75ade0fa607e892b7","d7c52b198d680fe65b1a8d1b001f0173ffa2536ca2e7082431d726ce1f6714cd","c07f251e1c4e415a838e5498380b55cfea94f3513229de292d2aa85ae52fc3e9","0ed401424892d6bf294a5374efe512d6951b54a71e5dd0290c55b6d0d915f6f7","b945be6da6a3616ef3a250bfe223362b1c7c6872e775b0c4d82a1bf7a28ff902","beea49237dd7c7110fabf3c7509919c9cb9da841d847c53cac162dc3479e2f87","0f45f8a529c450d8f394106cc622bff79e44a1716e1ac9c3cc68b43f7ecf65ee","c624ce90b04c27ce4f318ba6330d39bde3d4e306f0f497ce78d4bda5ab8e22ca","9b8253aa5cb2c82d505f72afdbf96e83b15cc6b9a6f4fadbbbab46210d5f1977","86a8f52e4b1ac49155e889376bcfa8528a634c90c27fec65aa0e949f77b740c5","aab5dd41c1e2316cc0b42a7dd15684f8582d5a1d16c0516276a2a8a7d0fecd9c","59948226626ee210045296ba1fc6cb0fe748d1ff613204e08e7157ab6862dee7","ec3e54d8b713c170fdc8110a7e4a6a97513a7ab6b05ac9e1100cb064d2bb7349","43beb30ecb39a603fde4376554887310b0699f25f7f39c5c91e3147b51bb3a26","666b77d7f06f49da114b090a399abbfa66d5b6c01a3fd9dc4f063a52ace28507","31997714a93fbc570f52d47d6a8ebfb021a34a68ea9ba58bbb69cdec9565657e","6032e4262822160128e644de3fc4410bcd7517c2f137525fd2623d2bb23cb0d3","8bd5c9b1016629c144fd228983395b9dbf0676a576716bc3d316cab612c33cd5","2ed90bd3925b23aed8f859ffd0e885250be0424ca2b57e9866dabef152e1d6b7","93f6bd17d92dab9db7897e1430a5aeaa03bcf51623156213d8397710367a76ce","3f62b770a42e8c47c7008726f95aa383e69d97e85e680d237b99fcb0ee601dd8","5b84cfe78028c35c3bb89c042f18bf08d09da11e82d275c378ae4d07d8477e6c","980d21b0081cbf81774083b1e3a46f4bbdcd2b68858df0f66d7fad9c82bc34bc","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","b17f3bb7d8333479c7e45e5f3d876761b9bca58f97594eca3f6a944fd825e632","3c1f1236cce6d6e0c4e2c1b4371e6f72d7c14842ecd76a98ed0748ee5730c8f3","6d7f58d5ea72d7834946fd7104a734dc7d40661be8b2e1eaced1ddce3268ebaf","4c26222991e6c97d5a8f541d4f2c67585eda9e8b33cf9f52931b098045236e88","3140d587067e55ce4028275cf71b40a3fd431863ad148efc3106af84a0794cf9","47383b45796d525a4039cd22d2840ac55a1ff03a43d027f7f867ba7314a9cf53","6548773b3abbc18de29176c2141f766d4e437e40596ee480447abf83575445ad","6ddd27af0436ce59dd4c1896e2bfdb2bdb2529847d078b83ce67a144dff05491","816264799aef3fd5a09a3b6c25217d5ec26a9dfc7465eac7d6073bcdc7d88f3f","9f9e5bae412fa5909fae636d6733aee27a108cc2ed5b13980611016336774d3c","662fe197bba64bd3f17ee118058cd2d0d2dbe33d7c0c865fd6365d90bfc44e1e","030519c351f800551cac2658038804969ca4584d2c0175a710602ac234ca1340","0278a6939ca83cd040b08ff8c5fc7838b6693ddc52f22526bf158e6b10e0246c","c2d6206e5ba4fd3063b01218c2b3b997afc1cfbeb49fcee991fa8595842ce53d","6a8096993458a3d71229031aa7415974eb5b47b320213e29660adfb519d6a3f4","cb7996a1af5b1d276483cd0c9b9de6540eff021abc90a720511ff4464519a2ff","9df6ec68878d65bc690ea3a33ce3ef5aa8254c36bc5f8346c0c2fd1f3b88a35c","a4fad04c4acc8a4b195cbbccef4c55019104753d547d5c94441643ccc89108a0","0244c23ea642361f7c192c1f0cfff9c12cfa5f51f9b155edd5c0a89fef308d34","6548ab4b57eb9d092471a04513091673345f2fd95d5b876f600402ea8d603ee0","fe1e3bdc462ec1f6f49ccba12526577b1a3d21811c79b58faa7f229374828fd3","d0f11e830aa1350a31d9c00a0197243e9711e4882947aef53a96c629f405cb10","f75cd30f162c2af5e5aca39c01c1a521bfa034fae523793de872815a3468bc08","8d419a77d65f91a5788ff760c1773d68fbdd194f5e63ff877a5e9c879d8a6a9c","334e40b3530b0d92518444b2a0b2608b7988c7132febc93e04ca9c15d0e8a058","9b6aaeafd7d5c93f3eacc9ef727fd64dfd75a63274e5137f6ce182eee60cca71","6bb747ac019210ef62125c2f0f0f4129010c765e556f4ce072aa0fadc86542d2","99e1bb2aca37fd9d6b86d517896e05eba415987dd84610a2789514c0d93502f4","1f4f52e9f3c7d6661d24e6a9759eb073ca1d8bd0bd0da0e77c95ac6db46ec47e","65c506882b16993f4870c2d73fb48b6d34b7d91d73acc6cacc3307e99bec42bf","9aff8604f50c9ea7d547330c1d168a6eb3d53d65a1600701c4741241571b9e13","61103d02997ef119fa02e32e092658523c4fe1232643e38c1f505015c4cbd3a3","779805755635c2da3c6d52f0801c33ff8c48c4f14071d48acfae117f80abd1ac","36b52ede5bd6ead9bab07bb0398202bcda8c2770e5b5f347d82b0f5f874a371d","1c14b7c3b1cc7513296e21f28436e8a050deaacacd77b14e37764ab0eef4070a","080b1aa93227952b4dd74b9d2c6e4f6002eb8403533749116a1c53bb9961c02d","874087eec1d457f6e3baf5ac46c42ea200e55040b394fac667aa3a64c49f5f6c","6e8a5b04a18abb192abc89d7219b9c6f633cb3136777ec808673a65f111ca749","6610b9f45f1f71d2b1fb67df49cbcabe3f9e668a1ccb7d8328a51407b259ffb3","fcc8beef29f39f09b1d9c9f99c42f9fed605ab1c28d2a630185f732b9ba53763","8b497c8cdd875848164f60712378fb15fbc2d625b67d29285845a51fcca57aff","0be91c7eb27de7e2b84c2caa3f89ac2c314de7e00d142c01b3baa0c88163bba4","0a0658c71cfa72984205a2f33b1e28e5e5fdbce0e4fb88186aed4e5a658065dc","cb047832dc68f5a2c41c62c5e95ddcacbae3a8b034d40cd15319a8cb7f25104a","980336ccdfc3c08f3c3b201aa6662e6016e20f15847f8465b68f3e8e67b4665c","5a3493939995f46ff3d9073cd534fb8961c3bf4e08c71db27066ff03d906dea8","bb5a2ac327605ebebf831c469b05bd34a33a6a46ee8c1edd9f3310aad32cf6a1","53f91718970aebc7f62bf345d5cc142d05fea4a898dc2077d3fa2d9a307c7c23","a666f7afc7c92e446555b395a4a51b56bfb4eea6d94c4d74df4acda372c3eafb",{"version":"8839183ef160bc38dd808df85cf560ed61a5b0145b6bdecbfa8b95b7b647e06e","affectsGlobalScope":true},"5e379df3d61561c2ed7789b5995b9ba2143bbba21a905e2381e16efe7d1fa424","f07a137bbe2de7a122c37bfea00e761975fb264c49f18003d398d71b3fb35a5f","1358eeee3ec0967677540238b34a4b74750430b829314926cfe447478bd55fcf","4f69796a7c13a8ce4cab08a0630661c96c1ebc4af169b2e85fae95679a0df30b","2b029331136db8dfa9704ea4418944303aa9adcff5d265f0fe96b2b13cda08e9","362968c41d11b6ceb3b98bff924730e5e12e16eb589c273e05bb5ca7394151d6","496aaa1fda9fc368d8acac5434f53e10a662798157c56fc000360264fa305d63","918c642c9f073c0c873d3812c68868505f567b6b1128a1170c4ba74b5fd18dd4","2785698f900fdfedd9c81879b7741d263c6d5853164aa5c214a280e633bba9d4","a1d8da0e8e6d3a85899f13ff11b2fa1f0d3539d26133dcebae1cd6daec39a8a7","8952dd3e4ad7e445743358eb0630e70dc6bdc3c06598a0fd4bf360e959a77c55","8f348c1444112d4d938251a6f135aa9a8d6518573a40ed127e5a6e75a0b9060f","e6f6440893f51adcf17b8498224004a65448828e1d95f2a06244a34a7525ccae","193f3eeb12d0c70404fddd0d6c6d395a6721320284d0d4d39e0538e47ac6931e","ab408226026bb8f267f4b7578d9c853db182cd1a4e4a05cdbc4cc36103075142","a7d992c4e10ca67ded5ea1bd4b974a87bc5395b2f51ac038e89c09aa2c9b1ddc","a85b317beb9f4b26f5c25fdaf03d925f9545fadb3679d1366324e9212b416b96","e5423640cf93ef900af69ac6b4efdbe339b0b332d15ed5f0ac15209c5fd86b50","eaec27135176a532508108c395b02e36658b861398d67b071790a0cddd5f595f","a4a3de26bc39d380e4021163f89f4b2fbf82f2a712b010efac1698bfd8c288ce","21b3d5e502c3c1eed625d13559db2a8df2ccd4f9e15185b158d5de392153db2d","2ba6ea7729eb2976f3397e6c9f381796fbc458fc01b076c357210ec2cbbc5b99","417692489d8e511510cf1268f89374466d7ef8d9edb085adbacc7756ffceed73","963a49f6949886df3d3d3dffef6ac3dab5f33704b918edb519ea3c063ba8eb35","7bd08ed4a983c57145375265be7d27b8ee27adf462c10c3d328a993ca89d9e19","970b722b55e730c9a4f78633f83c7c7769920293e2dfd45a58452bfe3486c63e","6e795e6270d39e918c7a0e62ac73793cda06fcf4b3692ee46583e15f5bf57ab8","ef459122494c9a30381f945cc5c1ac96dd687d1d404e32e19da940f194ac2b09","5c09195ef359ffa9c6bbdb4fefb101d87ede4b9e9c28213faf5b45d102e4c609","80b4d93a4dcc90a12f6f4bb7c6851a8182ae29e556716d0d80b5c012a5ef554a","2556ef9d1820e0b6bbca6dd65a50ea64f525c4d8247ab50dff44c3f0d14a5643","cbd1c836db190d6e3add07165afc228f04e1f6170e1fe3aa5e6fc24a7e9573a3","9b13881feb958237232586d888a10a39d47cdffe3ee34688ed41888fa7baad94","122fe82cf5af80f0b26832b258b537b7dfe3ec28449c301b259ab10204b50d45","b1d4e95f74b44961c24ab656a9e18a8b048748d0ed0dac69c72f42128f1e6331","d74d2a92b54f95e47d2b76bd5ee516aab7ae93afb79cd34c6681dd29eb09e72a","747e6326a724bc54f799a466a5b5c4978a601a04a063a5bdabe150af2f25b9e2","b57e22e53b56cca7a57bfcfb234aa6a66f9b9e4c07159d7388f94f17a3eaee2c","e47709ec4d1618ef429648cd8ef967aef2005526b34fcbfac33037add347dc71","b81abb3e47fbbb3af41fa75bada89bbcfa4b0feed9a0d6d4b19ed1ce1033b53c","15b330546e9784461058e5fd6e2346bf272140fa6f0cda34e193ae501d8b17b1","4d8ce72fd080bf9a46bdcc274bcbacccedd66d84e203966b197ac25a96932183","73327e6ae34e3f6591877fb75b451cf620cbbd76ee2b678213a9f793633cd0d3","3f1ba2f69944fa346789db7f60d53c9bec00032de0d797967978dea42e77b941","3f5df31539fee4816b97d4e45b4344fbdaf3ca59f6df941f8d780ee441e92cc1","48e6290931da300900f1c3aa9c5894406a885d80e6e196c17f923a11a58a39b6","3857c1773b8503c3ca45b7bc09ac89c3930c85ce93021054503f73d5d9101b5c","72702bd07fd6fb3ef64aadbcb909103aadfe71ee76e9fdeb11e0c92693cff6cb","c7a2d32f7fd176fd5bd8f14c758bf2d8e67d845274b43b352b65645fae2ebc27",{"version":"cd756ccdabf433dd02b84d755383e489f14b3c1aede0477783aa04830fd5d695","affectsGlobalScope":true},"9cbdff04326da794ba008c0fc977ab062d1fe3fa2e9759654c72ffbe54b64a7c","706233548b0f0e1574d7894bf34f9117f74681ecc35e4b66804f3260020bd6c7","150855f967a6490161d5aeed4cc4adf31fcb8f5dbe54b75799c12b8687fc9cc2","cf08b7139adc21b94204e3d4b3daf9946e3462a9e3fdc3e94c87e767e7936e20","47ddb601df40bfa01cebdd06ee8b87d0b72aa1259a4ceba3ad3b5cf68130112a","6b6392704ddb3f50e647dbbb716782bdd0cf8ea9cc134aae256a26223e632b47","da7959ca32b26af48c58c5f15a96125601bd38158382e14f67c5996bae6e561e","df90b0c6b1d81851364c4d97fa23b91a993482bcf4a7bed7c7a24aa41632d494","aa894c2d2e8d43f7659c28fb0ff1dcb1105c2ff1979a455d98fa6cacc54c26e2","11ee9ab699b4619d217c640d917ca198f58066a86bd58c2917197d62aa6601e0","9f1e24cba6763f19f8a5fab905bee04890065cdcbce0bdf867387104ed3c8e70","abbcc437e0792ab2fe08797ceca1ec85a95ec413c51612313b18ab8e75f690f6","cd28efe88fac7a92f3f5cfc7dd3c764f0b31bdaaa061ff044de1639810d6a7da","8b2100d3ba68063b7baf5038f26eefe46543dcebf1e7dbaf46277f24307cefcb","131b7f32092aa78e12fcb2a6db7c71e17f85e076c0635ad8d991b80d10130c19","d1c84af1e6d5fa4a5f4badd45b03b67c9255a675df235a3ec25307a0f5524278","aa4d6dc9282133162a76109d99c5795583276c4fd27284f128d484acf12b0841","3355c4c572f076ad963d95f0e28075b8558e2ab492c84eb94f9e2c48f1c2368b","5638cfd48b0c56bc9ed0c779d53a40b92c9cd9c9d6312e3a21c52542d38094f3","827eb54656695635a6e25543f711f0fe86d1083e5e1c0e84f394ffc122bd3ad7","2309cee540edc190aa607149b673b437cb8807f4e8d921bf7f5a50e6aa8d609c","908a84aef7827422ff7c8623c661bcf2bcb0cb7a30aea39e82a79bbc09042ef6","703509e96cc30dce834ef8188c958c69306473b8a7e5cb3a6f324cee05a1f7bb","900daf04dc607dc3858c0f976d6f9e17b829a07de58d62dc6f730eaf06986075","08e0ac95e650bd4c87145b6ab2257b70c06254bf76a0b9f8a7d60c51fb8ed6b8","4b57ec505a035491c692b89af2c6902c312ec22f8fa9b6dae3e93686659fb7e0","7d796672940d3b2d37f2edea4d7bcf4c7993966286006228cbc8fa35ac92871d","132fd53917ed7f55275faa52c35e4d4d41e9576fea231d12740b723df2bade93","de2ecf9b1d6f60338f7b59b6f593ef77af9abd0e70ba8f2942953d0c6e1850af","d7516349cb9b5ce3584aa2897dcbecd932fda66ad4c93161feec7e21b57f7b9b","27ca878cf70b3030e8403f51ce65949d364fa776d6dae3527f91635a40836672","4c494db381ad1f479c137fdbb89dd32af10082cba7c11c2950a4e207bf4a3966","869b0f507115c42896d917642f821752e8a84827bfe9ed74c23d76fb0c64c681","4df0891b133884cd9ed752d31c7d0ec0a09234e9ed5394abffd3c660761598db","b603b62d3dcd31ef757dc7339b4fa8acdbca318b0fb9ac485f9a1351955615f9","e642bd47b75ad6b53cbf0dfd7ddfa0f120bd10193f0c58ec37d87b59bf604aca","be90b24d2ee6f875ce3aaa482e7c41a54278856b03d04212681c4032df62baf9","78f5ff400b3cb37e7b90eef1ff311253ed31c8cb66505e9828fad099bffde021","372c47090e1131305d163469a895ff2938f33fa73aad988df31cd31743f9efb6","71c67dc6987bdbd5599353f90009ff825dd7db0450ef9a0aee5bb0c574d18512","6f12403b5eca6ae7ca8e3efe3eeb9c683b06ce3e3844ccfd04098d83cd7e4957","282c535df88175d64d9df4550d2fd1176fd940c1c6822f1e7584003237f179d3","c3a4752cf103e4c6034d5bd449c8f9d5e7b352d22a5f8f9a41a8efb11646f9c2","11a9e38611ac3c77c74240c58b6bd64a0032128b29354e999650f1de1e034b1c","4ed103ca6fff9cb244f7c4b86d1eb28ce8069c32db720784329946731badb5bb","d738f282842970e058672663311c6875482ee36607c88b98ffb6604fba99cb2a","ec859cd8226aa623e41bbb47c249a55ee16dc1b8647359585244d57d3a5ed0c7","8891c6e959d253a66434ff5dc9ae46058fb3493e84b4ca39f710ef2d350656b1","c4463cf02535444dcbc3e67ecd29f1972490f74e49957d6fd4282a1013796ba6","0cb0a957ff02de0b25fd0f3f37130ca7f22d1e0dea256569c714c1f73c6791f8","7d69ad4d34cf1ba0c6ec2bed2ac7ee2cf02b4156e3d54116fd67697511caf6b3","c191f9f565d1bb23450c90615fd5c8c147a5397e20e3b607ad4b012f6f5a5dc6","7b531444b95f8da4cd16132e0c3656b76d4fc423952781a5b0c7eea6e99b0f4c","8293e7a7cc02912ab0fdbf24e4ead59b7df6eabea2e7cbb542fad7cae43a2b05","0a2f0e62d9667f87ea7732a5395ed406b4a8eab2035eec9d24cdc5b842733c67","6be3ccb6f71ad3711daa58fc5ca2309c055541b9e4d15b8b99192f2f3a5fddda","cdac7e46e615e1fdcca7c3a2aab2fbd19085443048733cf239a090f7a17efa27","6ee58aa536dabb19b09bc036f1abe83feb51e13d63b23d30b2d0631a2de99b8f","1ee47e6ed1cf98c573934f9a63e65cd7acf7314a2654da2630c2be6bda12871b","8fcc2bc8dae2c29f7db02ca5112f343936e544bab0dd66c997ec2045fae4b660","89a120f976e17500b9e242637ae377462850517b04aa45981c92c60a490386ee","5e27d8df0309ba8dbd8459750ef7c2c1db5aedeabbc819220a1ecca79c84f4dc","8ef5395d145d1ae1306c20580380779723542f0a4d5c22c0dfe536d5922022ec","155d9f9576b2bb2662e58b8dc5979c3b614250c3279bbdddfbe54749b0ef2ec2","8a9e43259a9f444d80be68f87fd5d8a90c7915b519ef2d3e434d68a835490978","ee80d37ca2d62bd6e33106596fdf39827c248fab4b6dedcee5bdf6f9b4fca454","e95f565a375c039e04187524457c39b362419bdd537afcd52162e8df04e1f87c","d57804e7c53f370b8df0417df2aaea2c5cc2bcae96d6bb06f6bbdf8c3f06f939","a4dad01f270d6cd8ff8d8229d0975833ebf847e560dafaded532f8e31a497ecf","4e78c87355f7e4fd9524d7582a14bf72771aeee33acb73a848de8bf2e44d8831","71a2be4b91958938b4ada303568f2b7fedab5e7e8bc36ca952d51e10e712ae75","2ef7fe0d833200df0facc4d0e5c23a992515f8497a857ef82658738d6bf4cbef","c1e87ae9c6982a1628be91d9f3a52ec5a73ed1a6d42e4e8119bf96c453b14cc0","161a4d1342b99b095a9531e65ba773ab33df0d906d7ae9f4f39180320fe23237","722cf9592e0d42cb903e40aa725f3e8e7cde91271f6be8c318bfbd7e337ff886","6a6aaf58d8ccff1409f921c37d0eb6cec3113df483c485385af3d90414e8eb07","ac9b69620b356f5bcfbc17d6a2a0591354eade1c5febb05cb1079b30ea0094c6","a6d50ab98b96f5a842e400b24463b1a5450286213ddab6e833d7743564d02d70","1ed0bf138e87912d741e28333b58cbf814ae863783b3b404d2454cbabb9c5fc0","3452ee7d8ef0b1bbd47b2a56924a1dc3c79dc84a19d212e9dc496f92e4943aa0","22a21e410a4bf4817ac3b09ab90c51ec5f031edbf2e92a19b6c4832068e1f4c7","612d8ed678ed9c884c875823a72786d4820f84daff536b9ec1e4d9c829a6c66a","aa5e20a11df1791f13b47c7cf9ea9ff9f522a32b32a4225a1143d7d737ab7975","9bdc5cea7e3bfb096ad8ff730bfb737d922c2a83aeb5253cc1c5bd50115b0fee","55e7b39026dd9cd7b6c68be0a105b5e14063a9bdb8621d385bfb7c468ccebbbe","6963765b0ee8f9ccbcf3e6c85c0e1edc1307d9960b107368e6dff19e9170b444","b599eb810af9ddaba3d57749757c76be8f1095d3d7804984bfe879d25dc85368","e21a6a522121e5dd6c6cdf2a0d8980cd11e2ff1191c2ef05819c300fdd3b25a3","fc68efc28f7783d4756b053f6811fd63d6c4ab4717fd102c638c6471f969093e","2518ed2149cfdb36f7e9bc29561a0d1813d491e2ae78baa7cba49c578b354a27","2d2f0202995cb6116376960f788a6a0df5fe2a38b766de86632295f86d29a058","d160fe745f9c3b72d7b9036fdb2b6b500a520d43e36bb842c927b6fe59ea2c23","a17e6861b709149f29a2bd896cee94526df2f06b24a2b60614b56649b5e9aabe","9c79ace686f720f4dd833740f7190e12cdce363362c982c164745527a412ef40","567302ca0ac78abb4d3ede7a2104a6037f664e857f08177329a458f4dfaed476","75d48857bc4216880443a24d985071262bb8b89a9952c77fd430cb0caa21f9bf","2e9967c4e60229f21bf3caa722d38680858af978a9afd22696073b320850316c","d5bbd453310990e851908183fbbef9e6e2db8e0c86d97b42b723fd5238f71c81","95e76bed30f6e993e1fcc1b90a4675682e4800ae43403547a775d6e3c7ab2b0f","8b206b995edc6dd849b85c1c56531b9780e3ba75302fd02a2d173f008028707e","8cc038e44d9d447fbf0744d90d8ea17155359c977a1c3c0d84416738bb320d65","39b2a085a63b2029e5c647facd010db2de444efab1d42ab76996b67c30b09b8d","d53f9f96afd41359edeb2d5ad98559f3bfad261391d5aef95320fefb0c6a8742","c75c7ceb1ae9aaa610a7a0445b6d4cff08a419dacb734f09ae26d6ea403c05a0","639f9321a98b734242a3573764d7f1de5369b0b0b10c768ae37639e8bda5dd03","cc914edcda9dcd4935efe2639577dc0c89f7a1e3386b1ec349d5e188bfab2fb4","dc5fe5f6b39c3fdfaeba333bcd5f0cc98bb3068797a4d7010f585366f549ddf7","4a3ab8cb278bfd1f18f24cc45a02188b63afa6aef50035df6d79c4638f24059a","e724c9ce92f2a8a31ed260764c5455852a13d292e2a31d26acc6840ec0e83208","6829629d578b001051fb6dc2fb4976fbce015c04666b5a73d97335e003a75f7e","e53d21a2061c7b91944dfebec59bed2ce24ab165f984e3bae0f3a7a9f6c0458e","6eef4d0ee338cea465480c9cbd575df6f78d47fe0c2df1cd09fadcb7849e10cb","95d83d3380f931b477b8001183e8f3166db7b1d49df14466bf90693e223b82b8","78889389420cbcbbe4146345a54cc896a88aa27fbaf759dc9235f1bc66c01a19","62af44d31faa5b32c9b29579330556a5340cecbd9d6326d236ed94c3d1667c2c","6e503f5e906174df62cf3c7612497591a1dbb63110cdc524f0735a2016a6ad2e","ed2b7ce9544f75d9aece6f8ed250b7c7048c3067de906c2c9f2e68d632b8fdcc","c6daa2b36f9950e2ff6bb0138fc2f63a9dfd6e36c1aec88c47e7d06d6ead2d99","49e2beeee0d4fe340562124e5e9a39d2afacaf567a78d08aad7226457a1aa9ae","eced89c8bebaf21ffa42987fcb24bc4f753db4761b8e90031b605508ed6eef5f",{"version":"f8dd71445ae01b1572ffd4a7dea919dc804dcbe349d7c5ff3f99d2f270002f0d","signature":"3441a817673360deec8cc686ecbd4c24b0f8dfa156c17df612b7237df36b37db"},"a76e15cee67e508374352319dc28e13433b45b4b9848f3d0a3c7d14251aea11c",{"version":"734d33f6cb8bf8bb06f7693f77362a637636ce7f6176d72afb5d81c78a0462e4","signature":"ec1773b81203b4d7c84611e4e1a5238fbcaaf8c810582aea62352bc1def0e188","affectsGlobalScope":true},"21522c0f405e58c8dd89cd97eb3d1aa9865ba017fde102d01f86ab50b44e5610","ddb0b9fcd2670bce028e60ca5768719c5d21508b00dc83acf6af25cbe1fcc5ec","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","6b25a715df346d7356999c26939b5ea4412f67865f06c55a59dd643817d77a56","1461d03b5381ca3164aed35de1d8565b419e0d7a978ead6b495e3925f1f3f263","edaff827b058523df8cfb6d7812a5084afa6648d4ff5fb01351da8eafe2f0232",{"version":"be7abf1df570aea13a80f9e26c48e4ec51ee5b5c807326fc730eadba8a118905","affectsGlobalScope":true},{"version":"f375b4a3555152aba61fd2d765bb8b618aef03031d271083d614e4b6f3089b6c","affectsGlobalScope":true},{"version":"b63a86ef33f79196f0af1ddfbefbf2ec6860daa4bd34bb8f6cdf0adc69c2fb1c","affectsGlobalScope":true},{"version":"b61b844b8d784ccf5131fe9780ce8ada9a5ae2f89919e4ac241dbca817dfd980","affectsGlobalScope":true},{"version":"379889dd93efc659283b3b88d8c0fd0738e557d8bdf5c9fbf10cee6da71aa9cb","affectsGlobalScope":true},"0bcda522a4bb74c79e11a2c932db88eaca087a6fb11eb3fda4aaa4d655b1783e","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"9c230a07d657b3c65ad79e819b0c362a8ebcc0730f9a3d552a26ea632e2bfd53","c1ea344dc311b2c539ed1e3b4e17e9f4853dc7f348366b51f1d8a09a40fb223f","9990f9e566bc3c2c6e38df81294fb756e7f5b7b0e5bb17ab75384e190548b4b6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","e6f0cb9d8cb2e38bec66e032e73caa3e7c6671f21ed7196acb821aec462051f2","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","b589d625dde2d63aafbe88143e5fbd7b98dd6aca9782747eafb6e88a3f43f8bc","3f9cc1bdf9e8700facd05b9828032cc01dbc3e500fda6afb2d92509b8442ab2c","13d03ed8573272bf7ff7c574db49f49451bdc84c05cd777d059ae3d36f3a9bce","9aacb691f7080baee1dacad69f91cde282375649e96d8020425cb37d3344b39e","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","31128279dfc964ec361141757bd7872bce19adc3625102f7a1b36ea9dea5a7bc","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"300c86d156193bfa3d2d42e730d166e56f9312f4ae4318230ff0f378728349fb","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","1d96568a72657f762763c920d3804868db48d638abd87ddcd82bcb200ef9625c","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","42e8e804d18c78b8fba17c6926b584ec600709c7b4c2f689d45914b15c414b74","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"4564f780fd20582c57ae218a4cd017717181ab0e228639d905ef054288655b5e","affectsGlobalScope":true},"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"9beb1014927166017e49ed264a564350d28e8bc48b84044efc763b7e213709cb","5774751340e987a6a9e4a5dcc03ff68a6515adc2b91423e1af2f660fc8f30e81","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649",{"version":"d27f28f8a18ec93bda158dfd6e8e632a5976c37b2cc9e2fe948f648b3575e870","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","a73a445c1e0a6d0f8b48e8eb22dc9d647896783a7f8991cbbc31c0d94bf1f5a2","65455ea1b00bae7bd26d3c8c2401eb3d10401c09c55192d6f3b8b2275eda20c2","2494cf4a1e8a989c83f9a9dbb9cd3658d4d496bedd381be5787dec0e2802c800","a95b76aef31395752eb5cb7b386be2e287fdc32dfdf7bdbbb666e333133b1ef7","332c7ccf95426d3156ebedb7295979ef2435bd1c1a940024a4d068da3418718f","e03334588c63840b7054accd0b90f29c5890db6a6555ac0869a78a23297f1396","c3052485f32a96bfde75a2976c1238995522584ba464f04ff16a8a40af5e50d1","c220410b8e956fa157ce4e5e6ac871f0f433aa120c334d906ff1f5e2c7369e95","960a68ced7820108787135bdae5265d2cc4b511b7dcfd5b8f213432a8483daf1","5e8db4872785292074b394d821ae2fc10e4f8edc597776368aebbe8aefb24422","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","f4cf5f0ad1cfb0ceebbe4fbe8aaf0aa728e899c99cc36ec6c0c4b8f6e8a84c83","7ccce4adb23a87a044c257685613126b47160f6975b224cea5f6af36c7f37514","26edf4435648f73b2b5ccc07f3159fea08b46b20e5230f95e57f6b62e388d2b2","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","d51a4e4450ee23d941db79652c660ca2612691dba235fd5d14d4b2a622c72312","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","7e77ad30462ed3caffe335308e44a778fe9ad8d590d914d2260e5d456abd1462","61f41da9aaa809e5142b1d849d4e70f3e09913a5cb32c629bf6e61ef27967ff7","3bae0eca953639d7c2e03211cdf1ad452cf50d48e9779b1ecb56542ad3254a24","abd79d61be476addd783d0e0bace2e3c02bb3e38ec23bdfd236adc421b038939",{"version":"43050667654463f27c2290b98bcd6c01ac33849b0f032c0a66a203b0642c9de4","affectsGlobalScope":true},"b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","9cbfee0d2998dc92715f33d94e0cf9650b5e07f74cb40331dcccbbeaf4f36872","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","e9eb1b173aa166892f3eddab182e49cfe59aa2e14d33aedb6b49d175ed6a3750","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"inlineSources":true,"module":6,"outDir":"./types","rootDir":"../src","sourceMap":true,"strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[90,371],[90],[60,90,97,117,118,133],[90,117,118,134,135],[90,97,117],[90,97,133,136,139],[90,97,136,139,140],[90,137,138,139,141,142],[90,97,139],[90,97,133,136,137,138,141],[90,97,124],[90,97],[60,90,97],[48,90,97],[90,120,121,122,123,124,125,126,127,128,129,130,131,132],[90,97,122,123],[90,97,122,124],[90,155,160,300],[90,324,325],[90,155,296,297,298],[90,297],[90,298],[90,279,297,298,299],[90,301],[90,301,302,318,322],[90,321],[90,155,303,304,317],[90,155,186],[90,155,187],[90,187,188,189,190,191,192],[90,207,213,214,217],[90,207,213,216],[90,207,213,215,217],[90,209,211],[90,208],[90,209,211,212],[90,210],[90,216,221],[90,207,213,216,221],[90,213,216,218,219,220],[90,207,213,214,215,216,217,221],[90,207,213],[90,155,330],[90,155,300,323,328,329,331],[90,155,300,323,326,327,328,330,331],[90,155,300,329],[90,155,160,330],[90,328,329,330,331,332,333,337],[90,155,193,338],[90,329,330,333],[90,155,334,335,336,338],[90,330,333],[90,155,330,333],[90,155,193,330,331],[90,155,186,193,194],[90,195],[90,97,155,195,198,199],[90,97,155,186,193,195,198],[90,199],[90,195,196,199,200,201,202,203],[90,97,196,198,201],[90,194,201],[90,155,193],[90,155,156],[90,156,157],[90,156,157,158,159],[90,155],[90,105,155,347],[90,105,155],[90,105],[90,108],[90,105,108],[90,106,107,108,109,110,111,112,113,114,115,116,144,147,148,149,150,151,152,153,154],[90,99,105,106],[90,108,114,116,143],[90,146],[90,108,109],[90,105,150],[90,319,320],[90,371,372,373,374,375],[90,371,373],[63,90,97,377],[54,90,97],[90,97,380],[90,382],[90,383,384,386],[78,90,97],[89,90,97,393],[63,90,97],[90,145],[90,399,400],[90,397,398,399],[60,63,90,97,390,391,392],[90,378,392,393,404],[90,385],[60,90,97,408],[61,90,97],[90,412],[90,418],[60,63,65,68,78,89,90,97],[90,423],[90,423,425],[90,424],[90,431,436],[90,429,432],[90,429,432,433,434],[90,431],[90,428,435],[90,430],[60,90,92,97,450,451,453],[90,452],[90,467],[90,455,457,458,459,460,461,462,463,464,465,466,467],[90,455,456,458,459,460,461,462,463,464,465,466,467],[90,456,457,458,459,460,461,462,463,464,465,466,467],[90,455,456,457,459,460,461,462,463,464,465,466,467],[90,455,456,457,458,460,461,462,463,464,465,466,467],[90,455,456,457,458,459,461,462,463,464,465,466,467],[90,455,456,457,458,459,460,462,463,464,465,466,467],[90,455,456,457,458,459,460,461,463,464,465,466,467],[90,455,456,457,458,459,460,461,462,464,465,466,467],[90,455,456,457,458,459,460,461,462,463,465,466,467],[90,455,456,457,458,459,460,461,462,463,464,466,467],[90,455,456,457,458,459,460,461,462,463,464,465,467],[90,455,456,457,458,459,460,461,462,463,464,465,466],[44,90],[47,90],[48,53,81,90],[49,60,61,68,78,89,90],[49,50,60,68,90],[51,90],[52,53,61,69,90],[53,78,86,90],[54,56,60,68,90],[55,90],[56,57,90],[60,90],[58,60,90],[60,61,62,78,89,90],[60,61,62,75,78,81,90],[90,94],[56,63,68,78,89,90],[60,61,63,64,68,78,86,89,90],[63,65,78,86,89,90],[44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[60,66,90],[67,89,90],[56,60,68,78,90],[69,90],[70,90],[47,71,90],[72,88,90,94],[73,90],[74,90],[60,75,76,90],[75,77,90,92],[48,60,78,79,80,81,90],[48,78,80,90],[78,79,90],[81,90],[82,90],[60,84,85,90],[84,85,90],[53,68,78,86,90],[87,90],[68,88,90],[48,63,74,89,90],[53,90],[78,90,91],[90,92],[90,93],[48,53,60,62,71,78,89,90,92,94],[78,90,95],[90,418,478],[90,478,479,480,481,482],[90,414,415,416,417],[90,97,197],[61,90,97,409],[90,489,528],[90,489,513,528],[90,528],[90,489],[90,489,514,528],[90,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527],[90,514,528],[61,78,90,97,389],[61,63,90,97],[61,90,405],[63,90,97,403],[90,403],[90,402],[90,97,540,541,542,543,544,545,546,547,548,549,550],[90,539,540,549],[90,540,549],[90,532,539,540,549],[90,540],[53,90,539,549],[90,539,540,541,542,543,544,545,546,547,548,550],[60,63,65,78,86,89,90,95,97],[90,554],[60,78,90,97],[90,267],[90,266],[90,97,303,307,311],[90,97,303,307],[48,90,97,303,307],[90,303,306],[90,97,307],[90,307,308,309,310,311,312,313,314,315,316],[90,97,311],[90,97,303,307,309,310],[90,291],[90,291,292,293,294,295],[90,280,281,282,283,284,285,286,287,288,289,290],[90,408],[90,406,407],[90,439],[90,438,439],[90,438],[90,438,439,440,442,443,446,447,448,449],[90,439,443],[90,438,439,440,442,443,444,445],[90,438,443],[90,443,447],[90,439,440,441],[90,440],[90,438,439,443],[90,97,305],[90,97,303],[90,98,100,101,102,103,104],[90,98,99],[90,100],[90,99,100],[90,98,100],[90,367],[61,70,90,365,366],[90,97,155,161],[90,155,167],[90,184],[90,155,161,167,168,184,185,257],[90,97,155,160,161],[90,162,163,164,165,166],[90,99,105,164],[90,245],[90,247,248,249,250,251,252,253,254,255],[90,155,223],[90,167,184,253],[90,167,184,223],[90,223,224,231,234,244,245,246,256],[90,167,184],[90,222,224],[90,224],[90,167],[90,231],[90,155,234],[90,205,206,225,226,227,228,229,230,232,233,235,236,237,238,239,240,241,242,243],[90,155,236],[90,167,205,206,225,226,227,228,229,230,232,233,235,236,237,238,239,240,241,242],[90,204,244],[90,155,224],[90,182],[90,105,169],[90,170,171,172,173,174,175,176,177,178,179,180,181],[90,169,182,183],[90,258],[90,261],[90,260],[90,105,155,268],[90,222],[90,155,160,258],[90,155,261],[90,105,258,275],[43,90,259,261,262,263,264,265,269,270,271,272,273,274,275,276,277,278,339,340,342,343,344,345,346,349,350,351,352,353,354],[90,105,155,338],[90,105,155,258,261,342],[90,341],[90,97,155,341,349,350,359],[90,342,360],[90,105,155,258,340],[90,105,258,340],[90,355,356,357,359,361,362,363,364],[90,349],[90,105,258,338,341,343,348,349],[90,99,105],[90,105,155,261,264,276,342,343],[90,261,358],[61,90,97,260],[365,366]],"referencedMap":[[373,1],[371,2],[134,3],[117,2],[136,4],[118,5],[135,2],[140,6],[141,7],[137,7],[143,8],[138,7],[142,9],[139,10],[125,11],[122,12],[129,13],[123,11],[120,14],[128,2],[133,15],[130,2],[131,2],[132,2],[127,12],[124,16],[121,2],[126,17],[324,18],[325,2],[326,19],[279,2],[299,20],[298,21],[297,22],[300,23],[302,24],[323,25],[322,26],[301,2],[318,27],[304,2],[187,28],[188,29],[189,29],[190,2],[191,29],[193,30],[192,29],[215,31],[217,32],[216,33],[207,2],[212,34],[209,35],[213,36],[211,37],[218,38],[219,39],[221,40],[220,38],[222,41],[214,42],[331,43],[330,44],[329,45],[328,46],[332,47],[338,48],[327,49],[334,50],[337,51],[335,52],[336,53],[333,54],[195,55],[196,56],[201,57],[199,58],[200,59],[204,60],[202,61],[203,62],[194,63],[157,64],[159,2],[158,65],[160,66],[156,67],[186,13],[348,68],[347,69],[106,70],[107,70],[109,71],[110,70],[111,70],[112,72],[113,2],[114,2],[115,2],[108,70],[155,73],[116,74],[144,75],[147,76],[148,2],[149,2],[150,2],[151,2],[152,2],[153,77],[154,78],[208,2],[210,2],[319,2],[321,79],[320,2],[370,2],[376,80],[372,1],[374,81],[375,1],[303,12],[378,82],[379,83],[381,84],[384,2],[383,85],[387,86],[388,87],[394,88],[377,89],[395,2],[146,90],[396,2],[401,91],[397,2],[400,92],[399,2],[393,93],[405,94],[386,95],[385,2],[409,96],[410,97],[411,87],[382,2],[413,98],[419,99],[420,2],[421,2],[422,100],[380,87],[423,2],[424,101],[426,102],[427,103],[437,104],[429,2],[433,105],[435,106],[434,105],[432,107],[436,108],[431,109],[430,2],[452,110],[453,111],[398,2],[454,2],[468,112],[456,113],[457,114],[455,115],[458,116],[459,117],[460,118],[461,119],[462,120],[463,121],[464,122],[465,123],[466,124],[467,125],[469,98],[389,2],[470,2],[471,2],[145,2],[44,126],[45,126],[47,127],[48,128],[49,129],[50,130],[51,131],[52,132],[53,133],[54,134],[55,135],[56,136],[57,136],[59,137],[58,138],[60,137],[61,139],[62,140],[46,141],[96,2],[63,142],[64,143],[65,144],[97,145],[66,146],[67,147],[68,148],[69,149],[70,150],[71,151],[72,152],[73,153],[74,154],[75,155],[76,155],[77,156],[78,157],[80,158],[79,159],[81,160],[82,161],[83,2],[84,162],[85,163],[86,164],[87,165],[88,166],[89,167],[90,168],[91,169],[92,170],[93,171],[94,172],[95,173],[472,2],[473,2],[474,12],[475,2],[416,2],[476,2],[392,2],[391,2],[477,99],[479,174],[481,99],[478,99],[480,174],[482,2],[483,175],[414,2],[418,176],[198,177],[197,2],[484,2],[485,2],[486,178],[487,2],[417,2],[488,12],[513,179],[514,180],[489,181],[492,181],[511,179],[512,179],[502,179],[501,182],[499,179],[494,179],[507,179],[505,179],[509,179],[493,179],[506,179],[510,179],[495,179],[496,179],[508,179],[490,179],[497,179],[498,179],[500,179],[504,179],[515,183],[503,179],[491,179],[528,184],[527,2],[522,183],[524,185],[523,183],[516,183],[517,183],[519,183],[521,183],[525,185],[526,185],[518,185],[520,185],[390,186],[529,187],[530,188],[404,189],[402,190],[403,191],[531,89],[532,2],[533,2],[534,87],[451,2],[412,2],[535,2],[536,2],[537,2],[538,2],[551,192],[550,193],[541,194],[542,195],[543,195],[544,194],[545,194],[546,194],[547,196],[540,197],[548,193],[549,198],[539,2],[552,2],[553,199],[554,2],[555,200],[556,201],[119,2],[428,2],[268,202],[266,2],[267,203],[415,2],[312,204],[309,205],[310,204],[308,206],[307,207],[313,208],[317,209],[316,2],[315,2],[314,210],[311,211],[290,2],[287,212],[289,212],[288,212],[286,212],[296,213],[291,214],[295,2],[292,2],[294,2],[293,2],[282,212],[283,212],[284,212],[280,2],[281,2],[285,212],[406,215],[408,216],[407,215],[440,217],[449,218],[438,2],[439,219],[450,220],[445,221],[446,222],[444,223],[448,224],[442,225],[441,226],[447,227],[443,218],[306,228],[305,229],[366,2],[425,2],[98,2],[105,230],[100,231],[101,232],[102,232],[103,233],[104,233],[99,234],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[369,2],[368,235],[367,236],[168,237],[161,238],[185,239],[258,240],[162,241],[163,67],[164,67],[167,242],[165,243],[166,2],[223,2],[246,244],[247,67],[248,239],[256,245],[249,67],[250,67],[251,246],[252,67],[254,247],[253,248],[255,70],[257,249],[231,70],[205,239],[206,250],[225,251],[226,252],[227,251],[228,2],[229,67],[230,253],[232,254],[233,2],[235,255],[244,256],[237,257],[236,67],[238,67],[239,238],[243,258],[240,253],[241,255],[242,239],[224,246],[245,259],[234,260],[183,261],[170,262],[179,262],[171,262],[172,262],[181,262],[173,262],[174,262],[182,263],[180,262],[175,262],[178,262],[176,262],[177,262],[184,264],[169,70],[43,2],[259,265],[262,266],[263,267],[264,2],[265,266],[269,268],[270,2],[271,2],[272,269],[273,2],[274,270],[356,2],[357,271],[275,2],[276,272],[277,2],[355,273],[339,274],[278,67],[343,275],[344,76],[342,276],[360,277],[361,278],[341,279],[362,2],[345,280],[365,281],[363,282],[346,2],[364,2],[350,283],[351,2],[340,284],[349,285],[352,265],[353,282],[354,67],[260,2],[261,267],[359,286],[358,287]],"exportedModulesMap":[[373,1],[371,2],[134,3],[117,2],[136,4],[118,5],[135,2],[140,6],[141,7],[137,7],[143,8],[138,7],[142,9],[139,10],[125,11],[122,12],[129,13],[123,11],[120,14],[128,2],[133,15],[130,2],[131,2],[132,2],[127,12],[124,16],[121,2],[126,17],[324,18],[325,2],[326,19],[279,2],[299,20],[298,21],[297,22],[300,23],[302,24],[323,25],[322,26],[301,2],[318,27],[304,2],[187,28],[188,29],[189,29],[190,2],[191,29],[193,30],[192,29],[215,31],[217,32],[216,33],[207,2],[212,34],[209,35],[213,36],[211,37],[218,38],[219,39],[221,40],[220,38],[222,41],[214,42],[331,43],[330,44],[329,45],[328,46],[332,47],[338,48],[327,49],[334,50],[337,51],[335,52],[336,53],[333,54],[195,55],[196,56],[201,57],[199,58],[200,59],[204,60],[202,61],[203,62],[194,63],[157,64],[159,2],[158,65],[160,66],[156,67],[186,13],[348,68],[347,69],[106,70],[107,70],[109,71],[110,70],[111,70],[112,72],[113,2],[114,2],[115,2],[108,70],[155,73],[116,74],[144,75],[147,76],[148,2],[149,2],[150,2],[151,2],[152,2],[153,77],[154,78],[208,2],[210,2],[319,2],[321,79],[320,2],[370,2],[376,80],[372,1],[374,81],[375,1],[303,12],[378,82],[379,83],[381,84],[384,2],[383,85],[387,86],[388,87],[394,88],[377,89],[395,2],[146,90],[396,2],[401,91],[397,2],[400,92],[399,2],[393,93],[405,94],[386,95],[385,2],[409,96],[410,97],[411,87],[382,2],[413,98],[419,99],[420,2],[421,2],[422,100],[380,87],[423,2],[424,101],[426,102],[427,103],[437,104],[429,2],[433,105],[435,106],[434,105],[432,107],[436,108],[431,109],[430,2],[452,110],[453,111],[398,2],[454,2],[468,112],[456,113],[457,114],[455,115],[458,116],[459,117],[460,118],[461,119],[462,120],[463,121],[464,122],[465,123],[466,124],[467,125],[469,98],[389,2],[470,2],[471,2],[145,2],[44,126],[45,126],[47,127],[48,128],[49,129],[50,130],[51,131],[52,132],[53,133],[54,134],[55,135],[56,136],[57,136],[59,137],[58,138],[60,137],[61,139],[62,140],[46,141],[96,2],[63,142],[64,143],[65,144],[97,145],[66,146],[67,147],[68,148],[69,149],[70,150],[71,151],[72,152],[73,153],[74,154],[75,155],[76,155],[77,156],[78,157],[80,158],[79,159],[81,160],[82,161],[83,2],[84,162],[85,163],[86,164],[87,165],[88,166],[89,167],[90,168],[91,169],[92,170],[93,171],[94,172],[95,173],[472,2],[473,2],[474,12],[475,2],[416,2],[476,2],[392,2],[391,2],[477,99],[479,174],[481,99],[478,99],[480,174],[482,2],[483,175],[414,2],[418,176],[198,177],[197,2],[484,2],[485,2],[486,178],[487,2],[417,2],[488,12],[513,179],[514,180],[489,181],[492,181],[511,179],[512,179],[502,179],[501,182],[499,179],[494,179],[507,179],[505,179],[509,179],[493,179],[506,179],[510,179],[495,179],[496,179],[508,179],[490,179],[497,179],[498,179],[500,179],[504,179],[515,183],[503,179],[491,179],[528,184],[527,2],[522,183],[524,185],[523,183],[516,183],[517,183],[519,183],[521,183],[525,185],[526,185],[518,185],[520,185],[390,186],[529,187],[530,188],[404,189],[402,190],[403,191],[531,89],[532,2],[533,2],[534,87],[451,2],[412,2],[535,2],[536,2],[537,2],[538,2],[551,192],[550,193],[541,194],[542,195],[543,195],[544,194],[545,194],[546,194],[547,196],[540,197],[548,193],[549,198],[539,2],[552,2],[553,199],[554,2],[555,200],[556,201],[119,2],[428,2],[268,202],[266,2],[267,203],[415,2],[312,204],[309,205],[310,204],[308,206],[307,207],[313,208],[317,209],[316,2],[315,2],[314,210],[311,211],[290,2],[287,212],[289,212],[288,212],[286,212],[296,213],[291,214],[295,2],[292,2],[294,2],[293,2],[282,212],[283,212],[284,212],[280,2],[281,2],[285,212],[406,215],[408,216],[407,215],[440,217],[449,218],[438,2],[439,219],[450,220],[445,221],[446,222],[444,223],[448,224],[442,225],[441,226],[447,227],[443,218],[306,228],[305,229],[366,2],[425,2],[98,2],[105,230],[100,231],[101,232],[102,232],[103,233],[104,233],[99,234],[8,2],[9,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[368,235],[367,288],[168,237],[161,238],[185,239],[258,240],[162,241],[163,67],[164,67],[167,242],[165,243],[166,2],[223,2],[246,244],[247,67],[248,239],[256,245],[249,67],[250,67],[251,246],[252,67],[254,247],[253,248],[255,70],[257,249],[231,70],[205,239],[206,250],[225,251],[226,252],[227,251],[228,2],[229,67],[230,253],[232,254],[233,2],[235,255],[244,256],[237,257],[236,67],[238,67],[239,238],[243,258],[240,253],[241,255],[242,239],[224,246],[245,259],[234,260],[183,261],[170,262],[179,262],[171,262],[172,262],[181,262],[173,262],[174,262],[182,263],[180,262],[175,262],[178,262],[176,262],[177,262],[184,264],[169,70],[43,2],[259,265],[262,266],[263,267],[264,2],[265,266],[269,268],[270,2],[271,2],[272,269],[273,2],[274,270],[356,2],[357,271],[275,2],[276,272],[277,2],[355,273],[339,274],[278,67],[343,275],[344,76],[342,276],[360,277],[361,278],[341,279],[362,2],[345,280],[365,281],[363,282],[346,2],[364,2],[350,283],[351,2],[340,284],[349,285],[352,265],[353,282],[354,67],[260,2],[261,267],[359,286],[358,287]],"semanticDiagnosticsPerFile":[373,371,134,117,136,118,135,140,141,137,143,138,142,139,125,122,129,123,120,128,133,130,131,132,127,124,121,126,324,325,326,279,299,298,297,300,302,323,322,301,318,304,187,188,189,190,191,193,192,215,217,216,207,212,209,213,211,218,219,221,220,222,214,331,330,329,328,332,338,327,334,337,335,336,333,195,196,201,199,200,204,202,203,194,157,159,158,160,156,186,348,347,106,107,109,110,111,112,113,114,115,108,155,116,144,147,148,149,150,151,152,153,154,208,210,319,321,320,370,376,372,374,375,303,378,379,381,384,383,387,388,394,377,395,146,396,401,397,400,399,393,405,386,385,409,410,411,382,413,419,420,421,422,380,423,424,426,427,437,429,433,435,434,432,436,431,430,452,453,398,454,468,456,457,455,458,459,460,461,462,463,464,465,466,467,469,389,470,471,145,44,45,47,48,49,50,51,52,53,54,55,56,57,59,58,60,61,62,46,96,63,64,65,97,66,67,68,69,70,71,72,73,74,75,76,77,78,80,79,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,472,473,474,475,416,476,392,391,477,479,481,478,480,482,483,414,418,198,197,484,485,486,487,417,488,513,514,489,492,511,512,502,501,499,494,507,505,509,493,506,510,495,496,508,490,497,498,500,504,515,503,491,528,527,522,524,523,516,517,519,521,525,526,518,520,390,529,530,404,402,403,531,532,533,534,451,412,535,536,537,538,551,550,541,542,543,544,545,546,547,540,548,549,539,552,553,554,555,556,119,428,268,266,267,415,312,309,310,308,307,313,317,316,315,314,311,290,287,289,288,286,296,291,295,292,294,293,282,283,284,280,281,285,406,408,407,440,449,438,439,450,445,446,444,448,442,441,447,443,306,305,366,425,98,105,100,101,102,103,104,99,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,35,40,41,36,37,38,39,1,42,369,368,367,168,161,185,258,162,163,164,167,165,166,223,246,247,248,256,249,250,251,252,254,253,255,257,231,205,206,225,226,227,228,229,230,232,233,235,244,237,236,238,239,243,240,241,242,224,245,234,183,170,179,171,172,181,173,174,182,180,175,178,176,177,184,169,43,259,262,263,264,265,269,270,271,272,273,274,356,357,275,276,277,355,339,278,343,344,342,360,361,341,362,345,365,363,346,364,350,351,340,349,352,353,354,260,261,359,358],"latestChangedDtsFile":"./types/__fixtures__/source-map.d.ts"},"version":"4.8.4"}
@@ -1,4 +1,4 @@
1
- import type { PostProcessOptions } from '@metamask/snaps-utils';
1
+ import type { PostProcessOptions } from '@metamask/snaps-utils/node';
2
2
  import type { Plugin } from 'rollup';
3
3
  declare type PluginOptions = {
4
4
  eval?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/snaps-rollup-plugin",
3
- "version": "3.0.2",
3
+ "version": "4.0.0",
4
4
  "keywords": [
5
5
  "rollup",
6
6
  "rollup-plugin"
@@ -10,13 +10,19 @@
10
10
  "url": "https://github.com/MetaMask/snaps.git"
11
11
  },
12
12
  "sideEffects": false,
13
- "main": "./dist/cjs/index.js",
14
- "module": "./dist/esm/index.js",
13
+ "exports": {
14
+ ".": {
15
+ "import": "./dist/index.mjs",
16
+ "require": "./dist/index.js",
17
+ "types": "./dist/types/index.d.ts"
18
+ },
19
+ "./package.json": "./package.json"
20
+ },
21
+ "main": "./dist/index.js",
22
+ "module": "./dist/index.mjs",
15
23
  "types": "./dist/types/index.d.ts",
16
24
  "files": [
17
- "dist/cjs/**",
18
- "dist/esm/**",
19
- "dist/types/**"
25
+ "dist"
20
26
  ],
21
27
  "scripts": {
22
28
  "test": "jest && yarn posttest",
@@ -27,19 +33,16 @@
27
33
  "lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:changelog && yarn lint:dependencies",
28
34
  "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
29
35
  "lint:changelog": "../../scripts/validate-changelog.sh @metamask/snaps-rollup-plugin",
30
- "build": "yarn build:source && yarn build:types",
31
- "build:source": "yarn build:esm && yarn build:cjs",
36
+ "build": "tsup --clean && yarn build:types",
32
37
  "build:types": "tsc --project tsconfig.build.json",
33
- "build:esm": "swc src --out-dir dist/esm --config-file ../../.swcrc.build.json --config module.type=es6",
34
- "build:cjs": "swc src --out-dir dist/cjs --config-file ../../.swcrc.build.json --config module.type=commonjs",
35
- "build:clean": "yarn clean && yarn build",
36
38
  "clean": "rimraf '*.tsbuildinfo' 'dist'",
37
39
  "publish:preview": "yarn npm publish --tag preview",
38
40
  "lint:ci": "yarn lint",
39
- "lint:dependencies": "depcheck"
41
+ "lint:dependencies": "depcheck",
42
+ "build:ci": "tsup --clean"
40
43
  },
41
44
  "dependencies": {
42
- "@metamask/snaps-utils": "^6.1.0"
45
+ "@metamask/snaps-utils": "^7.0.0"
43
46
  },
44
47
  "devDependencies": {
45
48
  "@lavamoat/allow-scripts": "^3.0.2",
@@ -49,7 +52,6 @@
49
52
  "@metamask/eslint-config-nodejs": "^12.1.0",
50
53
  "@metamask/eslint-config-typescript": "^12.1.0",
51
54
  "@rollup/plugin-virtual": "^2.1.0",
52
- "@swc/cli": "^0.1.62",
53
55
  "@swc/core": "1.3.78",
54
56
  "@swc/jest": "^0.2.26",
55
57
  "@types/jest": "^27.5.1",
@@ -72,6 +74,7 @@
72
74
  "prettier-plugin-packagejson": "^2.2.11",
73
75
  "rimraf": "^4.1.2",
74
76
  "rollup": "^2.73.0",
77
+ "tsup": "^8.0.1",
75
78
  "typescript": "~4.8.4"
76
79
  },
77
80
  "engines": {
package/dist/cjs/index.js DELETED
@@ -1,18 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return _plugin.default;
9
- }
10
- });
11
- const _plugin = /*#__PURE__*/ _interop_require_default(require("./plugin"));
12
- function _interop_require_default(obj) {
13
- return obj && obj.__esModule ? obj : {
14
- default: obj
15
- };
16
- }
17
-
18
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export { default } from './plugin';\nexport type { Options } from './plugin';\n"],"names":["default"],"mappings":";;;;+BAASA;;;eAAAA,eAAO;;;+DAAQ"}
@@ -1,79 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, /**
6
- * Creates a Snaps Rollup plugin instance.
7
- *
8
- * @param options - The plugin options.
9
- * @param options.stripComments - Whether to strip comments. Defaults to `true`.
10
- * @param options.eval - Whether to evaluate the bundle to test SES
11
- * compatibility. Defaults to `true`.
12
- * @param options.manifestPath - The path to the manifest file. If provided,
13
- * the manifest will be validated. Defaults to
14
- * `process.cwd() + '/snap.manifest.json'`.
15
- * @param options.writeManifest - Whether to fix the manifest. Defaults to
16
- * `true`.
17
- * @returns The Rollup plugin object.
18
- */ "default", {
19
- enumerable: true,
20
- get: function() {
21
- return snaps;
22
- }
23
- });
24
- const _snapsutils = require("@metamask/snaps-utils");
25
- const _fs = require("fs");
26
- const _path = /*#__PURE__*/ _interop_require_default(require("path"));
27
- function _interop_require_default(obj) {
28
- return obj && obj.__esModule ? obj : {
29
- default: obj
30
- };
31
- }
32
- function snaps(options) {
33
- const defaultOptions = {
34
- eval: true,
35
- manifestPath: _path.default.join(process.cwd(), 'snap.manifest.json'),
36
- writeManifest: true,
37
- ...options
38
- };
39
- return {
40
- name: '@metamask/snaps-rollup-plugin',
41
- renderChunk (code) {
42
- // Rollup internally merges the new source map with the old one, so there
43
- // is no need to pass the current source map to the function.
44
- const result = (0, _snapsutils.postProcessBundle)(code, {
45
- ...defaultOptions,
46
- sourceMap: true
47
- });
48
- if (result.warnings.length > 0) {
49
- this.warn(`Bundle Warning: Processing of the Snap bundle completed with warnings.\n${result.warnings.join('\n')}`);
50
- }
51
- return {
52
- code: result.code,
53
- map: result.sourceMap
54
- };
55
- },
56
- async writeBundle (output) {
57
- if (!output.file) {
58
- this.warn('No output file specified, skipping bundle validation.');
59
- return;
60
- }
61
- if (defaultOptions.eval) {
62
- await (0, _snapsutils.evalBundle)(output.file).catch((error)=>{
63
- this.error(error);
64
- });
65
- }
66
- if (defaultOptions.manifestPath) {
67
- const { errors, warnings } = await (0, _snapsutils.checkManifest)(_path.default.dirname(defaultOptions.manifestPath), defaultOptions.writeManifest, await _fs.promises.readFile(output.file, 'utf8'));
68
- if (!defaultOptions.writeManifest && errors.length > 0) {
69
- this.error(`Manifest Error: The manifest is invalid.\n${errors.join('\n')}`);
70
- }
71
- if (warnings.length > 0) {
72
- this.warn(`Manifest Warning: Validation of snap.manifest.json completed with warnings.\n${warnings.join('\n')}`);
73
- }
74
- }
75
- }
76
- };
77
- }
78
-
79
- //# sourceMappingURL=plugin.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/plugin.ts"],"sourcesContent":["import type { PostProcessOptions } from '@metamask/snaps-utils';\nimport {\n checkManifest,\n evalBundle,\n postProcessBundle,\n} from '@metamask/snaps-utils';\nimport { promises as fs } from 'fs';\nimport pathUtils from 'path';\n// eslint-disable-next-line @typescript-eslint/no-shadow\nimport type { Plugin, SourceMapInput } from 'rollup';\n\ntype PluginOptions = {\n eval?: boolean;\n manifestPath?: string;\n writeManifest?: boolean;\n};\n\nexport type Options = PluginOptions &\n Omit<PostProcessOptions, 'sourceMap' | 'inputSourceMap'>;\n\n/**\n * Creates a Snaps Rollup plugin instance.\n *\n * @param options - The plugin options.\n * @param options.stripComments - Whether to strip comments. Defaults to `true`.\n * @param options.eval - Whether to evaluate the bundle to test SES\n * compatibility. Defaults to `true`.\n * @param options.manifestPath - The path to the manifest file. If provided,\n * the manifest will be validated. Defaults to\n * `process.cwd() + '/snap.manifest.json'`.\n * @param options.writeManifest - Whether to fix the manifest. Defaults to\n * `true`.\n * @returns The Rollup plugin object.\n */\nexport default function snaps(options?: Partial<Options>): Plugin {\n const defaultOptions = {\n eval: true,\n manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),\n writeManifest: true,\n ...options,\n };\n\n return {\n name: '@metamask/snaps-rollup-plugin',\n\n renderChunk(code: string): { code: string; map?: SourceMapInput } | null {\n // Rollup internally merges the new source map with the old one, so there\n // is no need to pass the current source map to the function.\n const result = postProcessBundle(code, {\n ...defaultOptions,\n sourceMap: true,\n });\n\n if (result.warnings.length > 0) {\n this.warn(\n `Bundle Warning: Processing of the Snap bundle completed with warnings.\\n${result.warnings.join(\n '\\n',\n )}`,\n );\n }\n\n return { code: result.code, map: result.sourceMap };\n },\n\n async writeBundle(output): Promise<void> {\n if (!output.file) {\n this.warn('No output file specified, skipping bundle validation.');\n return;\n }\n\n if (defaultOptions.eval) {\n await evalBundle(output.file).catch((error) => {\n this.error(error);\n });\n }\n\n if (defaultOptions.manifestPath) {\n const { errors, warnings } = await checkManifest(\n pathUtils.dirname(defaultOptions.manifestPath),\n defaultOptions.writeManifest,\n await fs.readFile(output.file, 'utf8'),\n );\n\n if (!defaultOptions.writeManifest && errors.length > 0) {\n this.error(\n `Manifest Error: The manifest is invalid.\\n${errors.join('\\n')}`,\n );\n }\n\n if (warnings.length > 0) {\n this.warn(\n `Manifest Warning: Validation of snap.manifest.json completed with warnings.\\n${warnings.join(\n '\\n',\n )}`,\n );\n }\n }\n },\n };\n}\n"],"names":["snaps","options","defaultOptions","eval","manifestPath","pathUtils","join","process","cwd","writeManifest","name","renderChunk","code","result","postProcessBundle","sourceMap","warnings","length","warn","map","writeBundle","output","file","evalBundle","catch","error","errors","checkManifest","dirname","fs","readFile"],"mappings":";;;;+BAoBA;;;;;;;;;;;;;CAaC,GACD;;;eAAwBA;;;4BA7BjB;oBACwB;6DACT;;;;;;AA2BP,SAASA,MAAMC,OAA0B;IACtD,MAAMC,iBAAiB;QACrBC,MAAM;QACNC,cAAcC,aAAS,CAACC,IAAI,CAACC,QAAQC,GAAG,IAAI;QAC5CC,eAAe;QACf,GAAGR,OAAO;IACZ;IAEA,OAAO;QACLS,MAAM;QAENC,aAAYC,IAAY;YACtB,yEAAyE;YACzE,6DAA6D;YAC7D,MAAMC,SAASC,IAAAA,6BAAiB,EAACF,MAAM;gBACrC,GAAGV,cAAc;gBACjBa,WAAW;YACb;YAEA,IAAIF,OAAOG,QAAQ,CAACC,MAAM,GAAG,GAAG;gBAC9B,IAAI,CAACC,IAAI,CACP,CAAC,wEAAwE,EAAEL,OAAOG,QAAQ,CAACV,IAAI,CAC7F,MACA,CAAC;YAEP;YAEA,OAAO;gBAAEM,MAAMC,OAAOD,IAAI;gBAAEO,KAAKN,OAAOE,SAAS;YAAC;QACpD;QAEA,MAAMK,aAAYC,MAAM;YACtB,IAAI,CAACA,OAAOC,IAAI,EAAE;gBAChB,IAAI,CAACJ,IAAI,CAAC;gBACV;YACF;YAEA,IAAIhB,eAAeC,IAAI,EAAE;gBACvB,MAAMoB,IAAAA,sBAAU,EAACF,OAAOC,IAAI,EAAEE,KAAK,CAAC,CAACC;oBACnC,IAAI,CAACA,KAAK,CAACA;gBACb;YACF;YAEA,IAAIvB,eAAeE,YAAY,EAAE;gBAC/B,MAAM,EAAEsB,MAAM,EAAEV,QAAQ,EAAE,GAAG,MAAMW,IAAAA,yBAAa,EAC9CtB,aAAS,CAACuB,OAAO,CAAC1B,eAAeE,YAAY,GAC7CF,eAAeO,aAAa,EAC5B,MAAMoB,YAAE,CAACC,QAAQ,CAACT,OAAOC,IAAI,EAAE;gBAGjC,IAAI,CAACpB,eAAeO,aAAa,IAAIiB,OAAOT,MAAM,GAAG,GAAG;oBACtD,IAAI,CAACQ,KAAK,CACR,CAAC,0CAA0C,EAAEC,OAAOpB,IAAI,CAAC,MAAM,CAAC;gBAEpE;gBAEA,IAAIU,SAASC,MAAM,GAAG,GAAG;oBACvB,IAAI,CAACC,IAAI,CACP,CAAC,6EAA6E,EAAEF,SAASV,IAAI,CAC3F,MACA,CAAC;gBAEP;YACF;QACF;IACF;AACF"}
package/dist/esm/index.js DELETED
@@ -1,3 +0,0 @@
1
- export { default } from './plugin';
2
-
3
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export { default } from './plugin';\nexport type { Options } from './plugin';\n"],"names":["default"],"mappings":"AAAA,SAASA,OAAO,QAAQ,WAAW"}
@@ -1,64 +0,0 @@
1
- import { checkManifest, evalBundle, postProcessBundle } from '@metamask/snaps-utils';
2
- import { promises as fs } from 'fs';
3
- import pathUtils from 'path';
4
- /**
5
- * Creates a Snaps Rollup plugin instance.
6
- *
7
- * @param options - The plugin options.
8
- * @param options.stripComments - Whether to strip comments. Defaults to `true`.
9
- * @param options.eval - Whether to evaluate the bundle to test SES
10
- * compatibility. Defaults to `true`.
11
- * @param options.manifestPath - The path to the manifest file. If provided,
12
- * the manifest will be validated. Defaults to
13
- * `process.cwd() + '/snap.manifest.json'`.
14
- * @param options.writeManifest - Whether to fix the manifest. Defaults to
15
- * `true`.
16
- * @returns The Rollup plugin object.
17
- */ export default function snaps(options) {
18
- const defaultOptions = {
19
- eval: true,
20
- manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),
21
- writeManifest: true,
22
- ...options
23
- };
24
- return {
25
- name: '@metamask/snaps-rollup-plugin',
26
- renderChunk (code) {
27
- // Rollup internally merges the new source map with the old one, so there
28
- // is no need to pass the current source map to the function.
29
- const result = postProcessBundle(code, {
30
- ...defaultOptions,
31
- sourceMap: true
32
- });
33
- if (result.warnings.length > 0) {
34
- this.warn(`Bundle Warning: Processing of the Snap bundle completed with warnings.\n${result.warnings.join('\n')}`);
35
- }
36
- return {
37
- code: result.code,
38
- map: result.sourceMap
39
- };
40
- },
41
- async writeBundle (output) {
42
- if (!output.file) {
43
- this.warn('No output file specified, skipping bundle validation.');
44
- return;
45
- }
46
- if (defaultOptions.eval) {
47
- await evalBundle(output.file).catch((error)=>{
48
- this.error(error);
49
- });
50
- }
51
- if (defaultOptions.manifestPath) {
52
- const { errors, warnings } = await checkManifest(pathUtils.dirname(defaultOptions.manifestPath), defaultOptions.writeManifest, await fs.readFile(output.file, 'utf8'));
53
- if (!defaultOptions.writeManifest && errors.length > 0) {
54
- this.error(`Manifest Error: The manifest is invalid.\n${errors.join('\n')}`);
55
- }
56
- if (warnings.length > 0) {
57
- this.warn(`Manifest Warning: Validation of snap.manifest.json completed with warnings.\n${warnings.join('\n')}`);
58
- }
59
- }
60
- }
61
- };
62
- }
63
-
64
- //# sourceMappingURL=plugin.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/plugin.ts"],"sourcesContent":["import type { PostProcessOptions } from '@metamask/snaps-utils';\nimport {\n checkManifest,\n evalBundle,\n postProcessBundle,\n} from '@metamask/snaps-utils';\nimport { promises as fs } from 'fs';\nimport pathUtils from 'path';\n// eslint-disable-next-line @typescript-eslint/no-shadow\nimport type { Plugin, SourceMapInput } from 'rollup';\n\ntype PluginOptions = {\n eval?: boolean;\n manifestPath?: string;\n writeManifest?: boolean;\n};\n\nexport type Options = PluginOptions &\n Omit<PostProcessOptions, 'sourceMap' | 'inputSourceMap'>;\n\n/**\n * Creates a Snaps Rollup plugin instance.\n *\n * @param options - The plugin options.\n * @param options.stripComments - Whether to strip comments. Defaults to `true`.\n * @param options.eval - Whether to evaluate the bundle to test SES\n * compatibility. Defaults to `true`.\n * @param options.manifestPath - The path to the manifest file. If provided,\n * the manifest will be validated. Defaults to\n * `process.cwd() + '/snap.manifest.json'`.\n * @param options.writeManifest - Whether to fix the manifest. Defaults to\n * `true`.\n * @returns The Rollup plugin object.\n */\nexport default function snaps(options?: Partial<Options>): Plugin {\n const defaultOptions = {\n eval: true,\n manifestPath: pathUtils.join(process.cwd(), 'snap.manifest.json'),\n writeManifest: true,\n ...options,\n };\n\n return {\n name: '@metamask/snaps-rollup-plugin',\n\n renderChunk(code: string): { code: string; map?: SourceMapInput } | null {\n // Rollup internally merges the new source map with the old one, so there\n // is no need to pass the current source map to the function.\n const result = postProcessBundle(code, {\n ...defaultOptions,\n sourceMap: true,\n });\n\n if (result.warnings.length > 0) {\n this.warn(\n `Bundle Warning: Processing of the Snap bundle completed with warnings.\\n${result.warnings.join(\n '\\n',\n )}`,\n );\n }\n\n return { code: result.code, map: result.sourceMap };\n },\n\n async writeBundle(output): Promise<void> {\n if (!output.file) {\n this.warn('No output file specified, skipping bundle validation.');\n return;\n }\n\n if (defaultOptions.eval) {\n await evalBundle(output.file).catch((error) => {\n this.error(error);\n });\n }\n\n if (defaultOptions.manifestPath) {\n const { errors, warnings } = await checkManifest(\n pathUtils.dirname(defaultOptions.manifestPath),\n defaultOptions.writeManifest,\n await fs.readFile(output.file, 'utf8'),\n );\n\n if (!defaultOptions.writeManifest && errors.length > 0) {\n this.error(\n `Manifest Error: The manifest is invalid.\\n${errors.join('\\n')}`,\n );\n }\n\n if (warnings.length > 0) {\n this.warn(\n `Manifest Warning: Validation of snap.manifest.json completed with warnings.\\n${warnings.join(\n '\\n',\n )}`,\n );\n }\n }\n },\n };\n}\n"],"names":["checkManifest","evalBundle","postProcessBundle","promises","fs","pathUtils","snaps","options","defaultOptions","eval","manifestPath","join","process","cwd","writeManifest","name","renderChunk","code","result","sourceMap","warnings","length","warn","map","writeBundle","output","file","catch","error","errors","dirname","readFile"],"mappings":"AACA,SACEA,aAAa,EACbC,UAAU,EACVC,iBAAiB,QACZ,wBAAwB;AAC/B,SAASC,YAAYC,EAAE,QAAQ,KAAK;AACpC,OAAOC,eAAe,OAAO;AAa7B;;;;;;;;;;;;;CAaC,GACD,eAAe,SAASC,MAAMC,OAA0B;IACtD,MAAMC,iBAAiB;QACrBC,MAAM;QACNC,cAAcL,UAAUM,IAAI,CAACC,QAAQC,GAAG,IAAI;QAC5CC,eAAe;QACf,GAAGP,OAAO;IACZ;IAEA,OAAO;QACLQ,MAAM;QAENC,aAAYC,IAAY;YACtB,yEAAyE;YACzE,6DAA6D;YAC7D,MAAMC,SAAShB,kBAAkBe,MAAM;gBACrC,GAAGT,cAAc;gBACjBW,WAAW;YACb;YAEA,IAAID,OAAOE,QAAQ,CAACC,MAAM,GAAG,GAAG;gBAC9B,IAAI,CAACC,IAAI,CACP,CAAC,wEAAwE,EAAEJ,OAAOE,QAAQ,CAACT,IAAI,CAC7F,MACA,CAAC;YAEP;YAEA,OAAO;gBAAEM,MAAMC,OAAOD,IAAI;gBAAEM,KAAKL,OAAOC,SAAS;YAAC;QACpD;QAEA,MAAMK,aAAYC,MAAM;YACtB,IAAI,CAACA,OAAOC,IAAI,EAAE;gBAChB,IAAI,CAACJ,IAAI,CAAC;gBACV;YACF;YAEA,IAAId,eAAeC,IAAI,EAAE;gBACvB,MAAMR,WAAWwB,OAAOC,IAAI,EAAEC,KAAK,CAAC,CAACC;oBACnC,IAAI,CAACA,KAAK,CAACA;gBACb;YACF;YAEA,IAAIpB,eAAeE,YAAY,EAAE;gBAC/B,MAAM,EAAEmB,MAAM,EAAET,QAAQ,EAAE,GAAG,MAAMpB,cACjCK,UAAUyB,OAAO,CAACtB,eAAeE,YAAY,GAC7CF,eAAeM,aAAa,EAC5B,MAAMV,GAAG2B,QAAQ,CAACN,OAAOC,IAAI,EAAE;gBAGjC,IAAI,CAAClB,eAAeM,aAAa,IAAIe,OAAOR,MAAM,GAAG,GAAG;oBACtD,IAAI,CAACO,KAAK,CACR,CAAC,0CAA0C,EAAEC,OAAOlB,IAAI,CAAC,MAAM,CAAC;gBAEpE;gBAEA,IAAIS,SAASC,MAAM,GAAG,GAAG;oBACvB,IAAI,CAACC,IAAI,CACP,CAAC,6EAA6E,EAAEF,SAAST,IAAI,CAC3F,MACA,CAAC;gBAEP;YACF;QACF;IACF;AACF"}