@embroider/vite 1.6.1 → 1.7.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/dist/src/ember.d.ts +2 -4
- package/dist/src/ember.js +62 -68
- package/dist/src/ember.js.map +1 -1
- package/dist/src/hbs.js.map +1 -1
- package/dist/src/request.d.ts +4 -2
- package/dist/src/request.js.map +1 -1
- package/dist/src/resolver.js.map +1 -1
- package/dist/src/scripts.js.map +1 -1
- package/dist/src/types.d.ts +46 -0
- package/dist/src/types.js +2 -0
- package/dist/src/types.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +16 -6
package/dist/src/ember.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { ConfigEnv, Plugin } from 'vite';
|
|
2
|
+
import type { ViteUserConfig as UserConfig } from './types.js';
|
|
3
3
|
export declare let extensions: string[];
|
|
4
4
|
export declare const defaultRolldownSharedPlugins: string[];
|
|
5
|
-
type UserConfig = ViteUserConfig & RolldownUserConfig;
|
|
6
5
|
export declare function ember(params?: {
|
|
7
6
|
/**
|
|
8
7
|
* List of names of rollup plugins that should be taken from your regular Vite
|
|
@@ -15,4 +14,3 @@ export declare function ember(params?: {
|
|
|
15
14
|
name: string;
|
|
16
15
|
config(config: UserConfig, env: ConfigEnv): Promise<void>;
|
|
17
16
|
})[];
|
|
18
|
-
export {};
|
package/dist/src/ember.js
CHANGED
|
@@ -10,6 +10,10 @@ export const defaultRolldownSharedPlugins = [
|
|
|
10
10
|
'embroider-resolver',
|
|
11
11
|
'babel',
|
|
12
12
|
];
|
|
13
|
+
function hasRolldown(pluginContext, _config) {
|
|
14
|
+
var _a;
|
|
15
|
+
return Boolean((_a = pluginContext === null || pluginContext === void 0 ? void 0 : pluginContext.meta) === null || _a === void 0 ? void 0 : _a.rolldownVersion);
|
|
16
|
+
}
|
|
13
17
|
export function ember(params) {
|
|
14
18
|
return [
|
|
15
19
|
warnRootUrl(),
|
|
@@ -19,98 +23,88 @@ export function ember(params) {
|
|
|
19
23
|
name: 'vite-plugin-ember-config',
|
|
20
24
|
async config(config, env) {
|
|
21
25
|
var _a, _b, _c;
|
|
26
|
+
var _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
|
|
22
27
|
// Default vite resolve extensions, which the user can completely
|
|
23
28
|
// override if they want
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
29
|
+
config.resolve || (config.resolve = {});
|
|
30
|
+
config.build || (config.build = {});
|
|
31
|
+
config.server || (config.server = {});
|
|
32
|
+
config.optimizeDeps || (config.optimizeDeps = {});
|
|
33
|
+
(_d = config.optimizeDeps).exclude || (_d.exclude = []);
|
|
34
|
+
(_e = config.optimizeDeps).extensions || (_e.extensions = []);
|
|
27
35
|
if (!config.resolve.extensions) {
|
|
28
36
|
config.resolve.extensions = extensions;
|
|
29
37
|
}
|
|
30
|
-
// Our esbuild integration only works if these extensions are
|
|
31
|
-
// configured, so we force them in
|
|
32
|
-
if (!config.optimizeDeps) {
|
|
33
|
-
config.optimizeDeps = {};
|
|
34
|
-
}
|
|
35
|
-
if (!config.optimizeDeps.extensions) {
|
|
36
|
-
config.optimizeDeps.extensions = [];
|
|
37
|
-
}
|
|
38
38
|
for (let requiredExt of ['.hbs', '.gjs', '.gts']) {
|
|
39
39
|
if (!config.optimizeDeps.extensions.includes(requiredExt)) {
|
|
40
40
|
config.optimizeDeps.extensions.push(requiredExt);
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
// @embroider/macros needs to not go through dep optimization
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
config.optimizeDeps.rollupOptions = {};
|
|
55
|
-
}
|
|
56
|
-
const emberRollupPlugins = sharedRolldownPlugins((_b = params === null || params === void 0 ? void 0 : params.rolldownSharedPlugins) !== null && _b !== void 0 ? _b : defaultRolldownSharedPlugins, config.plugins);
|
|
57
|
-
if (config.optimizeDeps.rollupOptions.plugins) {
|
|
58
|
-
if (Array.isArray(config.optimizeDeps.rollupOptions.plugins)) {
|
|
59
|
-
config.optimizeDeps.rollupOptions.plugins.push(...emberRollupPlugins);
|
|
60
|
-
}
|
|
61
|
-
else {
|
|
62
|
-
throw new Error('Could not automatically configure the Ember plugin for optimizeDeps');
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
else {
|
|
66
|
-
config.optimizeDeps.rollupOptions.plugins = emberRollupPlugins;
|
|
44
|
+
config.optimizeDeps.exclude.push('@embroider/macros');
|
|
45
|
+
const emberRollupPlugins = sharedRolldownPlugins((_a = params === null || params === void 0 ? void 0 : params.rolldownSharedPlugins) !== null && _a !== void 0 ? _a : defaultRolldownSharedPlugins, config.plugins);
|
|
46
|
+
if (hasRolldown(this, config)) {
|
|
47
|
+
/**
|
|
48
|
+
* Vite 8 and higher
|
|
49
|
+
*/
|
|
50
|
+
(_f = config.optimizeDeps).rolldownOptions || (_f.rolldownOptions = {});
|
|
51
|
+
(_g = config.optimizeDeps.rolldownOptions).plugins || (_g.plugins = []);
|
|
52
|
+
if (!Array.isArray(config.optimizeDeps.rolldownOptions.plugins)) {
|
|
53
|
+
throw new Error('Could not automatically configure the Ember plugin for optimizeDeps. optimizeDeps.rolldownOptions.plugins must be an array.');
|
|
67
54
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
config.optimizeDeps.rollupOptions.resolve.extensions = extensions;
|
|
55
|
+
config.optimizeDeps.rolldownOptions.plugins.push(...emberRollupPlugins);
|
|
56
|
+
(_h = config.optimizeDeps.rolldownOptions).resolve || (_h.resolve = {});
|
|
57
|
+
config.optimizeDeps.rolldownOptions.resolve.extensions = extensions;
|
|
72
58
|
}
|
|
73
59
|
else {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
81
|
-
else {
|
|
82
|
-
config.optimizeDeps.esbuildOptions.plugins = [esBuildResolver()];
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
if (!config.build) {
|
|
86
|
-
config.build = {};
|
|
87
|
-
}
|
|
88
|
-
if (!config.build.rollupOptions) {
|
|
89
|
-
config.build.rollupOptions = {};
|
|
60
|
+
/**
|
|
61
|
+
* Vite 7 and lower
|
|
62
|
+
*/
|
|
63
|
+
(_j = config.optimizeDeps).esbuildOptions || (_j.esbuildOptions = {});
|
|
64
|
+
(_k = config.optimizeDeps.esbuildOptions).plugins || (_k.plugins = []);
|
|
65
|
+
config.optimizeDeps.esbuildOptions.plugins.push(esBuildResolver());
|
|
90
66
|
}
|
|
91
67
|
// we provide a default build.rollupOptions.input that builds index.html
|
|
92
68
|
// and, in non-production or when forcing tests, tests/index.html. But
|
|
93
69
|
// the user may choose to take charge of input entirely.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
config
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
70
|
+
let hasRootEntry = existsSync('index.html');
|
|
71
|
+
let hasTestsEntry = existsSync('tests/index.html');
|
|
72
|
+
if (!((_b = config.build.rolldownOptions) === null || _b === void 0 ? void 0 : _b.input)) {
|
|
73
|
+
if (hasRolldown(this, config)) {
|
|
74
|
+
(_l = config.build).rolldownOptions || (_l.rolldownOptions = {});
|
|
75
|
+
if (hasRootEntry) {
|
|
76
|
+
(_m = config.build.rolldownOptions).input || (_m.input = {});
|
|
77
|
+
Object.assign(config.build.rolldownOptions.input, {
|
|
78
|
+
main: 'index.html',
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
if (hasTestsEntry) {
|
|
82
|
+
if (shouldBuildTests(env.mode)) {
|
|
83
|
+
(_o = config.build.rolldownOptions).input || (_o.input = {});
|
|
84
|
+
Object.assign(config.build.rolldownOptions.input, {
|
|
85
|
+
tests: 'tests/index.html',
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
}
|
|
102
89
|
}
|
|
103
|
-
|
|
104
|
-
|
|
90
|
+
else {
|
|
91
|
+
(_p = config.build).rollupOptions || (_p.rollupOptions = {});
|
|
92
|
+
if (hasRootEntry) {
|
|
93
|
+
(_q = config.build.rollupOptions).input || (_q.input = {});
|
|
105
94
|
Object.assign(config.build.rollupOptions.input, {
|
|
106
|
-
|
|
95
|
+
main: 'index.html',
|
|
107
96
|
});
|
|
108
97
|
}
|
|
98
|
+
if (hasTestsEntry) {
|
|
99
|
+
if (shouldBuildTests(env.mode)) {
|
|
100
|
+
(_r = config.build.rollupOptions).input || (_r.input = {});
|
|
101
|
+
Object.assign(config.build.rollupOptions.input, {
|
|
102
|
+
tests: 'tests/index.html',
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
}
|
|
109
106
|
}
|
|
110
107
|
}
|
|
111
|
-
if (!config.server) {
|
|
112
|
-
config.server = {};
|
|
113
|
-
}
|
|
114
108
|
// Traditional ember development port as default.
|
|
115
109
|
if (config.server.port == null) {
|
|
116
110
|
config.server.port = 4200;
|
package/dist/src/ember.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ember.js","sourceRoot":"","sources":["../../src/ember.ts"],"names":[],"mappings":"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","sourcesContent":["import { existsSync } from 'fs';\nimport { templateTag } from './template-tag.js';\nimport { resolver } from './resolver.js';\nimport type { UserConfig as ViteUserConfig, ConfigEnv, Plugin } from 'vite';\nimport type { UserConfig as RolldownUserConfig } from 'rolldown-vite';\n\nimport { esBuildResolver } from './esbuild-resolver.js';\nimport { warnRootUrl } from './warn-root-url.js';\n\nexport let extensions = ['.mjs', '.gjs', '.js', '.mts', '.gts', '.ts', '.hbs', '.hbs.js', '.json'];\n\nexport const defaultRolldownSharedPlugins = [\n 'rollup-hbs-plugin',\n 'embroider-template-tag',\n 'embroider-resolver',\n 'babel',\n];\n\n// We support a range of vite versions with different types here\ntype UserConfig = ViteUserConfig & RolldownUserConfig;\n\nexport function ember(params?: {\n /**\n * List of names of rollup plugins that should be taken from your regular Vite\n * config and also applied when Rolldown is bundling dependencies for\n * development. The default list of names is importable as\n * `defaultRolldownSharedPlugins`.\n */\n rolldownSharedPlugins?: string[];\n}) {\n return [\n warnRootUrl(),\n templateTag(),\n resolver(),\n {\n name: 'vite-plugin-ember-config',\n async config(config: UserConfig, env: ConfigEnv) {\n // Default vite resolve extensions, which the user can completely\n // override if they want\n if (!config.resolve) {\n config.resolve = {};\n }\n if (!config.resolve.extensions) {\n config.resolve.extensions = extensions;\n }\n\n // Our esbuild integration only works if these extensions are\n // configured, so we force them in\n if (!config.optimizeDeps) {\n config.optimizeDeps = {};\n }\n if (!config.optimizeDeps.extensions) {\n config.optimizeDeps.extensions = [];\n }\n for (let requiredExt of ['.hbs', '.gjs', '.gts']) {\n if (!config.optimizeDeps.extensions.includes(requiredExt)) {\n config.optimizeDeps.extensions.push(requiredExt);\n }\n }\n\n // @embroider/macros needs to not go through dep optimization\n if (config.optimizeDeps.exclude) {\n config.optimizeDeps.exclude.push('@embroider/macros');\n } else {\n config.optimizeDeps.exclude = ['@embroider/macros'];\n }\n\n // @ts-expect-error the types aren't finished yet it would seem\n if (this?.meta?.rolldownVersion) {\n // configure our embroider resolver for optimize deps\n if (!config.optimizeDeps.rollupOptions) {\n config.optimizeDeps.rollupOptions = {};\n }\n\n const emberRollupPlugins = sharedRolldownPlugins(\n params?.rolldownSharedPlugins ?? defaultRolldownSharedPlugins,\n config.plugins\n );\n\n if (config.optimizeDeps.rollupOptions.plugins) {\n if (Array.isArray(config.optimizeDeps.rollupOptions.plugins)) {\n config.optimizeDeps.rollupOptions.plugins.push(...emberRollupPlugins);\n } else {\n throw new Error('Could not automatically configure the Ember plugin for optimizeDeps');\n }\n } else {\n config.optimizeDeps.rollupOptions.plugins = emberRollupPlugins;\n }\n\n if (!config.optimizeDeps.rollupOptions.resolve) {\n config.optimizeDeps.rollupOptions.resolve = {};\n }\n config.optimizeDeps.rollupOptions.resolve.extensions = extensions;\n } else {\n // configure out esbuild resolver\n if (!config.optimizeDeps.esbuildOptions) {\n config.optimizeDeps.esbuildOptions = {};\n }\n\n if (config.optimizeDeps.esbuildOptions.plugins) {\n config.optimizeDeps.esbuildOptions.plugins.push(esBuildResolver());\n } else {\n config.optimizeDeps.esbuildOptions.plugins = [esBuildResolver()];\n }\n }\n\n if (!config.build) {\n config.build = {};\n }\n\n if (!config.build.rollupOptions) {\n config.build.rollupOptions = {};\n }\n\n // we provide a default build.rollupOptions.input that builds index.html\n // and, in non-production or when forcing tests, tests/index.html. But\n // the user may choose to take charge of input entirely.\n if (!config.build.rollupOptions.input) {\n let hasRootEntry = existsSync('index.html');\n let hasTestsEntry = existsSync('tests/index.html');\n\n config.build.rollupOptions.input = {};\n\n if (hasRootEntry) {\n Object.assign(config.build.rollupOptions.input, {\n main: 'index.html',\n });\n }\n\n if (hasTestsEntry) {\n if (shouldBuildTests(env.mode)) {\n Object.assign(config.build.rollupOptions.input, {\n tests: 'tests/index.html',\n });\n }\n }\n }\n\n if (!config.server) {\n config.server = {};\n }\n\n // Traditional ember development port as default.\n if (config.server.port == null) {\n config.server.port = 4200;\n }\n\n // vite will try to transpile away typescript in .ts files using\n // esbuild. But if we have any typescript, we expect it to get handled\n // by babel, because we don't want esbuild's decorator implementation.\n // @ts-expect-error the types aren't finished yet it would seem\n if (this?.meta?.rolldownVersion) {\n if (config.oxc == null) {\n config.oxc = false;\n }\n } else {\n if (config.esbuild == null) {\n config.esbuild = false;\n }\n }\n\n minification(config, env.mode);\n },\n },\n ];\n}\n\nfunction shouldBuildTests(mode: string) {\n let shouldBuildTests = mode !== 'production' || process.env.FORCE_BUILD_TESTS;\n\n /**\n * If we are trying to build tests in a production by setting `FORCE_BUILD_TESTS=true` then we need\n * to tell ember-cli to build the test files too. This will allow embroider to discover things like\n * {{content-for}} invocations in your tests/index.html and build them effectively in the prebuild.\n *\n * This is the relevant code in ember-cli that we're targeting: https://github.com/ember-cli/ember-cli/blob/a5648f9da2e8ae547091248f3e528485943a53bf/lib/broccoli/ember-app.js#L173\n */\n if (shouldBuildTests) {\n process.env.EMBER_CLI_TEST_COMMAND = 'true';\n }\n\n return shouldBuildTests;\n}\n\nfunction minification(config: UserConfig, mode: string) {\n if (mode !== 'production') {\n return;\n }\n\n /**\n * Outside of test, the only other time \"build\" is used,\n * is production\n */\n config.build ||= {};\n\n if (config.build.minify === undefined || config.build.minify === true) {\n config.build.minify = 'terser';\n }\n\n if (config.build.minify === 'terser' && !config.build.terserOptions) {\n config.build.terserOptions = {\n module: true,\n compress: {\n passes: 3,\n keep_fargs: false,\n keep_fnames: false,\n toplevel: true,\n },\n };\n }\n}\n\nfunction findPlugin(plugins: UserConfig['plugins'], name: string): Plugin | undefined {\n if (!plugins) {\n return undefined;\n }\n for (let element of plugins) {\n if (typeof element === 'object' && element != null) {\n if ('name' in element && element.name === name) {\n return element as unknown as Plugin;\n }\n }\n if (Array.isArray(element)) {\n let matched = findPlugin(element as unknown as Plugin[], name);\n if (matched) {\n return matched;\n }\n }\n }\n return undefined;\n}\n\nfunction sharedRolldownPlugins<T extends { name: string }>(\n sharedPluginNames: string[],\n plugins: UserConfig['plugins']\n): NonNullable<UserConfig['plugins']> {\n return sharedPluginNames\n .map(name => {\n let matched = findPlugin(plugins, name);\n if (matched) {\n if (name === 'embroider-resolver') {\n // special case. Needs different config.\n return resolver({ rolldown: true });\n }\n return matched;\n }\n })\n .filter(Boolean) as T[];\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ember.js","sourceRoot":"","sources":["../../src/ember.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAChC,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAGzC,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD,MAAM,CAAC,IAAI,UAAU,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;AAEnG,MAAM,CAAC,MAAM,4BAA4B,GAAG;IAC1C,mBAAmB;IACnB,wBAAwB;IACxB,oBAAoB;IACpB,OAAO;CACR,CAAC;AAEF,SAAS,WAAW,CAAC,aAAkB,EAAE,OAAgB;;IACvD,OAAO,OAAO,CAAC,MAAA,aAAa,aAAb,aAAa,uBAAb,aAAa,CAAE,IAAI,0CAAE,eAAe,CAAC,CAAC;AACvD,CAAC;AAED,MAAM,UAAU,KAAK,CAAC,MAQrB;IACC,OAAO;QACL,WAAW,EAAE;QACb,WAAW,EAAE;QACb,QAAQ,EAAE;QACV;YACE,IAAI,EAAE,0BAA0B;YAChC,KAAK,CAAC,MAAM,CAAC,MAAkB,EAAE,GAAc;;;gBAC7C,iEAAiE;gBACjE,wBAAwB;gBACxB,MAAM,CAAC,OAAO,KAAd,MAAM,CAAC,OAAO,GAAK,EAAE,EAAC;gBACtB,MAAM,CAAC,KAAK,KAAZ,MAAM,CAAC,KAAK,GAAK,EAAE,EAAC;gBACpB,MAAM,CAAC,MAAM,KAAb,MAAM,CAAC,MAAM,GAAK,EAAE,EAAC;gBACrB,MAAM,CAAC,YAAY,KAAnB,MAAM,CAAC,YAAY,GAAK,EAAE,EAAC;gBAC3B,MAAA,MAAM,CAAC,YAAY,EAAC,OAAO,QAAP,OAAO,GAAK,EAAE,EAAC;gBACnC,MAAA,MAAM,CAAC,YAAY,EAAC,UAAU,QAAV,UAAU,GAAK,EAAE,EAAC;gBAEtC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC;oBAC/B,MAAM,CAAC,OAAO,CAAC,UAAU,GAAG,UAAU,CAAC;gBACzC,CAAC;gBAED,KAAK,IAAI,WAAW,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;oBACjD,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,UAAU,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,CAAC;wBAC1D,MAAM,CAAC,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;oBACnD,CAAC;gBACH,CAAC;gBAED,6DAA6D;gBAC7D,MAAM,CAAC,YAAY,CAAC,OAAO,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;gBAEtD,MAAM,kBAAkB,GAAG,qBAAqB,CAC9C,MAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,qBAAqB,mCAAI,4BAA4B,EAC7D,MAAM,CAAC,OAAO,CACf,CAAC;gBAEF,IAAI,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,EAAE,CAAC;oBAC9B;;uBAEG;oBACH,MAAA,MAAM,CAAC,YAAY,EAAC,eAAe,QAAf,eAAe,GAAK,EAAE,EAAC;oBAC3C,MAAA,MAAM,CAAC,YAAY,CAAC,eAAe,EAAC,OAAO,QAAP,OAAO,GAAK,EAAE,EAAC;oBACnD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,eAAe,CAAC,OAAO,CAAC,EAAE,CAAC;wBAChE,MAAM,IAAI,KAAK,CACb,6HAA6H,CAC9H,CAAC;oBACJ,CAAC;oBACD,MAAM,CAAC,YAAY,CAAC,eAAe,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,CAAC;oBAExE,MAAA,MAAM,CAAC,YAAY,CAAC,eAAe,EAAC,OAAO,QAAP,OAAO,GAAK,EAAE,EAAC;oBACnD,MAAM,CAAC,YAAY,CAAC,eAAe,CAAC,OAAO,CAAC,UAAU,GAAG,UAAU,CAAC;gBACtE,CAAC;qBAAM,CAAC;oBACN;;uBAEG;oBACH,MAAA,MAAM,CAAC,YAAY,EAAC,cAAc,QAAd,cAAc,GAAK,EAAE,EAAC;oBAC1C,MAAA,MAAM,CAAC,YAAY,CAAC,cAAc,EAAC,OAAO,QAAP,OAAO,GAAK,EAAE,EAAC;oBAClD,MAAM,CAAC,YAAY,CAAC,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,CAAC,CAAC;gBACrE,CAAC;gBAED,wEAAwE;gBACxE,sEAAsE;gBACtE,wDAAwD;gBACxD,IAAI,YAAY,GAAG,UAAU,CAAC,YAAY,CAAC,CAAC;gBAC5C,IAAI,aAAa,GAAG,UAAU,CAAC,kBAAkB,CAAC,CAAC;gBAEnD,IAAI,CAAC,CAAA,MAAA,MAAM,CAAC,KAAK,CAAC,eAAe,0CAAE,KAAK,CAAA,EAAE,CAAC;oBACzC,IAAI,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,EAAE,CAAC;wBAC9B,MAAA,MAAM,CAAC,KAAK,EAAC,eAAe,QAAf,eAAe,GAAK,EAAE,EAAC;wBAEpC,IAAI,YAAY,EAAE,CAAC;4BACjB,MAAA,MAAM,CAAC,KAAK,CAAC,eAAe,EAAC,KAAK,QAAL,KAAK,GAAK,EAAE,EAAC;4BAC1C,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,eAAe,CAAC,KAAK,EAAE;gCAChD,IAAI,EAAE,YAAY;6BACnB,CAAC,CAAC;wBACL,CAAC;wBAED,IAAI,aAAa,EAAE,CAAC;4BAClB,IAAI,gBAAgB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;gCAC/B,MAAA,MAAM,CAAC,KAAK,CAAC,eAAe,EAAC,KAAK,QAAL,KAAK,GAAK,EAAE,EAAC;gCAC1C,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,eAAe,CAAC,KAAK,EAAE;oCAChD,KAAK,EAAE,kBAAkB;iCAC1B,CAAC,CAAC;4BACL,CAAC;wBACH,CAAC;oBACH,CAAC;yBAAM,CAAC;wBACN,MAAA,MAAM,CAAC,KAAK,EAAC,aAAa,QAAb,aAAa,GAAK,EAAE,EAAC;wBAElC,IAAI,YAAY,EAAE,CAAC;4BACjB,MAAA,MAAM,CAAC,KAAK,CAAC,aAAa,EAAC,KAAK,QAAL,KAAK,GAAK,EAAE,EAAC;4BACxC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,EAAE;gCAC9C,IAAI,EAAE,YAAY;6BACnB,CAAC,CAAC;wBACL,CAAC;wBAED,IAAI,aAAa,EAAE,CAAC;4BAClB,IAAI,gBAAgB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC;gCAC/B,MAAA,MAAM,CAAC,KAAK,CAAC,aAAa,EAAC,KAAK,QAAL,KAAK,GAAK,EAAE,EAAC;gCACxC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,CAAC,KAAK,EAAE;oCAC9C,KAAK,EAAE,kBAAkB;iCAC1B,CAAC,CAAC;4BACL,CAAC;wBACH,CAAC;oBACH,CAAC;gBACH,CAAC;gBAED,iDAAiD;gBACjD,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,IAAI,IAAI,EAAE,CAAC;oBAC/B,MAAM,CAAC,MAAM,CAAC,IAAI,GAAG,IAAI,CAAC;gBAC5B,CAAC;gBAED,gEAAgE;gBAChE,sEAAsE;gBACtE,sEAAsE;gBACtE,+DAA+D;gBAC/D,IAAI,MAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,IAAI,0CAAE,eAAe,EAAE,CAAC;oBAChC,IAAI,MAAM,CAAC,GAAG,IAAI,IAAI,EAAE,CAAC;wBACvB,MAAM,CAAC,GAAG,GAAG,KAAK,CAAC;oBACrB,CAAC;gBACH,CAAC;qBAAM,CAAC;oBACN,IAAI,MAAM,CAAC,OAAO,IAAI,IAAI,EAAE,CAAC;wBAC3B,MAAM,CAAC,OAAO,GAAG,KAAK,CAAC;oBACzB,CAAC;gBACH,CAAC;gBAED,YAAY,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC;YACjC,CAAC;SACF;KACF,CAAC;AACJ,CAAC;AAED,SAAS,gBAAgB,CAAC,IAAY;IACpC,IAAI,gBAAgB,GAAG,IAAI,KAAK,YAAY,IAAI,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC;IAE9E;;;;;;OAMG;IACH,IAAI,gBAAgB,EAAE,CAAC;QACrB,OAAO,CAAC,GAAG,CAAC,sBAAsB,GAAG,MAAM,CAAC;IAC9C,CAAC;IAED,OAAO,gBAAgB,CAAC;AAC1B,CAAC;AAED,SAAS,YAAY,CAAC,MAAkB,EAAE,IAAY;IACpD,IAAI,IAAI,KAAK,YAAY,EAAE,CAAC;QAC1B,OAAO;IACT,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,KAAK,KAAZ,MAAM,CAAC,KAAK,GAAK,EAAE,EAAC;IAEpB,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM,KAAK,SAAS,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM,KAAK,IAAI,EAAE,CAAC;QACtE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,QAAQ,CAAC;IACjC,CAAC;IAED,IAAI,MAAM,CAAC,KAAK,CAAC,MAAM,KAAK,QAAQ,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,aAAa,EAAE,CAAC;QACpE,MAAM,CAAC,KAAK,CAAC,aAAa,GAAG;YAC3B,MAAM,EAAE,IAAI;YACZ,QAAQ,EAAE;gBACR,MAAM,EAAE,CAAC;gBACT,UAAU,EAAE,KAAK;gBACjB,WAAW,EAAE,KAAK;gBAClB,QAAQ,EAAE,IAAI;aACf;SACF,CAAC;IACJ,CAAC;AACH,CAAC;AAED,SAAS,UAAU,CAAC,OAA8B,EAAE,IAAY;IAC9D,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,OAAO,SAAS,CAAC;IACnB,CAAC;IACD,KAAK,IAAI,OAAO,IAAI,OAAO,EAAE,CAAC;QAC5B,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,IAAI,IAAI,EAAE,CAAC;YACnD,IAAI,MAAM,IAAI,OAAO,IAAI,OAAO,CAAC,IAAI,KAAK,IAAI,EAAE,CAAC;gBAC/C,OAAO,OAA4B,CAAC;YACtC,CAAC;QACH,CAAC;QACD,IAAI,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC;YAC3B,IAAI,OAAO,GAAG,UAAU,CAAC,OAA8B,EAAE,IAAI,CAAC,CAAC;YAC/D,IAAI,OAAO,EAAE,CAAC;gBACZ,OAAO,OAAO,CAAC;YACjB,CAAC;QACH,CAAC;IACH,CAAC;IACD,OAAO,SAAS,CAAC;AACnB,CAAC;AAED,SAAS,qBAAqB,CAC5B,iBAA2B,EAC3B,OAA8B;IAE9B,OAAO,iBAAiB;SACrB,GAAG,CAAC,IAAI,CAAC,EAAE;QACV,IAAI,OAAO,GAAG,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QACxC,IAAI,OAAO,EAAE,CAAC;YACZ,IAAI,IAAI,KAAK,oBAAoB,EAAE,CAAC;gBAClC,wCAAwC;gBACxC,OAAO,QAAQ,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;YACtC,CAAC;YACD,OAAO,OAAO,CAAC;QACjB,CAAC;IACH,CAAC,CAAC;SACD,MAAM,CAAC,OAAO,CAAQ,CAAC;AAC5B,CAAC","sourcesContent":["import { existsSync } from 'fs';\nimport { templateTag } from './template-tag.js';\nimport { resolver } from './resolver.js';\nimport type { ConfigEnv, Plugin } from 'vite';\n\nimport { esBuildResolver } from './esbuild-resolver.js';\nimport { warnRootUrl } from './warn-root-url.js';\nimport type { ViteUserConfig as UserConfig, Vite8UserConfig } from './types.js';\n\nexport let extensions = ['.mjs', '.gjs', '.js', '.mts', '.gts', '.ts', '.hbs', '.hbs.js', '.json'];\n\nexport const defaultRolldownSharedPlugins = [\n 'rollup-hbs-plugin',\n 'embroider-template-tag',\n 'embroider-resolver',\n 'babel',\n];\n\nfunction hasRolldown(pluginContext: any, _config: unknown): _config is Vite8UserConfig {\n return Boolean(pluginContext?.meta?.rolldownVersion);\n}\n\nexport function ember(params?: {\n /**\n * List of names of rollup plugins that should be taken from your regular Vite\n * config and also applied when Rolldown is bundling dependencies for\n * development. The default list of names is importable as\n * `defaultRolldownSharedPlugins`.\n */\n rolldownSharedPlugins?: string[];\n}) {\n return [\n warnRootUrl(),\n templateTag(),\n resolver(),\n {\n name: 'vite-plugin-ember-config',\n async config(config: UserConfig, env: ConfigEnv) {\n // Default vite resolve extensions, which the user can completely\n // override if they want\n config.resolve ||= {};\n config.build ||= {};\n config.server ||= {};\n config.optimizeDeps ||= {};\n config.optimizeDeps.exclude ||= [];\n config.optimizeDeps.extensions ||= [];\n\n if (!config.resolve.extensions) {\n config.resolve.extensions = extensions;\n }\n\n for (let requiredExt of ['.hbs', '.gjs', '.gts']) {\n if (!config.optimizeDeps.extensions.includes(requiredExt)) {\n config.optimizeDeps.extensions.push(requiredExt);\n }\n }\n\n // @embroider/macros needs to not go through dep optimization\n config.optimizeDeps.exclude.push('@embroider/macros');\n\n const emberRollupPlugins = sharedRolldownPlugins(\n params?.rolldownSharedPlugins ?? defaultRolldownSharedPlugins,\n config.plugins\n );\n\n if (hasRolldown(this, config)) {\n /**\n * Vite 8 and higher\n */\n config.optimizeDeps.rolldownOptions ||= {};\n config.optimizeDeps.rolldownOptions.plugins ||= [];\n if (!Array.isArray(config.optimizeDeps.rolldownOptions.plugins)) {\n throw new Error(\n 'Could not automatically configure the Ember plugin for optimizeDeps. optimizeDeps.rolldownOptions.plugins must be an array.'\n );\n }\n config.optimizeDeps.rolldownOptions.plugins.push(...emberRollupPlugins);\n\n config.optimizeDeps.rolldownOptions.resolve ||= {};\n config.optimizeDeps.rolldownOptions.resolve.extensions = extensions;\n } else {\n /**\n * Vite 7 and lower\n */\n config.optimizeDeps.esbuildOptions ||= {};\n config.optimizeDeps.esbuildOptions.plugins ||= [];\n config.optimizeDeps.esbuildOptions.plugins.push(esBuildResolver());\n }\n\n // we provide a default build.rollupOptions.input that builds index.html\n // and, in non-production or when forcing tests, tests/index.html. But\n // the user may choose to take charge of input entirely.\n let hasRootEntry = existsSync('index.html');\n let hasTestsEntry = existsSync('tests/index.html');\n\n if (!config.build.rolldownOptions?.input) {\n if (hasRolldown(this, config)) {\n config.build.rolldownOptions ||= {};\n\n if (hasRootEntry) {\n config.build.rolldownOptions.input ||= {};\n Object.assign(config.build.rolldownOptions.input, {\n main: 'index.html',\n });\n }\n\n if (hasTestsEntry) {\n if (shouldBuildTests(env.mode)) {\n config.build.rolldownOptions.input ||= {};\n Object.assign(config.build.rolldownOptions.input, {\n tests: 'tests/index.html',\n });\n }\n }\n } else {\n config.build.rollupOptions ||= {};\n\n if (hasRootEntry) {\n config.build.rollupOptions.input ||= {};\n Object.assign(config.build.rollupOptions.input, {\n main: 'index.html',\n });\n }\n\n if (hasTestsEntry) {\n if (shouldBuildTests(env.mode)) {\n config.build.rollupOptions.input ||= {};\n Object.assign(config.build.rollupOptions.input, {\n tests: 'tests/index.html',\n });\n }\n }\n }\n }\n\n // Traditional ember development port as default.\n if (config.server.port == null) {\n config.server.port = 4200;\n }\n\n // vite will try to transpile away typescript in .ts files using\n // esbuild. But if we have any typescript, we expect it to get handled\n // by babel, because we don't want esbuild's decorator implementation.\n // @ts-expect-error the types aren't finished yet it would seem\n if (this?.meta?.rolldownVersion) {\n if (config.oxc == null) {\n config.oxc = false;\n }\n } else {\n if (config.esbuild == null) {\n config.esbuild = false;\n }\n }\n\n minification(config, env.mode);\n },\n },\n ];\n}\n\nfunction shouldBuildTests(mode: string) {\n let shouldBuildTests = mode !== 'production' || process.env.FORCE_BUILD_TESTS;\n\n /**\n * If we are trying to build tests in a production by setting `FORCE_BUILD_TESTS=true` then we need\n * to tell ember-cli to build the test files too. This will allow embroider to discover things like\n * {{content-for}} invocations in your tests/index.html and build them effectively in the prebuild.\n *\n * This is the relevant code in ember-cli that we're targeting: https://github.com/ember-cli/ember-cli/blob/a5648f9da2e8ae547091248f3e528485943a53bf/lib/broccoli/ember-app.js#L173\n */\n if (shouldBuildTests) {\n process.env.EMBER_CLI_TEST_COMMAND = 'true';\n }\n\n return shouldBuildTests;\n}\n\nfunction minification(config: UserConfig, mode: string) {\n if (mode !== 'production') {\n return;\n }\n\n /**\n * Outside of test, the only other time \"build\" is used,\n * is production\n */\n config.build ||= {};\n\n if (config.build.minify === undefined || config.build.minify === true) {\n config.build.minify = 'terser';\n }\n\n if (config.build.minify === 'terser' && !config.build.terserOptions) {\n config.build.terserOptions = {\n module: true,\n compress: {\n passes: 3,\n keep_fargs: false,\n keep_fnames: false,\n toplevel: true,\n },\n };\n }\n}\n\nfunction findPlugin(plugins: UserConfig['plugins'], name: string): Plugin | undefined {\n if (!plugins) {\n return undefined;\n }\n for (let element of plugins) {\n if (typeof element === 'object' && element != null) {\n if ('name' in element && element.name === name) {\n return element as unknown as Plugin;\n }\n }\n if (Array.isArray(element)) {\n let matched = findPlugin(element as unknown as Plugin[], name);\n if (matched) {\n return matched;\n }\n }\n }\n return undefined;\n}\n\nfunction sharedRolldownPlugins<T extends { name: string }>(\n sharedPluginNames: string[],\n plugins: UserConfig['plugins']\n): NonNullable<UserConfig['plugins']> {\n return sharedPluginNames\n .map(name => {\n let matched = findPlugin(plugins, name);\n if (matched) {\n if (name === 'embroider-resolver') {\n // special case. Needs different config.\n return resolver({ rolldown: true });\n }\n return matched;\n }\n })\n .filter(Boolean) as T[];\n}\n"]}
|
package/dist/src/hbs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hbs.js","sourceRoot":"","sources":["../../src/hbs.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"hbs.js","sourceRoot":"","sources":["../../src/hbs.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,2BAA2B,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,SAAS,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAGtE,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAC,KAAK,CAAC,CAAC;AAE1C,MAAM,UAAU,GAAG;IACjB,OAAO;QACL,IAAI,EAAE,mBAAmB;QACzB,OAAO,EAAE,KAAK;QAEd,IAAI,CAAC,EAAU;;YACb,IAAI,CAAA,MAAA,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,0CAAE,IAAI,MAAK,4BAA4B,EAAE,CAAC;gBAC7D,OAAO;oBACL,IAAI,EAAE,2BAA2B,EAAE;iBACpC,CAAC;YACJ,CAAC;QACH,CAAC;QAED,SAAS,EAAE,mBAAmB;YAC5B,CAAC,CAAC;gBACE,MAAM,EAAE,EAAE,EAAE,EAAE,SAAS,EAAE;gBACzB,OAAO,CAAC,IAAY;oBAClB,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;gBACvB,CAAC;aACF;YACH,CAAC,CAAC,UAAU,IAAY,EAAE,EAAU;gBAChC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;oBAAE,OAAO,IAAI,CAAC;gBACrC,OAAO,OAAO,CAAC,IAAI,CAAC,CAAC;YACvB,CAAC;KACN,CAAC;AACJ,CAAC;AAMD,SAAS,OAAO,CAAC,OAAsB,EAAE,EAAU;;IACjD,MAAM,IAAI,GAAG,MAAA,MAAA,OAAO,CAAC,aAAa,CAAC,EAAE,CAAC,0CAAE,IAAI,0CAAG,mBAAmB,CAAC,CAAC;IACpE,IAAI,IAAI,EAAE,CAAC;QACT,OAAO,IAAY,CAAC;IACtB,CAAC;SAAM,CAAC;QACN,OAAO,IAAI,CAAC;IACd,CAAC;AACH,CAAC","sourcesContent":["import type { Plugin } from 'vite';\nimport { hbsToJS, templateOnlyComponentSource } from '@embroider/core';\nimport { extFilter, supportsObjectHooks } from './build-id-filter.js';\nimport type { PluginContext } from 'rolldown';\n\nexport const hbsFilter = extFilter('hbs');\n\nexport function hbs(): Plugin {\n return {\n name: 'rollup-hbs-plugin',\n enforce: 'pre',\n\n load(id: string) {\n if (getMeta(this, id)?.type === 'template-only-component-js') {\n return {\n code: templateOnlyComponentSource(),\n };\n }\n },\n\n transform: supportsObjectHooks\n ? {\n filter: { id: hbsFilter },\n handler(code: string) {\n return hbsToJS(code);\n },\n }\n : function (code: string, id: string) {\n if (!hbsFilter.test(id)) return null;\n return hbsToJS(code);\n },\n };\n}\n\ntype Meta = {\n type: 'template-only-component-js';\n};\n\nfunction getMeta(context: PluginContext, id: string): Meta | null {\n const meta = context.getModuleInfo(id)?.meta?.['rollup-hbs-plugin'];\n if (meta) {\n return meta as Meta;\n } else {\n return null;\n }\n}\n"]}
|
package/dist/src/request.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ModuleRequest, RequestAdapter, RequestAdapterCreate, Resolution, RewrittenPackageCache, VirtualResponse } from '@embroider/core';
|
|
2
|
-
import type { PluginContext, ResolveIdResult } from '
|
|
2
|
+
import type { PluginContext, ResolveIdResult } from 'rolldown';
|
|
3
3
|
import type { BackChannel } from './backchannel.js';
|
|
4
4
|
interface Init {
|
|
5
5
|
context: PluginContext;
|
|
@@ -26,7 +26,9 @@ export declare class RollupRequestAdapter implements RequestAdapter<Resolution<R
|
|
|
26
26
|
get debugType(): string;
|
|
27
27
|
private specifierWithQueryParams;
|
|
28
28
|
private fromFileWithQueryParams;
|
|
29
|
-
virtualResponse(request: ModuleRequest<Resolution<ResolveIdResult>>, virtual: VirtualResponse): Resolution<ResolveIdResult
|
|
29
|
+
virtualResponse(request: ModuleRequest<Resolution<ResolveIdResult>>, virtual: VirtualResponse): Resolution<ResolveIdResult & {
|
|
30
|
+
resolvedBy: string;
|
|
31
|
+
}>;
|
|
30
32
|
notFoundResponse(_request: ModuleRequest<Resolution<ResolveIdResult>>): Resolution<ResolveIdResult>;
|
|
31
33
|
resolve(request: ModuleRequest<Resolution<ResolveIdResult>>): Promise<Resolution<ResolveIdResult>>;
|
|
32
34
|
}
|
package/dist/src/request.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"request.js","sourceRoot":"","sources":["../../src/request.ts"],"names":[],"mappings":"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","sourcesContent":["import type {\n ModuleRequest,\n RequestAdapter,\n RequestAdapterCreate,\n Resolution,\n RewrittenPackageCache,\n VirtualResponse,\n} from '@embroider/core';\nimport core from '@embroider/core';\nimport { resolve } from 'path';\n\nconst { cleanUrl, getUrlQueryParams, packageName } = core;\nimport type { PluginContext, ResolveIdResult } from 'rollup';\nimport type { BackChannel } from './backchannel.js';\nimport { assertNever } from 'assert-never';\nimport { externalName } from '@embroider/reverse-exports';\n\ninterface Init {\n context: PluginContext;\n source: string;\n importer: string | undefined;\n custom: Record<string, any> | undefined;\n backChannel: BackChannel | undefined;\n isDepBundling: boolean;\n packageCache: RewrittenPackageCache;\n}\n\nexport interface ResponseMeta {\n virtual: VirtualResponse;\n}\n\nexport class RollupRequestAdapter implements RequestAdapter<Resolution<ResolveIdResult>> {\n static create: RequestAdapterCreate<Init, Resolution<ResolveIdResult>> = ({\n context,\n source,\n importer,\n custom,\n backChannel,\n isDepBundling,\n packageCache,\n }: Init) => {\n if (!(custom?.embroider?.enableCustomResolver ?? true)) {\n return;\n }\n if (source && importer && source[0] !== '\\0') {\n // strip query params off the importer\n let fromFile = cleanUrl(importer);\n if (process.platform === 'win32') {\n // embroider uses real OS paths for filenames. Vite and Esbuild don't do so consistently.\n fromFile = fromFile.replace(/\\//g, '\\\\');\n }\n let importerQueryParams = getUrlQueryParams(importer);\n\n if (source.startsWith('/@embroider/virtual/')) {\n // when our virtual paths are used in HTML they come into here with a /\n // prefix. We still want them to resolve like packages.\n source = source.slice(1);\n }\n\n // strip query params off the source but keep track of them\n // we use regexp-based methods over a URL object because the\n // source can be a relative path.\n let cleanSource = cleanUrl(source);\n let queryParams = getUrlQueryParams(source);\n\n return {\n initialState: { specifier: cleanSource, fromFile, meta: custom?.embroider?.meta },\n adapter: new RollupRequestAdapter(\n context,\n queryParams,\n importerQueryParams,\n custom,\n backChannel,\n isDepBundling,\n packageCache\n ),\n };\n }\n };\n\n private constructor(\n private context: PluginContext,\n private queryParams: string,\n private importerQueryParams: string,\n private custom: Record<string, unknown> | undefined,\n private backChannel: BackChannel | undefined,\n private isDepBundling: boolean,\n private packageCache: RewrittenPackageCache\n ) {}\n\n get debugType() {\n return 'rollup';\n }\n\n private specifierWithQueryParams(specifier: string): string {\n return `${specifier}${this.queryParams}`;\n }\n\n private fromFileWithQueryParams(fromFile: string): string {\n return `${fromFile}${this.importerQueryParams}`;\n }\n\n virtualResponse(\n request: ModuleRequest<Resolution<ResolveIdResult>>,\n virtual: VirtualResponse\n ): Resolution<ResolveIdResult> {\n return {\n type: 'found',\n filename: virtual.specifier,\n result: {\n // The `resolve` here is necessary on windows, where we might have\n // unix-like specifiers but Vite needs to see a real windows path in the\n // result.\n id: resolve(this.specifierWithQueryParams(virtual.specifier)),\n resolvedBy: this.fromFileWithQueryParams(request.fromFile),\n meta: {\n 'embroider-resolver': { virtual } satisfies ResponseMeta,\n },\n },\n virtual,\n };\n }\n\n notFoundResponse(_request: ModuleRequest<Resolution<ResolveIdResult>>): Resolution<ResolveIdResult> {\n let err = new Error(`module not found ${this.specifierWithQueryParams}`);\n (err as any).code = 'MODULE_NOT_FOUND';\n return { type: 'not_found', err };\n }\n\n async resolve(request: ModuleRequest<Resolution<ResolveIdResult>>): Promise<Resolution<ResolveIdResult>> {\n if (this.backChannel) {\n this.backChannel.requestStatus(request.specifier, request.fromFile);\n }\n\n let result = await this.context.resolve(\n this.specifierWithQueryParams(request.specifier),\n this.fromFileWithQueryParams(request.fromFile),\n {\n skipSelf: true,\n custom: {\n ...this.custom,\n embroider: {\n enableCustomResolver: false,\n meta: request.meta,\n },\n },\n }\n );\n\n if (!result) {\n return { type: 'not_found', err: undefined };\n }\n\n let { pathname: filename } = new URL(result.id, 'http://example.com');\n\n if (this.backChannel) {\n let status = this.backChannel.readStatus(request.specifier, request.fromFile);\n switch (status.type) {\n case 'not_found':\n return { type: 'not_found', err: result };\n case 'found':\n if (result.external) {\n // when we know that the file was really found, but vite has\n // externalized it, report the true filename that was found, not the\n // externalized request path.\n filename = status.filename;\n }\n break;\n case 'indeterminate':\n break;\n default:\n throw assertNever(status);\n }\n }\n\n if (this.isDepBundling) {\n // we need to ensure that we don't traverse back into the app while\n // doing dependency pre-bundling. There are multiple ways an addon can\n // resolve things from the app, due to the existince of both app-js\n // (modules in addons that are logically part of the app's namespace)\n // and non-strict handlebars (which resolves\n // components/helpers/modifiers against the app's global pool).\n let pkg = this.packageCache.ownerOfFile(filename);\n if (pkg?.root === this.packageCache.appRoot) {\n let externalizedName = request.specifier;\n if (!packageName(externalizedName)) {\n // the request was a relative path. This won't remain valid once\n // it has been bundled into vite/deps. But we know it targets the\n // app, so we can always convert it into a non-relative import\n // from the app's namespace\n //\n // IMPORTANT: whenever an addon resolves a relative path to the\n // app, it does so because our code in the core resolver has\n // rewritten the request to be relative to the app's root. So here\n // we will only ever encounter relative paths that are already\n // relative to the app's root directory.\n externalizedName = externalName(pkg.packageJSON, externalizedName) || externalizedName;\n }\n return {\n type: 'found',\n filename: externalizedName,\n virtual: false,\n result: {\n id: externalizedName,\n external: true,\n },\n };\n }\n }\n\n return { type: 'found', filename, result, virtual: false };\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"request.js","sourceRoot":"","sources":["../../src/request.ts"],"names":[],"mappings":"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","sourcesContent":["import type {\n ModuleRequest,\n RequestAdapter,\n RequestAdapterCreate,\n Resolution,\n RewrittenPackageCache,\n VirtualResponse,\n} from '@embroider/core';\nimport core from '@embroider/core';\nimport { resolve } from 'path';\n\nconst { cleanUrl, getUrlQueryParams, packageName } = core;\nimport type { PluginContext, ResolveIdResult } from 'rolldown';\nimport type { BackChannel } from './backchannel.js';\nimport { assertNever } from 'assert-never';\nimport { externalName } from '@embroider/reverse-exports';\n\ninterface Init {\n context: PluginContext;\n source: string;\n importer: string | undefined;\n custom: Record<string, any> | undefined;\n backChannel: BackChannel | undefined;\n isDepBundling: boolean;\n packageCache: RewrittenPackageCache;\n}\n\nexport interface ResponseMeta {\n virtual: VirtualResponse;\n}\n\nexport class RollupRequestAdapter implements RequestAdapter<Resolution<ResolveIdResult>> {\n static create: RequestAdapterCreate<Init, Resolution<ResolveIdResult>> = ({\n context,\n source,\n importer,\n custom,\n backChannel,\n isDepBundling,\n packageCache,\n }: Init) => {\n if (!(custom?.embroider?.enableCustomResolver ?? true)) {\n return;\n }\n if (source && importer && source[0] !== '\\0') {\n // strip query params off the importer\n let fromFile = cleanUrl(importer);\n if (process.platform === 'win32') {\n // embroider uses real OS paths for filenames. Vite and Esbuild don't do so consistently.\n fromFile = fromFile.replace(/\\//g, '\\\\');\n }\n let importerQueryParams = getUrlQueryParams(importer);\n\n if (source.startsWith('/@embroider/virtual/')) {\n // when our virtual paths are used in HTML they come into here with a /\n // prefix. We still want them to resolve like packages.\n source = source.slice(1);\n }\n\n // strip query params off the source but keep track of them\n // we use regexp-based methods over a URL object because the\n // source can be a relative path.\n let cleanSource = cleanUrl(source);\n let queryParams = getUrlQueryParams(source);\n\n return {\n initialState: { specifier: cleanSource, fromFile, meta: custom?.embroider?.meta },\n adapter: new RollupRequestAdapter(\n context,\n queryParams,\n importerQueryParams,\n custom,\n backChannel,\n isDepBundling,\n packageCache\n ),\n };\n }\n };\n\n private constructor(\n private context: PluginContext,\n private queryParams: string,\n private importerQueryParams: string,\n private custom: Record<string, unknown> | undefined,\n private backChannel: BackChannel | undefined,\n private isDepBundling: boolean,\n private packageCache: RewrittenPackageCache\n ) {}\n\n get debugType() {\n return 'rollup';\n }\n\n private specifierWithQueryParams(specifier: string): string {\n return `${specifier}${this.queryParams}`;\n }\n\n private fromFileWithQueryParams(fromFile: string): string {\n return `${fromFile}${this.importerQueryParams}`;\n }\n\n virtualResponse(\n request: ModuleRequest<Resolution<ResolveIdResult>>,\n virtual: VirtualResponse\n ): Resolution<ResolveIdResult & { resolvedBy: string }> {\n return {\n type: 'found',\n filename: virtual.specifier,\n result: {\n // The `resolve` here is necessary on windows, where we might have\n // unix-like specifiers but Vite needs to see a real windows path in the\n // result.\n id: resolve(this.specifierWithQueryParams(virtual.specifier)),\n resolvedBy: this.fromFileWithQueryParams(request.fromFile),\n meta: {\n 'embroider-resolver': { virtual } satisfies ResponseMeta,\n },\n },\n virtual,\n };\n }\n\n notFoundResponse(_request: ModuleRequest<Resolution<ResolveIdResult>>): Resolution<ResolveIdResult> {\n let err = new Error(`module not found ${this.specifierWithQueryParams}`);\n (err as any).code = 'MODULE_NOT_FOUND';\n return { type: 'not_found', err };\n }\n\n async resolve(request: ModuleRequest<Resolution<ResolveIdResult>>): Promise<Resolution<ResolveIdResult>> {\n if (this.backChannel) {\n this.backChannel.requestStatus(request.specifier, request.fromFile);\n }\n\n let result = await this.context.resolve(\n this.specifierWithQueryParams(request.specifier),\n this.fromFileWithQueryParams(request.fromFile),\n {\n skipSelf: true,\n custom: {\n ...this.custom,\n embroider: {\n enableCustomResolver: false,\n meta: request.meta,\n },\n },\n }\n );\n\n if (!result) {\n return { type: 'not_found', err: undefined };\n }\n\n let { pathname: filename } = new URL(result.id, 'http://example.com');\n\n if (this.backChannel) {\n let status = this.backChannel.readStatus(request.specifier, request.fromFile);\n switch (status.type) {\n case 'not_found':\n return { type: 'not_found', err: result };\n case 'found':\n if (result.external) {\n // when we know that the file was really found, but vite has\n // externalized it, report the true filename that was found, not the\n // externalized request path.\n filename = status.filename;\n }\n break;\n case 'indeterminate':\n break;\n default:\n throw assertNever(status);\n }\n }\n\n if (this.isDepBundling) {\n // we need to ensure that we don't traverse back into the app while\n // doing dependency pre-bundling. There are multiple ways an addon can\n // resolve things from the app, due to the existince of both app-js\n // (modules in addons that are logically part of the app's namespace)\n // and non-strict handlebars (which resolves\n // components/helpers/modifiers against the app's global pool).\n let pkg = this.packageCache.ownerOfFile(filename);\n if (pkg?.root === this.packageCache.appRoot) {\n let externalizedName = request.specifier;\n if (!packageName(externalizedName)) {\n // the request was a relative path. This won't remain valid once\n // it has been bundled into vite/deps. But we know it targets the\n // app, so we can always convert it into a non-relative import\n // from the app's namespace\n //\n // IMPORTANT: whenever an addon resolves a relative path to the\n // app, it does so because our code in the core resolver has\n // rewritten the request to be relative to the app's root. So here\n // we will only ever encounter relative paths that are already\n // relative to the app's root directory.\n externalizedName = externalName(pkg.packageJSON, externalizedName) || externalizedName;\n }\n return {\n type: 'found',\n filename: externalizedName,\n virtual: false,\n result: {\n id: externalizedName,\n external: true,\n },\n };\n }\n }\n\n return { type: 'found', filename, result, virtual: false };\n }\n}\n"]}
|
package/dist/src/resolver.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolver.js","sourceRoot":"","sources":["../../src/resolver.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmC,aAAa,EAAE,MAAM,MAAM,CAAC;AACtE,OAAO,IAAI,EAAE,EAAE,aAAa,EAA+B,MAAM,iBAAiB,CAAC;AACnF,MAAM,EAAE,cAAc,EAAE,cAAc,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;AACpF,OAAO,EAAqB,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,SAAS,MAAM,OAAO,CAAC;AAC9B,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAE/C,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,MAAM,UAAU,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACpC,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAElD,MAAM,EAAE,iBAAiB,EAAE,aAAa,EAAE,UAAU,EAAE,GAAG,EAAE,CAAC;AAE5D,MAAM,KAAK,GAAG,SAAS,CAAC,gBAAgB,CAAC,CAAC;AAE1C,MAAM,UAAU,QAAQ,CAAC,MAA+B;IACtD,MAAM,cAAc,GAAG,IAAI,cAAc,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CAAC;IACzD,IAAI,MAAqB,CAAC;IAC1B,MAAM,WAAW,GAA0B,IAAI,GAAG,EAAE,CAAC;IACrD,MAAM,WAAW,GAAG,IAAI,GAAG,EAAU,CAAC;IACtC,MAAM,aAAa,GAA8B,IAAI,GAAG,EAAE,CAAC;IAC3D,MAAM,WAAW,GAAG,CAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,QAAQ,EAAC,CAAC,CAAC,IAAI,WAAW,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;IACrE,IAAI,QAAQ,GAAG,EAAE,CAAC;IAElB,KAAK,UAAU,SAAS,CACtB,OAAsB,EACtB,MAAc,EACd,QAA4B,EAC5B,OAA6D;;QAE7D,kDAAkD;QAClD,IAAI,aAAa,GAAG,OAAO,CAAC,MAAA,MAAA,OAAO,CAAC,aAAa,0CAAE,GAAG,0CAAE,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;QAE3E,iEAAiE;QACjE,IAAI,CAAA,MAAA,OAAO,CAAC,MAAM,0CAAE,OAAO,KAAI,OAAO,CAAC,IAAI,EAAE,CAAC;YAC5C,OAAO,MAAM,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;QAClE,CAAC;QAED,IAAI,OAAO,GAAG,aAAa,CAAC,MAAM,CAAC,oBAAoB,CAAC,MAAM,EAAE;YAC9D,OAAO;YACP,MAAM;YACN,QAAQ;YACR,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,WAAW;YACX,aAAa;YACb,YAAY,EAAE,cAAc,CAAC,QAAQ,CAAC,YAAY;SACnD,CAAC,CAAC;QACH,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,sCAAsC;YACtC,OAAO,IAAI,CAAC;QACd,CAAC;QACD,IAAI,UAAU,GAAG,MAAM,cAAc,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAChE,QAAQ,UAAU,CAAC,IAAI,EAAE,CAAC;YACxB,KAAK,OAAO;gBACV,IAAI,UAAU,CAAC,OAAO,EAAE,CAAC;oBACvB,OAAO,UAAU,CAAC,MAAM,CAAC;gBAC3B,CAAC;qBAAM,CAAC;oBACN,OAAO,MAAM,2BAA2B,CACtC,OAAO,EACP,cAAc,CAAC,QAAQ,EACvB,UAAU,CAAC,MAAM,EACjB,WAAW,EACX,QAAQ,CACT,CAAC;gBACJ,CAAC;YACH,KAAK,WAAW;gBACd,OAAO,IAAI,CAAC;YACd;gBACE,MAAM,WAAW,CAAC,UAAU,CAAC,CAAC;QAClC,CAAC;IACH,CAAC;IAED,KAAK,UAAU,oBAAoB,CAAC,OAAsB,EAAE,SAAiB;;QAC3E,IAAI,MAAM,GAAG,MAAM,SAAS,CAC1B,OAAO,EACP,SAAS,EACT,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,EAAE,cAAc,CAAC,EAChE,EAAE,CACH,CAAC;QACF,IAAI,CAAC,MAAM,EAAE,CAAC;YACZ,MAAM,IAAI,KAAK,CAAC,4BAA4B,SAAS,EAAE,CAAC,CAAC;QAC3D,CAAC;QACD,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;YAC/B,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;QAC9D,CAAC;QACD,IAAI,IAAI,GAAG,MAAA,MAAM,CAAC,IAAI,0CAAG,oBAAoB,CAA6B,CAAC;QAC3E,IAAI,CAAC,IAAI,EAAE,CAAC;YACV,MAAM,IAAI,KAAK,CAAC,6BAA6B,SAAS,EAAE,CAAC,CAAC;QAC5D,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK,UAAU,eAAe,CAAC,OAAsB,EAAE,QAAgB;QACrE,OAAO,CAAC,QAAQ,CAAC;YACf,IAAI,EAAE,OAAO;YACb,QAAQ;YACR,MAAM,EAAE,cAAc,CAAC,CAAC,MAAM,oBAAoB,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC,OAAO,EAAE,cAAc,CAAC,QAAQ,CAAC,CAAC,GAAG;SAC7G,CAAC,CAAC;IACL,CAAC;IAED,IAAI,IAAI,GAAG,EAAE,CAAC;IAEd,OAAO;QACL,IAAI,EAAE,oBAAoB;QAC1B,OAAO,EAAE,KAAK;QAEd,cAAc,CAAC,MAAM;YACnB,IAAI,GAAG,MAAM,CAAC,IAAI,CAAC;YACnB,QAAQ,GAAG,SAAS,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QACxC,CAAC;QAED,eAAe,CAAC,CAAC;YACf,MAAM,GAAG,CAAC,CAAC;YACX,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,UAAU,EAAE,IAAI,EAAE,EAAE;gBAC5C,KAAK,IAAI,CAAC,EAAE,EAAE,OAAO,CAAC,IAAI,WAAW,EAAE,CAAC;oBACtC,KAAK,IAAI,KAAK,IAAI,OAAO,EAAE,CAAC;wBAC1B,IAAI,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,EAAE,CAAC;4BAC3B,KAAK,CAAC,0BAA0B,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC;4BAC5C,MAAM,CAAC,WAAW,CAAC,YAAY,CAAC,EAAE,CAAC,CAAC;4BACpC,IAAI,CAAC,GAAG,MAAM,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;4BAC7C,IAAI,CAAC,EAAE,CAAC;gCACN,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;4BACzB,CAAC;wBACH,CAAC;oBACH,CAAC;gBACH,CAAC;YACH,CAAC,CAAC,CAAC;YACH,OAAO,GAAG,EAAE;gBACV,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE;oBACzC,MAAM,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,IAAI,GAAG,CAAC;oBACvC,IAAI,WAAW,GAAG,GAAG,CAAC,WAAW,CAAC;oBAClC,IAAI,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;wBAClC,WAAW,GAAG,GAAG,CAAC,WAAY,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;oBACxD,CAAC;oBACD,IAAI,WAAW,IAAI,WAAW,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;wBAC1C,IAAI,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,KAAK,CAAC,gBAAgB,CAAC,EAAE,CAAC;4BACzC,GAAG,CAAC,GAAG,GAAG,mBAAmB,CAAC;4BAC9B,OAAO,IAAI,EAAE,CAAC;wBAChB,CAAC;oBACH,CAAC;oBACD,OAAO,IAAI,EAAE,CAAC;gBAChB,CAAC,CAAC,CAAC;YACL,CAAC,CAAC;QACJ,CAAC;QAED,KAAK,CAAC,SAAS,CAAC,MAAM,EAAE,QAAQ,EAAE,OAAO;;YACvC,IAAI,UAAU,GAAG,MAAM,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;YAClE,IAAI,OAAO,UAAU,KAAK,QAAQ,EAAE,CAAC;gBACnC,OAAO,UAAU,CAAC;YACpB,CAAC;YACD,IAAI,UAAU,KAAI,MAAA,UAAU,CAAC,IAAI,0CAAG,oBAAoB,CAAC,CAAA,EAAE,CAAC;gBAC1D,aAAa,CAAC,GAAG,CAAC,aAAa,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,UAAU,CAAC,IAAI,CAAC,oBAAoB,CAAiB,CAAC,CAAC;YACzG,CAAC;YACD,OAAO,UAAU,CAAC;QACpB,CAAC;QAED,IAAI,CAAC,EAAE;YACL,IAAI,IAAI,GAAG,aAAa,CAAC,GAAG,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC,CAAC;YAChD,IAAI,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,OAAO,EAAE,CAAC;gBAClB,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,GAAG,cAAc,CAAC,IAAI,CAAC,OAAO,EAAE,cAAc,CAAC,QAAQ,CAAC,CAAC;gBAC7E,WAAW,CAAC,GAAG,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC;gBAC7B,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;gBAC7B,OAAO,GAAG,CAAC;YACb,CAAC;QACH,CAAC;QACD,KAAK,CAAC,QAAQ;YACZ,eAAe,CAAC,IAAI,EAAE,8BAA8B,CAAC,CAAC;YACtD,eAAe,CAAC,IAAI,EAAE,+BAA+B,CAAC,CAAC;YAEvD,IAAI,IAAI,KAAK,YAAY,EAAE,CAAC;gBAC1B,eAAe,CAAC,IAAI,EAAE,oCAAoC,CAAC,CAAC;gBAC5D,eAAe,CAAC,IAAI,EAAE,qCAAqC,CAAC,CAAC;YAC/D,CAAC;QACH,CAAC;KACF,CAAC;AACJ,CAAC;AAED,oEAAoE;AACpE,kEAAkE;AAClE,sEAAsE;AACtE,uEAAuE;AACvE,iEAAiE;AACjE,gEAAgE;AAChE,oEAAoE;AACpE,mEAAmE;AACnE,oEAAoE;AACpE,sEAAsE;AACtE,kEAAkE;AAClE,wBAAwB;AACxB,KAAK,UAAU,cAAc,CAAC,OAAsB,EAAE,MAAc,EAAE,QAA4B,EAAE,OAAY;IAC9G,IAAI,MAAM,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,QAAQ,EAAE;QACnD,GAAG,OAAO;QACV,QAAQ,EAAE,IAAI;KACf,CAAC,CAAC;IACH,WAAW,CAAC,MAAM,EAAE,QAAQ,aAAR,QAAQ,cAAR,QAAQ,GAAI,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,CAAC,CAAC;IAC7G,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,SAAS,YAAY,CAAC,MAAuB;IAC3C,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,OAAO,SAAS,CAAC;IACnB,CAAC;IACD,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;QAC/B,OAAO,QAAQ,CAAC,MAAM,CAAC,CAAC;IAC1B,CAAC;IACD,OAAO,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;AAC7B,CAAC;AAED,SAAS,MAAM,CAAC,IAAY;IAC1B,IAAI,CAAC,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC;IAC3B,OAAO,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AAClD,CAAC;AAED,KAAK,UAAU,2BAA2B,CACxC,OAAsB,EACtB,QAAkB,EAClB,MAAuB,EACvB,WAAwB,EACxB,QAAgB;IAEhB,IAAI,SAAS,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC;IACrC,IAAI,CAAC,SAAS,EAAE,CAAC;QACf,OAAO,MAAM,CAAC;IAChB,CAAC;IACD,IAAI,SAAS,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC9C,KAAK,CAAC,sDAAsD,EAAE,SAAS,CAAC,CAAC;QACzE,OAAO,MAAM,CAAC;IAChB,CAAC;IACD,IAAI,GAAG,GAAG,QAAQ,CAAC,YAAY,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;IACvD,IAAI,CAAC,CAAA,GAAG,aAAH,GAAG,uBAAH,GAAG,CAAE,SAAS,EAAE,CAAA,EAAE,CAAC;QACtB,KAAK,CAAC,iDAAiD,EAAE,SAAS,CAAC,CAAC;QACpE,OAAO,MAAM,CAAC;IAChB,CAAC;IACD,IAAI,MAAM,GAAG,YAAY,CAAC,GAAG,CAAC,WAAW,EAAE,gBAAgB,CAAC,GAAG,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC;IAClF,IAAI,CAAC,MAAM,EAAE,CAAC;QACZ,KAAK,CAAC,iDAAiD,EAAE,SAAS,CAAC,CAAC;QACpE,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,IAAI,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,EAAE,CAAC;QAC/B,KAAK,CAAC,mDAAmD,EAAE,SAAS,CAAC,CAAC;QACtE,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,KAAK,CAAC,uDAAuD,EAAE,SAAS,CAAC,CAAC;IAE1E,IAAI,QAAQ,GAAG,IAAI,CAAC,MAAM,EAAE,sBAAsB,GAAG,MAAM,CAAC,GAAG,CAAC,IAAI,GAAG,GAAG,GAAG,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;IACxF,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1B,IAAI,GAAG,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC;QAC7B,IAAI,CAAC;YACH,UAAU,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC;QAC5B,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,IAAI,GAAG,CAAC,IAAI,KAAK,QAAQ,EAAE,CAAC;gBAC1B,mEAAmE;gBACnE,eAAe;YACjB,CAAC;iBAAM,CAAC;gBACN,MAAM,GAAG,CAAC;YACZ,CAAC;QACH,CAAC;IACH,CAAC;IACD,IAAI,SAAS,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,cAAc,CAAC,CAAC,CAAC;IAC9E,IAAI,SAAS,EAAE,CAAC;QACd,IAAI,YAAY,CAAC,SAAS,CAAC,KAAK,SAAS,EAAE,CAAC;YAC1C,0DAA0D;YAC1D,yEAAyE;YACzE,sEAAsE;YACtE,yDAAyD;YACzD,EAAE;YACF,gDAAgD;YAChD,KAAK,CAAC,iEAAiE,EAAE,SAAS,CAAC,CAAC;YACpF,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;QAC7B,CAAC;QAED,OAAO,SAAS,CAAC;IACnB,CAAC;SAAM,CAAC;QACN,OAAO,MAAM,CAAC;IAChB,CAAC;AACH,CAAC;AAED,SAAS,aAAa,CAAC,GAAY;IACjC,IAAI,GAAG,GAAG,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,0BAA0B,CAAC,CAAC,CAAC;IAChE,aAAa,CACX,IAAI,CAAC,GAAG,EAAE,cAAc,CAAC,EACzB,IAAI,CAAC,SAAS,CAAC;QACb,IAAI,EAAE,WAAW;KAClB,CAAC,EACF,EAAE,KAAK,EAAE,IAAI,EAAE,CAChB,CAAC;IACF,iBAAiB,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,EAAE,cAAc,EAAE,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC;IACjE,OAAO,GAAG,CAAC;AACb,CAAC","sourcesContent":["import { type Plugin, type ViteDevServer, normalizePath } from 'vite';\nimport core, { ModuleRequest, type Package, type Resolver } from '@embroider/core';\nconst { virtualContent, ResolverLoader, explicitRelative, cleanUrl, tmpdir } = core;\nimport { type ResponseMeta, RollupRequestAdapter } from './request.js';\nimport { assertNever } from 'assert-never';\nimport makeDebug from 'debug';\nimport { join, normalize, resolve } from 'path';\nimport { writeStatus } from './backchannel.js';\nimport type { PluginContext, ResolveIdResult } from 'rollup';\nimport { externalName } from '@embroider/reverse-exports';\nimport fs from 'fs-extra';\nimport { createHash } from 'crypto';\nimport { BackChannel } from './backchannel.js';\nimport { existsSync, mkdtempSync } from 'node:fs';\n\nconst { ensureSymlinkSync, writeFileSync, renameSync } = fs;\n\nconst debug = makeDebug('embroider:vite');\n\nexport function resolver(params?: { rolldown?: boolean }): Plugin {\n const resolverLoader = new ResolverLoader(process.cwd());\n let server: ViteDevServer;\n const virtualDeps: Map<string, string[]> = new Map();\n const notViteDeps = new Set<string>();\n const responseMetas: Map<string, ResponseMeta> = new Map();\n const backChannel = params?.rolldown ? new BackChannel() : undefined;\n let cacheDir = '';\n\n async function resolveId(\n context: PluginContext,\n source: string,\n importer: string | undefined,\n options: { custom?: Record<string, unknown>; scan?: boolean }\n ) {\n // @ts-expect-error not included in upstream types\n let isDepBundling = Boolean(context.outputOptions?.dir?.includes('.vite'));\n\n // vite 5 exposes `custom.depscan`, vite 6 exposes `options.scan`\n if (options.custom?.depScan || options.scan) {\n return await observeDepScan(context, source, importer, options);\n }\n\n let request = ModuleRequest.create(RollupRequestAdapter.create, {\n context,\n source,\n importer,\n custom: options.custom,\n backChannel,\n isDepBundling,\n packageCache: resolverLoader.resolver.packageCache,\n });\n if (!request) {\n // fallthrough to other rollup plugins\n return null;\n }\n let resolution = await resolverLoader.resolver.resolve(request);\n switch (resolution.type) {\n case 'found':\n if (resolution.virtual) {\n return resolution.result;\n } else {\n return await maybeCaptureNewOptimizedDep(\n context,\n resolverLoader.resolver,\n resolution.result,\n notViteDeps,\n cacheDir\n );\n }\n case 'not_found':\n return null;\n default:\n throw assertNever(resolution);\n }\n }\n\n async function ensureVirtualResolve(context: PluginContext, specifier: string): Promise<ResponseMeta> {\n let result = await resolveId(\n context,\n specifier,\n resolve(resolverLoader.resolver.options.appRoot, 'package.json'),\n {}\n );\n if (!result) {\n throw new Error(`bug: expected to resolve ${specifier}`);\n }\n if (typeof result === 'string') {\n throw new Error(`bug: expected to get a PartialResolvedId`);\n }\n let meta = result.meta?.['embroider-resolver'] as ResponseMeta | undefined;\n if (!meta) {\n throw new Error(`bug: no response meta for ${specifier}`);\n }\n return meta;\n }\n\n async function emitVirtualFile(context: PluginContext, fileName: string): Promise<void> {\n context.emitFile({\n type: 'asset',\n fileName,\n source: virtualContent((await ensureVirtualResolve(context, fileName)).virtual, resolverLoader.resolver).src,\n });\n }\n\n let mode = '';\n\n return {\n name: 'embroider-resolver',\n enforce: 'pre',\n\n configResolved(config) {\n mode = config.mode;\n cacheDir = normalize(config.cacheDir);\n },\n\n configureServer(s) {\n server = s;\n server.watcher.on('all', (_eventName, path) => {\n for (let [id, watches] of virtualDeps) {\n for (let watch of watches) {\n if (path.startsWith(watch)) {\n debug('Invalidate %s because %s', id, path);\n server.moduleGraph.onFileChange(id);\n let m = server.moduleGraph.getModuleById(id);\n if (m) {\n server.reloadModule(m);\n }\n }\n }\n }\n });\n return () => {\n server.middlewares.use((req, _res, next) => {\n const base = server.config.base || '/';\n let originalUrl = req.originalUrl;\n if (originalUrl?.startsWith(base)) {\n originalUrl = req.originalUrl!.slice(base.length - 1);\n }\n if (originalUrl && originalUrl.length > 1) {\n if (originalUrl?.match(/^\\/tests($|\\?)/)) {\n req.url = `/tests/index.html`;\n return next();\n }\n }\n return next();\n });\n };\n },\n\n async resolveId(source, importer, options) {\n let resolution = await resolveId(this, source, importer, options);\n if (typeof resolution === 'string') {\n return resolution;\n }\n if (resolution && resolution.meta?.['embroider-resolver']) {\n responseMetas.set(normalizePath(resolution.id), resolution.meta['embroider-resolver'] as ResponseMeta);\n }\n return resolution;\n },\n\n load(id) {\n let meta = responseMetas.get(normalizePath(id));\n if (meta?.virtual) {\n let { src, watches } = virtualContent(meta.virtual, resolverLoader.resolver);\n virtualDeps.set(id, watches);\n server?.watcher.add(watches);\n return src;\n }\n },\n async buildEnd() {\n emitVirtualFile(this, '@embroider/virtual/vendor.js');\n emitVirtualFile(this, '@embroider/virtual/vendor.css');\n\n if (mode !== 'production') {\n emitVirtualFile(this, '@embroider/virtual/test-support.js');\n emitVirtualFile(this, '@embroider/virtual/test-support.css');\n }\n },\n };\n}\n\n// During depscan, we have a wildly different job than during normal\n// usage. Embroider's esbuild resolver plugin replaces this rollup\n// resolver plugin for actually doing resolving, so we don't do any of\n// that. But we are still well-positioned to observe what vite's rollup\n// resolver plugin is doing, and that is important because vite's\n// esbuild depscan plugin will always obscure the results before\n// embroider's esbuild resolver plugin can see them. It obscures the\n// results by marking *both* \"not found\" and \"this is a third-party\n// package\" as \"external: true\". We really care about the difference\n// between the two, since we have fallback behaviors that should apply\n// to \"not found\" that should not apply to successfully discovered\n// third-party packages.\nasync function observeDepScan(context: PluginContext, source: string, importer: string | undefined, options: any) {\n let result = await context.resolve(source, importer, {\n ...options,\n skipSelf: true,\n });\n writeStatus(source, importer ?? '', result ? { type: 'found', filename: result.id } : { type: 'not_found' });\n return result;\n}\n\nfunction idFromResult(result: ResolveIdResult): string | undefined {\n if (!result) {\n return undefined;\n }\n if (typeof result === 'string') {\n return cleanUrl(result);\n }\n return cleanUrl(result.id);\n}\n\nfunction hashed(path: string): string {\n let h = createHash('sha1');\n return h.update(path).digest('hex').slice(0, 8);\n}\n\nasync function maybeCaptureNewOptimizedDep(\n context: PluginContext,\n resolver: Resolver,\n result: ResolveIdResult,\n notViteDeps: Set<string>,\n cacheDir: string\n): Promise<ResolveIdResult> {\n let foundFile = idFromResult(result);\n if (!foundFile) {\n return result;\n }\n if (normalize(foundFile).startsWith(cacheDir)) {\n debug('maybeCaptureNewOptimizedDep: %s already in vite deps', foundFile);\n return result;\n }\n let pkg = resolver.packageCache.ownerOfFile(foundFile);\n if (!pkg?.isV2Addon()) {\n debug('maybeCaptureNewOptimizedDep: %s not in v2 addon', foundFile);\n return result;\n }\n let target = externalName(pkg.packageJSON, explicitRelative(pkg.root, foundFile));\n if (!target) {\n debug('maybeCaptureNewOptimizedDep: %s is not exported', foundFile);\n return result;\n }\n\n if (notViteDeps.has(foundFile)) {\n debug('maybeCaptureNewOptimizedDep: already attempted %s', foundFile);\n return result;\n }\n\n debug('maybeCaptureNewOptimizedDep: doing re-resolve for %s ', foundFile);\n\n let jumpRoot = join(tmpdir, 'embroider-vite-jump-' + hashed(pkg.root + '|' + pkg.name));\n if (!existsSync(jumpRoot)) {\n let tmp = buildViteJump(pkg);\n try {\n renameSync(tmp, jumpRoot);\n } catch (err) {\n if (err.code === 'EEXIST') {\n // somebody raced us and made it first. It's content-addressable so\n // that's fine.\n } else {\n throw err;\n }\n }\n }\n let newResult = await context.resolve(target, join(jumpRoot, 'package.json'));\n if (newResult) {\n if (idFromResult(newResult) === foundFile) {\n // This case is normal. For example, people could be using\n // `optimizeDeps.exclude` or they might be working in a monorepo where an\n // addon is not in node_modules. In both cases vite will decide not to\n // optimize the file, even though we gave it a chance to.\n //\n // We cache that result so we don't keep trying.\n debug('maybeCaptureNewOptimizedDep: %s did not become an optimized dep', foundFile);\n notViteDeps.add(foundFile);\n }\n\n return newResult;\n } else {\n return result;\n }\n}\n\nfunction buildViteJump(pkg: Package) {\n let tmp = mkdtempSync(join(tmpdir, 'embroider-vite-jump-tmp-'));\n writeFileSync(\n join(tmp, 'package.json'),\n JSON.stringify({\n name: 'jump-root',\n }),\n { flush: true }\n );\n ensureSymlinkSync(pkg.root, join(tmp, 'node_modules', pkg.name));\n return tmp;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"resolver.js","sourceRoot":"","sources":["../../src/resolver.ts"],"names":[],"mappings":"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","sourcesContent":["import { type Plugin, type ViteDevServer, normalizePath } from 'vite';\nimport core, { ModuleRequest, type Package, type Resolver } from '@embroider/core';\nconst { virtualContent, ResolverLoader, explicitRelative, cleanUrl, tmpdir } = core;\nimport { type ResponseMeta, RollupRequestAdapter } from './request.js';\nimport { assertNever } from 'assert-never';\nimport makeDebug from 'debug';\nimport { join, normalize, resolve } from 'path';\nimport { writeStatus } from './backchannel.js';\nimport type { PluginContext, ResolveIdResult } from 'rolldown';\nimport { externalName } from '@embroider/reverse-exports';\nimport fs from 'fs-extra';\nimport { createHash } from 'crypto';\nimport { BackChannel } from './backchannel.js';\nimport { existsSync, mkdtempSync } from 'node:fs';\n\nconst { ensureSymlinkSync, writeFileSync, renameSync } = fs;\n\nconst debug = makeDebug('embroider:vite');\n\nexport function resolver(params?: { rolldown?: boolean }): Plugin {\n const resolverLoader = new ResolverLoader(process.cwd());\n let server: ViteDevServer;\n const virtualDeps: Map<string, string[]> = new Map();\n const notViteDeps = new Set<string>();\n const responseMetas: Map<string, ResponseMeta> = new Map();\n const backChannel = params?.rolldown ? new BackChannel() : undefined;\n let cacheDir = '';\n\n async function resolveId(\n context: PluginContext,\n source: string,\n importer: string | undefined,\n options: { custom?: Record<string, unknown>; scan?: boolean }\n ) {\n // @ts-expect-error not included in upstream types\n let isDepBundling = Boolean(context.outputOptions?.dir?.includes('.vite'));\n\n // vite 5 exposes `custom.depscan`, vite 6 exposes `options.scan`\n if (options.custom?.depScan || options.scan) {\n return await observeDepScan(context, source, importer, options);\n }\n\n let request = ModuleRequest.create(RollupRequestAdapter.create, {\n context,\n source,\n importer,\n custom: options.custom,\n backChannel,\n isDepBundling,\n packageCache: resolverLoader.resolver.packageCache,\n });\n if (!request) {\n // fallthrough to other rollup plugins\n return null;\n }\n let resolution = await resolverLoader.resolver.resolve(request);\n switch (resolution.type) {\n case 'found':\n if (resolution.virtual) {\n return resolution.result;\n } else {\n return await maybeCaptureNewOptimizedDep(\n context,\n resolverLoader.resolver,\n resolution.result,\n notViteDeps,\n cacheDir\n );\n }\n case 'not_found':\n return null;\n default:\n throw assertNever(resolution);\n }\n }\n\n async function ensureVirtualResolve(context: PluginContext, specifier: string): Promise<ResponseMeta> {\n let result = await resolveId(\n context,\n specifier,\n resolve(resolverLoader.resolver.options.appRoot, 'package.json'),\n {}\n );\n if (!result) {\n throw new Error(`bug: expected to resolve ${specifier}`);\n }\n if (typeof result === 'string') {\n throw new Error(`bug: expected to get a PartialResolvedId`);\n }\n let meta = result.meta?.['embroider-resolver'] as ResponseMeta | undefined;\n if (!meta) {\n throw new Error(`bug: no response meta for ${specifier}`);\n }\n return meta;\n }\n\n async function emitVirtualFile(context: PluginContext, fileName: string): Promise<void> {\n context.emitFile({\n type: 'asset',\n fileName,\n source: virtualContent((await ensureVirtualResolve(context, fileName)).virtual, resolverLoader.resolver).src,\n });\n }\n\n let mode = '';\n\n return {\n name: 'embroider-resolver',\n enforce: 'pre',\n\n configResolved(config) {\n mode = config.mode;\n cacheDir = normalize(config.cacheDir);\n },\n\n configureServer(s) {\n server = s;\n server.watcher.on('all', (_eventName, path) => {\n for (let [id, watches] of virtualDeps) {\n for (let watch of watches) {\n if (path.startsWith(watch)) {\n debug('Invalidate %s because %s', id, path);\n server.moduleGraph.onFileChange(id);\n let m = server.moduleGraph.getModuleById(id);\n if (m) {\n server.reloadModule(m);\n }\n }\n }\n }\n });\n return () => {\n server.middlewares.use((req, _res, next) => {\n const base = server.config.base || '/';\n let originalUrl = req.originalUrl;\n if (originalUrl?.startsWith(base)) {\n originalUrl = req.originalUrl!.slice(base.length - 1);\n }\n if (originalUrl && originalUrl.length > 1) {\n if (originalUrl?.match(/^\\/tests($|\\?)/)) {\n req.url = `/tests/index.html`;\n return next();\n }\n }\n return next();\n });\n };\n },\n\n async resolveId(source, importer, options) {\n let resolution = await resolveId(this, source, importer, options);\n if (typeof resolution === 'string') {\n return resolution;\n }\n if (resolution && resolution.meta?.['embroider-resolver']) {\n responseMetas.set(normalizePath(resolution.id), resolution.meta['embroider-resolver'] as ResponseMeta);\n }\n return resolution;\n },\n\n load(id) {\n let meta = responseMetas.get(normalizePath(id));\n if (meta?.virtual) {\n let { src, watches } = virtualContent(meta.virtual, resolverLoader.resolver);\n virtualDeps.set(id, watches);\n server?.watcher.add(watches);\n return src;\n }\n },\n async buildEnd() {\n emitVirtualFile(this, '@embroider/virtual/vendor.js');\n emitVirtualFile(this, '@embroider/virtual/vendor.css');\n\n if (mode !== 'production') {\n emitVirtualFile(this, '@embroider/virtual/test-support.js');\n emitVirtualFile(this, '@embroider/virtual/test-support.css');\n }\n },\n };\n}\n\n// During depscan, we have a wildly different job than during normal\n// usage. Embroider's esbuild resolver plugin replaces this rollup\n// resolver plugin for actually doing resolving, so we don't do any of\n// that. But we are still well-positioned to observe what vite's rollup\n// resolver plugin is doing, and that is important because vite's\n// esbuild depscan plugin will always obscure the results before\n// embroider's esbuild resolver plugin can see them. It obscures the\n// results by marking *both* \"not found\" and \"this is a third-party\n// package\" as \"external: true\". We really care about the difference\n// between the two, since we have fallback behaviors that should apply\n// to \"not found\" that should not apply to successfully discovered\n// third-party packages.\nasync function observeDepScan(context: PluginContext, source: string, importer: string | undefined, options: any) {\n let result = await context.resolve(source, importer, {\n ...options,\n skipSelf: true,\n });\n writeStatus(source, importer ?? '', result ? { type: 'found', filename: result.id } : { type: 'not_found' });\n return result;\n}\n\nfunction idFromResult(result: ResolveIdResult): string | undefined {\n if (!result) {\n return undefined;\n }\n if (typeof result === 'string') {\n return cleanUrl(result);\n }\n return cleanUrl(result.id);\n}\n\nfunction hashed(path: string): string {\n let h = createHash('sha1');\n return h.update(path).digest('hex').slice(0, 8);\n}\n\nasync function maybeCaptureNewOptimizedDep(\n context: PluginContext,\n resolver: Resolver,\n result: ResolveIdResult,\n notViteDeps: Set<string>,\n cacheDir: string\n): Promise<ResolveIdResult> {\n let foundFile = idFromResult(result);\n if (!foundFile) {\n return result;\n }\n if (normalize(foundFile).startsWith(cacheDir)) {\n debug('maybeCaptureNewOptimizedDep: %s already in vite deps', foundFile);\n return result;\n }\n let pkg = resolver.packageCache.ownerOfFile(foundFile);\n if (!pkg?.isV2Addon()) {\n debug('maybeCaptureNewOptimizedDep: %s not in v2 addon', foundFile);\n return result;\n }\n let target = externalName(pkg.packageJSON, explicitRelative(pkg.root, foundFile));\n if (!target) {\n debug('maybeCaptureNewOptimizedDep: %s is not exported', foundFile);\n return result;\n }\n\n if (notViteDeps.has(foundFile)) {\n debug('maybeCaptureNewOptimizedDep: already attempted %s', foundFile);\n return result;\n }\n\n debug('maybeCaptureNewOptimizedDep: doing re-resolve for %s ', foundFile);\n\n let jumpRoot = join(tmpdir, 'embroider-vite-jump-' + hashed(pkg.root + '|' + pkg.name));\n if (!existsSync(jumpRoot)) {\n let tmp = buildViteJump(pkg);\n try {\n renameSync(tmp, jumpRoot);\n } catch (err) {\n if (err.code === 'EEXIST') {\n // somebody raced us and made it first. It's content-addressable so\n // that's fine.\n } else {\n throw err;\n }\n }\n }\n let newResult = await context.resolve(target, join(jumpRoot, 'package.json'));\n if (newResult) {\n if (idFromResult(newResult) === foundFile) {\n // This case is normal. For example, people could be using\n // `optimizeDeps.exclude` or they might be working in a monorepo where an\n // addon is not in node_modules. In both cases vite will decide not to\n // optimize the file, even though we gave it a chance to.\n //\n // We cache that result so we don't keep trying.\n debug('maybeCaptureNewOptimizedDep: %s did not become an optimized dep', foundFile);\n notViteDeps.add(foundFile);\n }\n\n return newResult;\n } else {\n return result;\n }\n}\n\nfunction buildViteJump(pkg: Package) {\n let tmp = mkdtempSync(join(tmpdir, 'embroider-vite-jump-tmp-'));\n writeFileSync(\n join(tmp, 'package.json'),\n JSON.stringify({\n name: 'jump-root',\n }),\n { flush: true }\n );\n ensureSymlinkSync(pkg.root, join(tmp, 'node_modules', pkg.name));\n return tmp;\n}\n"]}
|
package/dist/src/scripts.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scripts.js","sourceRoot":"","sources":["../../src/scripts.ts"],"names":[],"mappings":"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","sourcesContent":["import type { Plugin } from 'vite';\nimport type { EmittedFile } from 'rollup';\nimport { JSDOM } from 'jsdom';\nimport fs from 'fs-extra';\nconst { readFileSync, readJSONSync, existsSync } = fs;\nimport { dirname, posix, resolve } from 'path';\n\n// This is a type-only import, so it gets compiled away. At runtime, we load\n// terser lazily so it's only loaded for production builds that use it. Don't\n// add any non-type-only imports here.\nimport type { MinifyOptions } from 'terser';\n\nconst defaults = ['/assets/vendor.js', '/assets/test-support.js'];\n\nexport function scripts(params?: { include?: string[]; exclude?: string[] }): Plugin {\n let optimizer: ScriptOptimizer;\n\n // configured names are always interpreted as origin-absolute URLs.\n let names = (params?.include ?? defaults)\n .filter(name => !params?.exclude?.includes(name))\n .map(name => {\n if (name.startsWith('/')) {\n return name;\n } else {\n return '/' + name;\n }\n });\n\n let config: any = null;\n\n return {\n name: 'embroider-scripts',\n enforce: 'pre',\n\n configResolved(resolvedConfig) {\n config = resolvedConfig;\n optimizer = new ScriptOptimizer(resolvedConfig.root);\n },\n\n async generateBundle() {\n // this hook only runs in `vite build`\n for (let name of names) {\n for (let file of await optimizer.optimizedScript(name)) {\n this.emitFile(file);\n }\n }\n },\n\n transformIndexHtml(htmlIn, context) {\n // we don't do anything in `vite dev`, we only need to work in `vite\n // build`\n if (!context.server) {\n return optimizer.transformHTML(htmlIn, config.base);\n }\n },\n };\n}\n\nclass ScriptOptimizer {\n private emitted = new Map<string, string>();\n private transformState:\n | {\n htmlIn: string;\n htmlOut: string;\n parsed: JSDOM;\n }\n | undefined;\n\n constructor(private rootDir: string) {}\n\n async optimizedScript(script: string): Promise<EmittedFile[]> {\n let fullName = resolve(this.rootDir, script.slice(1));\n if (!existsSync(fullName)) {\n // in prod builds, test-support.js isn't going to exist (for example)\n return [];\n }\n\n // loading these lazily here so they never load in non-production builds.\n // The node cache will ensures we only load them once.\n const [Terser, srcURL] = await Promise.all([import('terser'), import('source-map-url')]);\n\n let inCode = readFileSync(fullName, 'utf8');\n let terserOpts: MinifyOptions = {};\n let fileRelativeSourceMapURL;\n let appRelativeSourceMapURL;\n if (srcURL.default.existsIn(inCode)) {\n fileRelativeSourceMapURL = srcURL.default.getFrom(inCode)!;\n appRelativeSourceMapURL = posix.join(dirname(script.slice(1)), fileRelativeSourceMapURL);\n let content;\n try {\n content = readJSONSync(resolve(this.rootDir, appRelativeSourceMapURL));\n } catch (err) {\n // the script refers to a sourcemap that doesn't exist, so we just leave\n // the map out.\n }\n if (content) {\n terserOpts.sourceMap = { content, url: fileRelativeSourceMapURL };\n }\n }\n let { code: outCode, map: outMap } = await Terser.minify(inCode, terserOpts);\n let finalFilename = await this.getFingerprintedFilename(script, outCode!);\n let emit: EmittedFile[] = [];\n emit.push({\n type: 'asset',\n fileName: finalFilename.slice(1),\n source: outCode!,\n });\n this.emitted.set(script, finalFilename);\n if (appRelativeSourceMapURL && outMap) {\n emit.push({\n type: 'asset',\n fileName: appRelativeSourceMapURL,\n source: JSON.stringify(outMap, null, 2),\n });\n }\n return emit;\n }\n\n async getFingerprintedFilename(filename: string, content: string): Promise<string> {\n let crypto = await import('crypto');\n let md5 = crypto.createHash('md5');\n md5.update(content);\n let hash = md5.digest('hex');\n let fileParts = filename.split('.');\n fileParts.splice(fileParts.length - 1, 0, hash);\n return fileParts.join('.');\n }\n\n transformHTML(htmlIn: string, baseUrl: string) {\n if (this.transformState?.htmlIn !== htmlIn) {\n let parsed = new JSDOM(htmlIn);\n let linkTags = [...parsed.window.document.querySelectorAll('link')] as HTMLLinkElement[];\n for (const linkTag of linkTags) {\n if (linkTag.href.startsWith('/@embroider/virtual')) {\n linkTag.href = baseUrl + linkTag.href.slice(1);\n }\n }\n let scriptTags = [...parsed.window.document.querySelectorAll('script')] as HTMLScriptElement[];\n for (let scriptTag of scriptTags) {\n if (scriptTag.type !== 'module') {\n let fingerprinted = this.emitted.get(scriptTag.src);\n if (fingerprinted) {\n scriptTag.src = fingerprinted;\n }\n if (scriptTag.src.startsWith('/@embroider/virtual')) {\n scriptTag.src = baseUrl + scriptTag.src.slice(1);\n }\n }\n }\n let htmlOut = parsed.serialize();\n this.transformState = { htmlIn, parsed, htmlOut };\n }\n return this.transformState.htmlOut;\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"scripts.js","sourceRoot":"","sources":["../../src/scripts.ts"],"names":[],"mappings":"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","sourcesContent":["import type { Plugin } from 'vite';\nimport type { EmittedFile } from 'rolldown';\nimport { JSDOM } from 'jsdom';\nimport fs from 'fs-extra';\nconst { readFileSync, readJSONSync, existsSync } = fs;\nimport { dirname, posix, resolve } from 'path';\n\n// This is a type-only import, so it gets compiled away. At runtime, we load\n// terser lazily so it's only loaded for production builds that use it. Don't\n// add any non-type-only imports here.\nimport type { MinifyOptions } from 'terser';\n\nconst defaults = ['/assets/vendor.js', '/assets/test-support.js'];\n\nexport function scripts(params?: { include?: string[]; exclude?: string[] }): Plugin {\n let optimizer: ScriptOptimizer;\n\n // configured names are always interpreted as origin-absolute URLs.\n let names = (params?.include ?? defaults)\n .filter(name => !params?.exclude?.includes(name))\n .map(name => {\n if (name.startsWith('/')) {\n return name;\n } else {\n return '/' + name;\n }\n });\n\n let config: any = null;\n\n return {\n name: 'embroider-scripts',\n enforce: 'pre',\n\n configResolved(resolvedConfig) {\n config = resolvedConfig;\n optimizer = new ScriptOptimizer(resolvedConfig.root);\n },\n\n async generateBundle() {\n // this hook only runs in `vite build`\n for (let name of names) {\n for (let file of await optimizer.optimizedScript(name)) {\n this.emitFile(file);\n }\n }\n },\n\n transformIndexHtml(htmlIn, context) {\n // we don't do anything in `vite dev`, we only need to work in `vite\n // build`\n if (!context.server) {\n return optimizer.transformHTML(htmlIn, config.base);\n }\n },\n };\n}\n\nclass ScriptOptimizer {\n private emitted = new Map<string, string>();\n private transformState:\n | {\n htmlIn: string;\n htmlOut: string;\n parsed: JSDOM;\n }\n | undefined;\n\n constructor(private rootDir: string) {}\n\n async optimizedScript(script: string): Promise<EmittedFile[]> {\n let fullName = resolve(this.rootDir, script.slice(1));\n if (!existsSync(fullName)) {\n // in prod builds, test-support.js isn't going to exist (for example)\n return [];\n }\n\n // loading these lazily here so they never load in non-production builds.\n // The node cache will ensures we only load them once.\n const [Terser, srcURL] = await Promise.all([import('terser'), import('source-map-url')]);\n\n let inCode = readFileSync(fullName, 'utf8');\n let terserOpts: MinifyOptions = {};\n let fileRelativeSourceMapURL;\n let appRelativeSourceMapURL;\n if (srcURL.default.existsIn(inCode)) {\n fileRelativeSourceMapURL = srcURL.default.getFrom(inCode)!;\n appRelativeSourceMapURL = posix.join(dirname(script.slice(1)), fileRelativeSourceMapURL);\n let content;\n try {\n content = readJSONSync(resolve(this.rootDir, appRelativeSourceMapURL));\n } catch (err) {\n // the script refers to a sourcemap that doesn't exist, so we just leave\n // the map out.\n }\n if (content) {\n terserOpts.sourceMap = { content, url: fileRelativeSourceMapURL };\n }\n }\n let { code: outCode, map: outMap } = await Terser.minify(inCode, terserOpts);\n let finalFilename = await this.getFingerprintedFilename(script, outCode!);\n let emit: EmittedFile[] = [];\n emit.push({\n type: 'asset',\n fileName: finalFilename.slice(1),\n source: outCode!,\n });\n this.emitted.set(script, finalFilename);\n if (appRelativeSourceMapURL && outMap) {\n emit.push({\n type: 'asset',\n fileName: appRelativeSourceMapURL,\n source: JSON.stringify(outMap, null, 2),\n });\n }\n return emit;\n }\n\n async getFingerprintedFilename(filename: string, content: string): Promise<string> {\n let crypto = await import('crypto');\n let md5 = crypto.createHash('md5');\n md5.update(content);\n let hash = md5.digest('hex');\n let fileParts = filename.split('.');\n fileParts.splice(fileParts.length - 1, 0, hash);\n return fileParts.join('.');\n }\n\n transformHTML(htmlIn: string, baseUrl: string) {\n if (this.transformState?.htmlIn !== htmlIn) {\n let parsed = new JSDOM(htmlIn);\n let linkTags = [...parsed.window.document.querySelectorAll('link')] as HTMLLinkElement[];\n for (const linkTag of linkTags) {\n if (linkTag.href.startsWith('/@embroider/virtual')) {\n linkTag.href = baseUrl + linkTag.href.slice(1);\n }\n }\n let scriptTags = [...parsed.window.document.querySelectorAll('script')] as HTMLScriptElement[];\n for (let scriptTag of scriptTags) {\n if (scriptTag.type !== 'module') {\n let fingerprinted = this.emitted.get(scriptTag.src);\n if (fingerprinted) {\n scriptTag.src = fingerprinted;\n }\n if (scriptTag.src.startsWith('/@embroider/virtual')) {\n scriptTag.src = baseUrl + scriptTag.src.slice(1);\n }\n }\n }\n let htmlOut = parsed.serialize();\n this.transformState = { htmlIn, parsed, htmlOut };\n }\n return this.transformState.htmlOut;\n }\n}\n"]}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { UserConfig as ActualViteUserConfig } from 'vite';
|
|
2
|
+
/**
|
|
3
|
+
* We support a range of vite versions with different types here
|
|
4
|
+
*
|
|
5
|
+
* These subconfigs are minimally what we use, as we don't want to maintain
|
|
6
|
+
* types for someone else's package.
|
|
7
|
+
*
|
|
8
|
+
* This exists at all because we support vite 5 through vite 8 (as of 2025-03-17)
|
|
9
|
+
* and there isn't a package with these types available for us.
|
|
10
|
+
* The types are internal only, and we *should* have enough testing where if we mess
|
|
11
|
+
* something up, runtime catches us.
|
|
12
|
+
*/
|
|
13
|
+
export type ViteUserConfig = (ActualViteUserConfig & Vite8UserConfig) | (ActualViteUserConfig & Vite7UserConfig);
|
|
14
|
+
/**
|
|
15
|
+
* The sub-types for things we configure in src/ember.ts
|
|
16
|
+
*
|
|
17
|
+
* I expect htis sort of plucking types to be sufficient for our use case,
|
|
18
|
+
* because Vite's configure only renamed and moved a couple things we're using,
|
|
19
|
+
* and they are roughly (or exactly) the same shape of things
|
|
20
|
+
*/
|
|
21
|
+
type RolldownOptions = NonNullable<NonNullable<ActualViteUserConfig['optimizeDeps']>['rolldownOptions']>;
|
|
22
|
+
type Resolve = RolldownOptions['resolve'];
|
|
23
|
+
type Plugins = RolldownOptions['plugins'];
|
|
24
|
+
/**
|
|
25
|
+
* Subset of:
|
|
26
|
+
* https://npmx.dev/package-code/vite/v/8.0.0/dist%2Fnode%2Findex.d.ts
|
|
27
|
+
*
|
|
28
|
+
* (but since the current version *is* 8, we only need the brand type here)
|
|
29
|
+
*/
|
|
30
|
+
export interface Vite8UserConfig {
|
|
31
|
+
__vite8__: true;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Subset of:
|
|
35
|
+
* https://npmx.dev/package-code/vite/v/7.3.1/dist%2Fnode%2Findex.d.ts
|
|
36
|
+
*/
|
|
37
|
+
interface Vite7UserConfig {
|
|
38
|
+
optimizeDeps?: {
|
|
39
|
+
esbuildOptions?: {
|
|
40
|
+
resolve?: Resolve;
|
|
41
|
+
plugins?: Plugins;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
__vite7__: true;
|
|
45
|
+
}
|
|
46
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"","sourcesContent":["import type { UserConfig as ActualViteUserConfig } from 'vite';\n\n/**\n * We support a range of vite versions with different types here\n *\n * These subconfigs are minimally what we use, as we don't want to maintain\n * types for someone else's package.\n *\n * This exists at all because we support vite 5 through vite 8 (as of 2025-03-17)\n * and there isn't a package with these types available for us.\n * The types are internal only, and we *should* have enough testing where if we mess\n * something up, runtime catches us.\n */\nexport type ViteUserConfig = (ActualViteUserConfig & Vite8UserConfig) | (ActualViteUserConfig & Vite7UserConfig);\n\n/**\n * The sub-types for things we configure in src/ember.ts\n *\n * I expect htis sort of plucking types to be sufficient for our use case,\n * because Vite's configure only renamed and moved a couple things we're using,\n * and they are roughly (or exactly) the same shape of things\n */\ntype RolldownOptions = NonNullable<NonNullable<ActualViteUserConfig['optimizeDeps']>['rolldownOptions']>;\ntype Resolve = RolldownOptions['resolve'];\ntype Plugins = RolldownOptions['plugins'];\n\n/**\n * Subset of:\n * https://npmx.dev/package-code/vite/v/8.0.0/dist%2Fnode%2Findex.d.ts\n *\n * (but since the current version *is* 8, we only need the brand type here)\n */\nexport interface Vite8UserConfig {\n // Private brand type\n __vite8__: true;\n}\n\n/**\n * Subset of:\n * https://npmx.dev/package-code/vite/v/7.3.1/dist%2Fnode%2Findex.d.ts\n */\ninterface Vite7UserConfig {\n optimizeDeps?: {\n esbuildOptions?: {\n resolve?: Resolve;\n plugins?: Plugins;\n };\n };\n // Private brand type\n __vite7__: true;\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.full.d.ts","../../core/dist/src/packager.d.ts","../../core/dist/src/html-entrypoint.d.ts","../../../node_modules/.pnpm/broccoli-node-api@1.7.0/node_modules/broccoli-node-api/index.d.ts","../../core/dist/src/stage.d.ts","../../core/dist/src/options.d.ts","../../../node_modules/.pnpm/broccoli-plugin@4.0.7/node_modules/broccoli-plugin/dist/interfaces.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/broccoli-output-wrapper@3.2.5/node_modules/broccoli-output-wrapper/dist/index.d.ts","../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../../../node_modules/.pnpm/walk-sync@2.2.0/node_modules/walk-sync/index.d.ts","../../../node_modules/.pnpm/fs-merger@3.2.1/node_modules/fs-merger/dist/index.d.ts","../../../node_modules/.pnpm/broccoli-plugin@4.0.7/node_modules/broccoli-plugin/dist/index.d.ts","../../core/dist/src/wait-for-trees.d.ts","../../core/dist/src/js-handlebars.d.ts","../../../node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms/index.d.ts","../../../node_modules/.pnpm/@types+debug@4.1.12/node_modules/@types/debug/index.d.ts","../../core/dist/src/messages.d.ts","../../shared-internals/src/metadata.ts","../../../node_modules/.pnpm/typescript-memoize@1.1.1/node_modules/typescript-memoize/dist/memoize-decorator.d.ts","../../../node_modules/.pnpm/@types+fs-extra@9.0.13/node_modules/@types/fs-extra/index.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/common.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/array.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/date.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/function.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/math.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/number.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/object.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/string.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/util.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/index.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/get.d.ts","../../shared-internals/src/get-or-create.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/cache.d.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/cache-group.d.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/index.d.ts","../../shared-internals/src/package-cache.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/flatMap.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/cloneDeep.d.ts","../../shared-internals/src/package.ts","../../shared-internals/src/paths.ts","../../shared-internals/src/working-dir.ts","../../shared-internals/src/rewritten-package-cache.ts","../../shared-internals/src/package-name.ts","../../shared-internals/src/tmpdir.ts","../../../types/broccoli-funnel/index.d.ts","../../shared-internals/src/ember-cli-models.ts","../../../node_modules/.pnpm/ember-rfc176-data@0.3.18/node_modules/ember-rfc176-data/mappings.json","../../shared-internals/src/ember-standard-modules.ts","../../../node_modules/.pnpm/@types+js-string-escape@1.0.3/node_modules/@types/js-string-escape/index.d.ts","../../shared-internals/src/hbs-to-js.ts","../../../node_modules/.pnpm/@babel+types@7.28.5/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/.pnpm/@types+babel__traverse@7.28.0/node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts","../../../node_modules/.pnpm/@babel+parser@7.28.5/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template/index.d.ts","../../../node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts","../../../node_modules/.pnpm/babel-import-util@3.0.1/node_modules/babel-import-util/src/index.d.ts","../../shared-internals/src/template-colocation-plugin.ts","../../shared-internals/src/babel-plugin-cache-busting.ts","../../shared-internals/src/dep-validation.ts","../../../node_modules/.pnpm/resolve.exports@2.0.3/node_modules/resolve.exports/index.d.ts","../../shared-internals/src/colocation.ts","../../../node_modules/.pnpm/is-subdir@1.2.0/node_modules/is-subdir/index.d.ts","../../../node_modules/.pnpm/pkg-entry-points@1.1.1/node_modules/pkg-entry-points/dist/index.d.cts","../../shared-internals/src/watch-utils.ts","../../shared-internals/src/index.ts","../../core/dist/src/virtual-test-support.d.ts","../../core/dist/src/virtual-test-support-styles.d.ts","../../core/dist/src/virtual-vendor.d.ts","../../core/dist/src/virtual-vendor-styles.d.ts","../../core/dist/src/app-files.d.ts","../../core/dist/src/virtual-entrypoint.d.ts","../../core/dist/src/virtual-route-entrypoint.d.ts","../../core/dist/src/virtual-content.d.ts","../../core/dist/src/module-request.d.ts","../../core/dist/src/node-resolve.d.ts","../../core/dist/src/module-resolver-options.d.ts","../../core/dist/src/module-resolver.d.ts","../../core/dist/src/resolver-loader.d.ts","../../core/dist/src/index.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/types/customEvent.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.8/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/rollup@4.53.3/node_modules/rollup/dist/parseAst.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/types/types.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/types/types.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts","../../../node_modules/.pnpm/@jridgewell+source-map@0.3.11/node_modules/@jridgewell/source-map/types/source-map.d.mts","../../../node_modules/.pnpm/terser@5.44.1/node_modules/terser/tools/terser.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/types/internal/terserOptions.d.ts","../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/.pnpm/lightningcss@1.30.2/node_modules/lightningcss/node/ast.d.ts","../../../node_modules/.pnpm/lightningcss@1.30.2/node_modules/lightningcss/node/targets.d.ts","../../../node_modules/.pnpm/lightningcss@1.30.2/node_modules/lightningcss/node/index.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/types/importGlob.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/types/metadata.d.ts","../../../node_modules/.pnpm/vite@7.2.6_@types+node@22.19.1_jiti@2.4.2_lightningcss@1.30.2_terser@5.44.1/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/@types+mime@1.3.5/node_modules/@types/mime/index.d.ts","../../../node_modules/.pnpm/@types+send@0.17.6/node_modules/@types/send/index.d.ts","../src/assets.ts","../src/backchannel.ts","../src/build-id-filter.ts","../src/build-once.ts","../src/build.ts","../src/hbs.ts","../../../node_modules/.pnpm/@types+parse5@6.0.3/node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/.pnpm/@types+parse5@6.0.3/node_modules/@types/parse5/index.d.ts","../../../node_modules/.pnpm/@types+tough-cookie@4.0.5/node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/base.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/index.d.ts","../src/scripts.ts","../src/content-for.ts","../../../node_modules/.pnpm/browserslist@4.28.1/node_modules/browserslist/index.d.ts","../../../node_modules/.pnpm/browserslist-to-esbuild@2.1.1_browserslist@4.28.1/node_modules/browserslist-to-esbuild/src/index.d.ts","../src/config-targets.ts","../src/classic-ember-support.ts","../../../node_modules/.pnpm/content-tag@4.1.0/node_modules/content-tag/index.d.cts","../src/template-tag.ts","../../../node_modules/.pnpm/assert-never@1.4.0/node_modules/assert-never/index.d.ts","../../reverse-exports/dist/src/index.d.ts","../src/request.ts","../src/resolver.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/customEvent.d.ts","../../../node_modules/.pnpm/@oxc-project+types@0.101.0/node_modules/@oxc-project/types/types.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.53/node_modules/rolldown/dist/shared/binding-CY7Z709f.d.mts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-beta.53/node_modules/@rolldown/pluginutils/dist/composable-filters.d.ts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-beta.53/node_modules/@rolldown/pluginutils/dist/filter-vite-plugins.d.ts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-beta.53/node_modules/@rolldown/pluginutils/dist/simple-filters.d.ts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-beta.53/node_modules/@rolldown/pluginutils/dist/index.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.53/node_modules/rolldown/dist/shared/define-config-BS8Bt-r8.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.53/node_modules/rolldown/dist/index.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.53/node_modules/rolldown/dist/parse-ast-index.d.mts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/internal/rollupTypeCompat.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.53/node_modules/rolldown/dist/shared/constructors-CMvFUBhn.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.53/node_modules/rolldown/dist/plugins-index.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.53/node_modules/rolldown/dist/experimental-index.d.mts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/hot.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/internal/esbuildOptions.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/metadata.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/internal/terserOptions.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-beta.53/node_modules/rolldown/dist/filter-index.d.mts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/types/importGlob.d.ts","../../../node_modules/.pnpm/rolldown-vite@7.2.10_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/rolldown-vite/dist/node/index.d.ts","../src/esbuild-request.ts","../src/esbuild-resolver.ts","../../../node_modules/.pnpm/chalk@5.6.2/node_modules/chalk/source/vendor/ansi-styles/index.d.ts","../../../node_modules/.pnpm/chalk@5.6.2/node_modules/chalk/source/vendor/supports-color/index.d.ts","../../../node_modules/.pnpm/chalk@5.6.2/node_modules/chalk/source/index.d.ts","../src/warn-root-url.ts","../src/ember.ts","../src/optimize-deps.ts","../index.ts","../../../types/broccoli/index.d.ts","../../../types/broccoli-concat/index.d.ts","../../../types/broccoli-file-creator/index.d.ts","../../../types/broccoli-merge-trees/index.d.ts","../../../types/console-ui/index.d.ts","../../../types/ember-cli/index.d.ts","../../../types/fast-sourcemap-concat/index.d.ts","../../../types/source-map-url/index.d.ts","../../../types/thread-loader/index.d.ts","../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts"],"fileIdsList":[[63,112,129,130,209,297,298,299],[63,112,129,130,297,298,299],[63,112,129,130,297,298,299,358],[63,112,129,130,251,253,297,298,299],[63,112,129,130,252,297,298,299],[63,112,129,130,251,254,297,298,299],[63,112,129,130,249,251,297,298,299],[63,112,129,130,248,249,250,297,298,299],[63,112,129,130,248,251,297,298,299],[63,112,129,130,297,298,299,317,318,319],[63,112,129,130,209,210,211,212,213,297,298,299],[63,112,129,130,209,212,297,298,299],[63,112,129,130,170,297,298,299],[63,112,124,129,130,162,297,298,299],[63,112,129,130,297,298,299,360,363],[63,112,123,129,130,158,162,295,296,298,299],[63,112,129,130,297,298],[63,112,129,130,297,299],[63,112,129,130,188,297,298,299],[63,112,129,130,176,178,179,180,181,182,183,184,185,186,187,188,297,298,299],[63,112,129,130,176,177,179,180,181,182,183,184,185,186,187,188,297,298,299],[63,112,129,130,177,178,179,180,181,182,183,184,185,186,187,188,297,298,299],[63,112,129,130,176,177,178,180,181,182,183,184,185,186,187,188,297,298,299],[63,112,129,130,176,177,178,179,181,182,183,184,185,186,187,188,297,298,299],[63,112,129,130,176,177,178,179,180,182,183,184,185,186,187,188,297,298,299],[63,112,129,130,176,177,178,179,180,181,183,184,185,186,187,188,297,298,299],[63,112,129,130,176,177,178,179,180,181,182,184,185,186,187,188,297,298,299],[63,112,129,130,176,177,178,179,180,181,182,183,185,186,187,188,297,298,299],[63,112,129,130,176,177,178,179,180,181,182,183,184,186,187,188,297,298,299],[63,112,129,130,176,177,178,179,180,181,182,183,184,185,187,188,297,298,299],[63,112,129,130,176,177,178,179,180,181,182,183,184,185,186,188,297,298,299],[63,112,129,130,176,177,178,179,180,181,182,183,184,185,186,187,297,298,299],[63,109,110,112,129,130,297,298,299],[63,111,112,129,130,297,298,299],[112,129,130,297,298,299],[63,112,117,129,130,147,297,298,299],[63,112,113,118,123,129,130,132,144,155,297,298,299],[63,112,113,114,123,129,130,132,297,298,299],[58,59,60,63,112,129,130,297,298,299],[63,112,115,129,130,156,297,298,299],[63,112,116,117,124,129,130,133,297,298,299],[63,112,117,129,130,144,152,297,298,299],[63,112,118,120,123,129,130,132,297,298,299],[63,111,112,119,129,130,297,298,299],[63,112,120,121,129,130,297,298,299],[63,112,122,123,129,130,297,298,299],[63,111,112,123,129,130,297,298,299],[63,112,123,124,125,129,130,144,155,297,298,299],[63,112,123,124,125,129,130,139,144,147,297,298,299],[63,105,112,120,123,126,129,130,132,144,155,297,298,299],[63,112,123,124,126,127,129,130,132,144,152,155,297,298,299],[63,112,126,128,129,130,144,152,155,297,298,299],[61,62,63,64,65,66,67,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,297,298,299],[63,112,123,129,130,297,298,299],[63,112,129,130,131,155,297,298,299],[63,112,120,123,129,130,132,144,297,298,299],[63,112,129,130,133,297,298,299],[63,112,129,130,134,297,298,299],[63,111,112,129,130,135,297,298,299],[63,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,297,298,299],[63,112,129,130,137,297,298,299],[63,112,129,130,138,297,298,299],[63,112,123,129,130,139,140,297,298,299],[63,112,129,130,139,141,156,158,297,298,299],[63,112,124,129,130,297,298,299],[63,112,123,129,130,144,145,147,297,298,299],[63,112,129,130,146,147,297,298,299],[63,112,129,130,144,145,297,298,299],[63,112,129,130,147,297,298,299],[63,112,129,130,148,297,298,299],[63,109,112,129,130,144,149,297,298,299],[63,112,123,129,130,150,151,297,298,299],[63,112,129,130,150,151,297,298,299],[63,112,117,129,130,132,144,152,297,298,299],[63,112,129,130,153,297,298,299],[63,112,129,130,132,154,297,298,299],[63,112,126,129,130,138,155,297,298,299],[63,112,117,129,130,156,297,298,299],[63,112,129,130,144,157,297,298,299],[63,112,129,130,131,158,297,298,299],[63,112,129,130,159,297,298,299],[63,105,112,129,130,297,298,299],[63,105,112,123,125,129,130,135,144,147,155,157,158,160,297,298,299],[63,112,129,130,144,161,297,298,299],[63,112,129,130,294,297,298,299],[63,112,129,130,295,297,298,299],[63,112,124,129,130,144,162,286,297,298,299],[63,112,129,130,214,297,298,299],[54,57,63,112,129,130,163,166,297,298,299],[63,112,129,130,297,298,299,302],[63,112,129,130,297,298,299,340,341],[63,112,129,130,154,297,298,299],[63,112,129,130,297,298,299,356,362],[54,63,112,124,129,130,162,165,297,298,299],[63,112,129,130,297,298,299,360],[63,112,129,130,297,298,299,357,361],[63,112,129,130,279,280,297,298,299],[63,112,129,130,273,297,298,299],[63,112,129,130,271,273,297,298,299],[63,112,129,130,262,270,271,272,274,276,297,298,299],[63,112,129,130,260,297,298,299],[63,112,129,130,263,268,273,276,297,298,299],[63,112,129,130,259,276,297,298,299],[63,112,129,130,263,264,267,268,269,276,297,298,299],[63,112,129,130,263,264,265,267,268,276,297,298,299],[63,112,129,130,260,261,262,263,264,268,269,270,272,273,274,276,297,298,299],[63,112,129,130,276,297,298,299],[63,112,129,130,258,260,261,262,263,264,265,267,268,269,270,271,272,273,274,275,297,298,299],[63,112,129,130,258,276,297,298,299],[63,112,129,130,263,265,266,268,269,276,297,298,299],[63,112,129,130,267,276,297,298,299],[63,112,129,130,268,269,273,276,297,298,299],[63,112,129,130,261,271,297,298,299],[63,112,129,130,297,298,299,359],[63,112,129,130,191,297,298,299],[63,112,129,130,191,192,297,298,299],[63,112,129,130,297,298,299,312],[63,112,123,124,126,127,128,129,130,132,144,152,155,161,162,277,297,298,299,312,313,314,322,323,324,326,327,329,330,331,332,333,334,335,336,337],[63,112,129,130,297,298,299,312,313,314,328],[63,112,129,130,297,298,299,314],[63,112,129,130,247,297,298,299],[63,112,129,130,281,297,298,299],[63,112,129,130,297,298,299,322,331,337],[63,112,129,130,256,297,298,299],[63,112,129,130,297,298,299,322,337],[63,112,129,130,297,298,299,316,321,325],[63,112,129,130,297,298,299,316,320,321],[63,112,129,130,297,298,299,316,321],[63,112,129,130,297,298,299,315,316],[63,112,129,130,297,298,299,315],[63,112,129,130,297,298,299,315,316,320],[63,112,129,130,243,284,285,297,298,299],[63,112,129,130,242,243,297,298,299],[63,112,129,130,255,297,298,299],[63,77,81,112,129,130,155,297,298,299],[63,77,112,129,130,144,155,297,298,299],[63,72,112,129,130,297,298,299],[63,74,77,112,129,130,152,155,297,298,299],[63,112,129,130,132,152,297,298,299],[63,112,129,130,162,297,298,299],[63,72,112,129,130,162,297,298,299],[63,74,77,112,129,130,132,155,297,298,299],[63,69,70,73,76,112,123,129,130,144,155,297,298,299],[63,77,84,112,129,130,297,298,299],[63,69,75,112,129,130,297,298,299],[63,77,98,99,112,129,130,297,298,299],[63,73,77,112,129,130,147,155,162,297,298,299],[63,98,112,129,130,162,297,298,299],[63,71,72,112,129,130,162,297,298,299],[63,77,112,129,130,297,298,299],[63,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,112,129,130,297,298,299],[63,77,92,112,129,130,297,298,299],[63,77,84,85,112,129,130,297,298,299],[63,75,77,85,86,112,129,130,297,298,299],[63,76,112,129,130,297,298,299],[63,69,72,77,112,129,130,297,298,299],[63,77,81,85,86,112,129,130,297,298,299],[63,81,112,129,130,297,298,299],[63,75,77,80,112,129,130,155,297,298,299],[63,69,74,77,84,112,129,130,297,298,299],[63,112,129,130,144,297,298,299],[63,72,77,98,112,129,130,160,162,297,298,299],[63,112,129,130,239,297,298,299],[63,112,123,124,126,127,128,129,130,132,144,152,155,161,162,239,240,241,243,244,246,247,257,277,278,282,283,284,285,297,298,299],[63,112,129,130,239,240,241,245,297,298,299],[63,112,129,130,241,297,298,299],[63,112,129,130,243,285,297,298,299],[63,112,124,129,130,162,164,297,298,299],[63,112,129,130,224,297,298,299],[52,63,112,129,130,297,298,299],[52,53,55,56,63,112,129,130,168,169,172,224,229,232,233,235,236,237,297,298,299],[63,112,129,130,171,297,298,299],[63,112,129,130,232,297,298,299],[63,112,129,130,224,233,234,235,297,298,299],[63,112,129,130,232,233,236,297,298,299],[63,112,129,130,236,297,298,299],[54,63,112,129,130,297,298,299],[63,112,129,130,225,226,227,228,230,231,238,297,298,299],[63,112,129,130,229,236,297,298,299],[63,112,129,130,232,236,297,298,299],[54,63,112,129,130,167,297,298,299],[63,112,129,130,175,297,298,299],[63,112,129,130,134,175,194,198,219,297,298,299],[63,112,129,130,197,297,298,299],[54,63,112,129,130,173,203,297,298,299],[63,112,129,130,205,297,298,299],[63,112,129,130,134,207,297,298,299],[63,112,129,130,173,190,194,197,198,199,200,201,202,204,206,208,216,217,218,220,223,297,298,299],[63,112,124,129,130,134,190,193,197,297,298,299],[63,112,129,130,134,173,174,175,189,194,195,196,297,298,299],[63,112,129,130,134,197,297,298,299],[63,112,129,130,134,175,190,194,197,199,297,298,299],[63,112,124,129,130,134,164,171,198,210,214,215,224,297,298,299],[63,112,129,130,133,175,297,298,299],[63,112,129,130,134,221,222,297,298,299],[63,112,124,129,130,134,175,297,298,299],[63,112,129,130,288,291,292,293,297,298,299,300,301,304,305,307,311,339,344,345],[63,112,129,130,134,136,175,238,285,287,297,298,299],[63,112,129,130,285,297,298,299],[63,112,113,129,130,297,298,299],[63,112,113,129,130,131,134,285,297,298,299],[63,112,129,130,288,292,293,297,298,299,300,301,304],[63,112,124,129,130,134,155,297,298,299,303],[63,112,129,130,134,175,238,285,297,298,299],[63,112,124,129,130,285,297,298,299,307,311,337,339,343],[63,112,129,130,134,238,247,289,297,298,299,308,309],[63,112,129,130,134,175,214,238,247,289,297,298,299,306,308,338],[63,112,129,130,238,243,284,285,290,297,298,299],[63,112,129,130,297,298,299,339],[63,112,129,130,134,238,243,284,285,289,297,298,299,308,309],[63,112,117,124,129,130,134,171,175,238,243,284,285,289,297,298,299,308,309,310],[63,112,117,129,130,134,175,243,256,284,285,297,298,299,354],[63,112,129,130,285,290,297,298,299,306],[63,112,129,130,285,297,298,299,342],[63,112,129,130,167,297,298,299]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"08f6861df84fba9719c14d5adc3ba40be9f0c687639e6c4df3c05b9301b8ff94","impliedFormat":1},{"version":"8cacf8ff57f2abccde586ca6b2ad0d5b6aa805f1e05d648016a699c4d34e7e33","impliedFormat":1},{"version":"792dfbb0cff6fc2ea09ccfe0e2edc66e05b4b0b86f77195d8d3b946423f853e5","impliedFormat":1},{"version":"d7080e710749d451754bdd05701a2d9b9c04b31aaca1afdc798f6b49e1e6ba54","impliedFormat":1},{"version":"22e9daef6c13ef229200e88e58732e6d977dfdf1328a4af72b9305f46b6b89d4","impliedFormat":1},{"version":"028b7d52179b04ec4b8e4967e4828fdc66c9d8e3e9c103e5321c3610c3a61dd0","impliedFormat":1},{"version":"4a91fa7370259a7be029b46233de8309646395443f1f0d90639dab3d6f58bc9b","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"bb45cd435da536500f1d9692a9b49d0c570b763ccbf00473248b777f5c1f353b","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"21145ce1c54e05ef9e52092b98a4ebfb326b92f52e76e47211c50cfcd2a2b4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5ebe6f4cc3b803cbfc962bae0d954f9c80e5078ca41eb3f1de41d92e7193ef37","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"b6e17ead1f63a988977d55268fbc1f88f8455e07b4442ecaca86a6295b9bca0d","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"5dae0892cddccaf9e5285453f1c97e78b9cf5e3be996f983fc56a63ac53b94d8","impliedFormat":1},{"version":"2d233a382de6a4ac120f49241f652a4f5631b08507ed6e031b7b00b9cc560b87","impliedFormat":1},{"version":"9ccc26dc5c86aaec692f30ae63b01c45765843bc4947e7d690ef57ea59544e8e","impliedFormat":1},{"version":"1e3aa45e69779b57f0d01a45a45d3665c26cea5759b6bb55c5e156b1c6f23c55","impliedFormat":1},{"version":"9c9216966405a82309678de0c1810ccce8d2a51dc766a521ace8954853573ee1","impliedFormat":1},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"38bfe41d54db874636648909bc36abe85c160ddebdf9c53913ad1f466e24ec84","impliedFormat":1},{"version":"1fcf0fb4160c9d2568d343c368282202d3c1882fdd2b08d54663ee7838924d53","impliedFormat":1},{"version":"3e08915d754e9fa1bccf3641c724ab9e8a50d4c301b80d7ace911e43eb298e54","impliedFormat":1},{"version":"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","impliedFormat":1},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"98acc316756389efdc925de9169c826e4c40a6290fd0ed96b2d5a511b900b486","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","impliedFormat":1},{"version":"0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"8c7bb1d03e5607e5ad3d27f48e53dbe70b61372ea73d75000c9ead7ad2ac0fbd","impliedFormat":1},{"version":"5a03d90a285f2c0849d2cedd969cd01f801b8f44308d77c86aa4b75130d088b7","impliedFormat":1},{"version":"d5960343e19e2a78a1dc78a6cee39e2a9d857d4a241180e45f1fd36367495386","impliedFormat":1},{"version":"c0264ca644cd14781acbd942ee3615d2b9810f4e6e6d86e0e14a1dbac8d8cdaa","impliedFormat":1},{"version":"1458833def0c60d8548148fc08d9ca95fa0011c7bf96045ce38065c5c4d48047","impliedFormat":1},{"version":"de9471b25f19b3943df51928960abdd900fa8da30deb581c246c0dbec810c9de","impliedFormat":1},{"version":"d3aca2ab5ac0fdfd53191f44a2d440505c7bf73c1c93bb113d8ffbc37b62869c","impliedFormat":1},{"version":"a33ea06913b712c529662bee7fd75959781267cf8a307902cc7761307fec0337","impliedFormat":1},{"version":"9a107dd9c61651050102afc71e2912cf177dcf49a3daa8a86135fc51bab66691","impliedFormat":1},{"version":"f01b36721e9be97fb7254863ccadd3c417a4fba4767e97650768588ad07c22b9","impliedFormat":1},{"version":"8b054be2a316e12dbc5f6305a3c8a96332f5951fb52c5fcef761bcda54ebeb2b","impliedFormat":1},{"version":"4b3dab4da88ad7d3c495b1f7aa0c5a3991c0437a97f7a1aab43ec182f74a6bfc","impliedFormat":1},{"version":"978260b11b03c868dff66b9862422bfda618002a94df75e76b8df2d6d8d4740c","impliedFormat":1},{"version":"a303777c4a10e5e75143415e08babaf3f24bc8927dd073652b1087fcaf2de50a","impliedFormat":1},{"version":"b3982a9cfd8798be0caead4ab7062a46cce8376920d20856453a2622ad1420bf","impliedFormat":1},{"version":"3da542e69e5c0bef96b479a9cc4824fe6549e263b469b2f5a2c5f82c05c498e1","impliedFormat":1},"d3a865e0c77656b2f63b5c83cbeef97509fe03705d908ca541a0a77bd21f1f2b",{"version":"e54572d9d33385dcafafeeb2640d0c7a2838db00be5214dbd582b2f46f1b9324","impliedFormat":1},{"version":"3d09a8b49c119963b8b9bd830798133206965a38ea4757e8fe8bfccb3238b6aa","impliedFormat":1},{"version":"81a466460fc5a4e14eda785ec4f7c7b40995939453574b4f1057030f71dec595","impliedFormat":1},{"version":"c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"d39269d2a3b969bfd48ad79da81bb50e42a55264756cdde09aff2f5b963f6a6f","impliedFormat":1},{"version":"ad007a83ba82282a5b081cd5d87213605d556e6892da8f61b61eb5ff89b9a74b","impliedFormat":1},{"version":"bfc85a8981d6c20a87cd5f1eba6afd3a5cad6673994f545a548bf0782fdd25f1","impliedFormat":1},{"version":"8294fd94e467ad144df9bbd0ff6a150f14f7fa473bb8524c05749bdec34d9b0e","impliedFormat":1},{"version":"10230a955a3fd41688645b2abb92b596bd0c1eae62e05a92c3825c3b34ad5234","impliedFormat":1},{"version":"af432edae5323b4da73e45059916c17a1dce5fe503ac8a480326d9cd7d908706","impliedFormat":1},{"version":"a1ac2bcfaf6e1c53f7c75b694c7a332ed1174096f14a539620f021502af5cca2","impliedFormat":1},{"version":"6a437ff229c33de0dfd6c805daa3d40376e4c060d2b94919f00c6cfc122b29a0","impliedFormat":1},{"version":"41e8ce7169dfdb101d8a157af387bd542172ec842e7bc407d9e47fdda59782fa","impliedFormat":1},{"version":"1a320316245a19c41eee34a2c8d3c669d5e048f44069ac8dc70a3b5a027bc30b","impliedFormat":1},{"version":"629e088d17a1ea44b725597f76d829345e5c5675806996b729fba51c800cd497","impliedFormat":1},{"version":"bf9188bb98c69d44281b5f165ee1064021334631c7d841ffaf459aeb0ac5f982","impliedFormat":1},{"version":"fea2403f4b1a2e2b1171b1d076bb0c69f9c32e417033ad70c458533b7a9a31e1","impliedFormat":1},{"version":"ee940b3dc76c388f05911e8741099926bff59c3cae046cd82deb5cc7d46e58a9","impliedFormat":1},{"version":"2b9254b674dacbfb0593309769e0ccfe8c14cc84632023aac540cb20c306ea16","impliedFormat":1},{"version":"0b87454679443c99368948bc46de64d8fe114ca547e5356cd8d9267f62fe99a9","impliedFormat":1},{"version":"1757eeacddd964919e64fccc69d9209ba893dacc3828ec7068541982dc9ab6d9","impliedFormat":1},{"version":"bd21b568e51ef0d60ba905004a549c316a5f8695ed6c2f95e72e5a35699cb28d","impliedFormat":1},{"version":"64ba746775d776e99f431dfe276827c90cf633b66d9c0328380d8b6cd27f62c9","impliedFormat":1},{"version":"54a529ddfbd61ea552ba963293ce43125a0e02852f2b16b19dcf4968547afa9c","impliedFormat":1},{"version":"bf3a14f808a3ca036c57622bc34ccbb42f338604ea82fe87692c8cf47be83c81","impliedFormat":1},{"version":"1929509da7d867b1864a1fc6303a5f532eaa745094aa64fe2a44dcc61d75bfb8","impliedFormat":1},{"version":"b554d6092f52572f5e2b6f07c7305860b2080aa9ae34258ad36e253e94be1b2c","impliedFormat":1},{"version":"745cd820a3379755cd5c98bcde85522b97dd112504da2169d563880e636004e9","impliedFormat":1},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"72950913f4900b680f44d8cab6dd1ea0311698fc1eefb014eb9cdfc37ac4a734","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"6cd8f2410e4cf6d7870f018b38dcf1ac4771f06b363b5d71831d924cda3c488d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"ff0a83c9a0489a627e264ffcb63f2264b935b20a502afa3a018848139e3d8575","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","impliedFormat":99},{"version":"76de3321ce519928f1ff7d7a30391c0dc7374af20f81d9167919f038895b5cb0","impliedFormat":99},{"version":"094b9210da23b8711709b0535c59841186267bf6b83c1609aa9b515f830ab274","impliedFormat":99},{"version":"fbfbb4e99c6259ff5ccc4a5a62b3b63c0c8cae6e84737786c4a4c761c9a9de91","impliedFormat":99},{"version":"604887bbd5b0a93234ce882543a465f008636185c52e0f0353330e2bc38b03b6","impliedFormat":99},{"version":"32bf912173e8a9533631f9e9d8dc90a2ac7b52c2355611ddd886beab24dfd182","impliedFormat":99},{"version":"82695324abf7f3278b6d9f0582f4a544e8f7055c8cbe1065ab5cbacde1719c4c","impliedFormat":99},{"version":"43bba542e50e19241ec64bc13cfc0d9273e6198f36563cecad1f4e4b78ad47f3","impliedFormat":99},{"version":"b8cb3b69c0e8114f758bb8ef8efeef1cc80f8911bfd21126def73d2174ce479e","impliedFormat":99},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"333caa2bfff7f06017f114de738050dd99a765c7eb16571c6d25a38c0d5365dc","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1251d53755b03cde02466064260bb88fd83c30006a46395b7d9167340bc59b73","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"4cdf27e29feae6c7826cdd5c91751cc35559125e8304f9e7aed8faef97dcf572","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7eebe1b25040d805aefe8971310b805cd49b8602ec206d25b38dc48c542f165","impliedFormat":1},{"version":"a18642ddf216f162052a16cba0944892c4c4c977d3306a87cb673d46abbb0cbf","impliedFormat":1},{"version":"509f8efdfc5f9f6b52284170e8d7413552f02d79518d1db691ee15acc0088676","impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":1},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e4af494f7a14b226bbe732e9c130d8811f8c7025911d7c58dd97121a85519715","impliedFormat":1},{"version":"c1d587d31636bf51527d349f4786a36472e5aa311add673073c833c9853493c8","impliedFormat":99},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"cb90077223cc1365fa21ef0911a1f9b8f2f878943523d97350dc557973ca3823","impliedFormat":1},{"version":"fe4ba9c04893b00fd09c73c1e4c27e51247c7ea388ae9abef3dd63f63b8ef7ab","signature":"73579e22c39e3997101be489e9d6088328a850a6fca5f99c591c20a31994c0e0","impliedFormat":99},{"version":"d6975791f20923a97d336d9ca8be2f93a9f833787ccc33409d1b136a13be3492","signature":"0a1ff1a208e1b056b5854e6a9304230743d08d48b8e8c40ff0553a003d71434c","impliedFormat":99},{"version":"b0ab9e72081dbb8f5f41f366072542a1f787a98201ff9d03b467d6ba3b6d5975","signature":"3a0382e6f76e420dac6943a4e04a7896b6545f092f236883cf076741dfac085e","impliedFormat":99},{"version":"a0d13da6723605e5ea39afb213180256dc6c73a2bda9512c3e67fe0e06c7054d","signature":"c2ed123903a1ccd27b4df43d648579ecc04333752fb457e05cf65a4490c5cb2f","impliedFormat":99},{"version":"caf084e25d6e84746c6637947756a3271c6f1e455095132b2fcec95a250d5c64","signature":"dbabfc5e3d191bb9e2c69feb1e032f39e8194147627c4645e90a8bf90fdfbe09","impliedFormat":99},{"version":"bf78d3d233b815cf2b00a847430d2ced8b3dca1c90099bb51a247e7523985e60","signature":"41dfc6d7e1013dcb2f4d9b43477e0c7783ff7d8f8c354d2801582666b9a2b927","impliedFormat":99},{"version":"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","impliedFormat":1},{"version":"5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","impliedFormat":1},{"version":"389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3","impliedFormat":1},{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"07c3c96f694c77a8d03ebab30f9678282d9f483a1d5f90b4d8e12749bd4c4d15","signature":"372b2cb6f42ef888e606ba27fee20a9cb1616b8944833d9985f0897dcadf9f7b","impliedFormat":99},{"version":"ac8b072c0b42556b9446f447da810e5980a69950222a5bd8aed49bc558db01a8","signature":"5cfeaf249b01371d633a91d560af77e1c9a1d4c4b27817ddeecee28e3136a75e","impliedFormat":99},{"version":"88623aa2028777d8f073c61590feb7f3abde4513918329d868c8c0cb38d2d000","affectsGlobalScope":true,"impliedFormat":1},{"version":"074d6ab080bdcf0ea7100f880d8c33a303a477ebcd2e419d0db657fe7dc6e092","impliedFormat":99},{"version":"f516b2e06594753e526567ab16191079d5cd99c731d17df51ba79bd91d73696e","signature":"94bd0625d7b63916aea79e002fc43d6b52ba23e5e80f296c70297a924df66932","impliedFormat":99},{"version":"5a11f4e9d2a5eae995adc44f397e73f77b845387a6f07710a475d5012ed24d47","signature":"ec92aa77b9320508db41c21a471cc5a35d51b9a58f5f1674c82f2f3cd988c182","impliedFormat":99},{"version":"f030eecf26a96b02146673d0d4a3d1067880ad18122b5ee92bd7d72f2d7f3c6d","impliedFormat":1},{"version":"803ef7579a0b9c492e69a9c232c1dcda2ac76ca070a8bb807f9a6ce5336b503d","signature":"0fc03d6cdf9dc9cc7013db34d28818d20ab87bd5aea2e613ae696df2c7b490b4","impliedFormat":99},{"version":"d5a703fa18b967789d212dcd73ceeb62eaf3bf32a3170aa0e74e1a8964bef863","impliedFormat":1},{"version":"b07a2af67ad692bc3d1b59ab0d6c19c272c22bf4817ce1c8581ad1f94366ce24","impliedFormat":1},{"version":"9bc3a9fc8a07a090afd72ee4055b597cc3f65792d2c717574ea302e39da5a0b8","signature":"18526b6f14869e5fb1621c20b104202da1ef315ad0504b5f9a4938d407aeed23","impliedFormat":99},{"version":"efe5a48ad907682c58c61a0742a376304059da5e35b9871b005f5f7d8e3e26ca","signature":"198ab496c8f1c45a06555b0f12cf124af419cee343cfbee8d01603b805251309","impliedFormat":99},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":99},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"7ff1ae5443596ffa59c3bbb53f02d37f0c419dcfb9023321c1d32d92f4cd6f49","impliedFormat":99},{"version":"029088dbf6c4a83397cdd141d56f52927e8f099771203423683d4429208a8c93","impliedFormat":99},{"version":"cdd4ec6354c4b6de2725d180142121a2c1daa012b32e734300720026be1029e2","impliedFormat":99},{"version":"a223b8da5689e20e388b9f269839d1d4ce1fd6c77ade9447e1df82389cbea3b2","impliedFormat":99},{"version":"0088b02dca63c47b273a140d0a3944bdc6dc2eb765fff0ca98e3c3a2786b3a5a","impliedFormat":99},{"version":"a651d06b780fa354231f19b040cbcde484bede3218885752b4f9e9a8f72d3b5f","impliedFormat":99},{"version":"691f7b4cbd87c65b87c4eddeb9e5197ff72ff13f3edd09dad35ba2e1a61658fd","impliedFormat":99},{"version":"31368bbb5f9d8b3ee933b7f0298a4c5c2fe29ca145daa26a437cc8b0f98214e8","impliedFormat":99},{"version":"3afcb55f42511c69486879fbcb912eef1d13823056592e042f223b52274737b2","impliedFormat":99},{"version":"a992d09a9355f656f3b2a8d1a4f6b04bae531cd099d8749c4ea21de8fe23e122","impliedFormat":99},{"version":"7d3e062a778b8f5ea4f0cac7e925e31f88e6739812ebc5f827474324a4048f14","impliedFormat":99},{"version":"518d450ca2f2c7eff7f22f30391dc35ce3762ebb7ec400a772426f725e630d0f","impliedFormat":99},{"version":"10890c0762cbdd82fa44e69e0e6ad8a36b35b27eba7105d41fb911e3dfbe2913","impliedFormat":99},{"version":"3acedb33832c7eeb8b07ae59e1d8cad85458014a7aa08d5ec637217a7908c497","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"ff0a83c9a0489a627e264ffcb63f2264b935b20a502afa3a018848139e3d8575","impliedFormat":99},{"version":"e0864480ea083087d705f9405bd6bf59b795e8474c3447f0d6413b2bce535a09","impliedFormat":99},{"version":"fc02c40bbd5198d0db6a3a85b3181dd95a183f6b5d6f23860c73858a8cdea3ca","impliedFormat":99},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":99},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":99},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"1cbd4efdc7ba213c98c84db24047cce87df2702c573eeabdb778832ddd377338","impliedFormat":99},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":99},{"version":"d0cb8c2a1df9ae9695c043e425db1198e6a8046e32e698d1687c7da3d65803c5","impliedFormat":99},{"version":"feab7fc55f4eb4ef127b37d21077cba865978fd2ff330b19e6e43279f91d305d","signature":"5a053a99905f1f02360b0c066ecb90d7e0fe45fb2823a8fe8ee9309a16d4064e","impliedFormat":99},{"version":"0b88661e2639ed09162cecf604377305111fe1be0b37e4bc7c5dc50dc4a2fcc8","signature":"7cdbce6a8c67a581be3c06a8cdcba31595b99d4000ca17c8bdf91c55c8d5c683","impliedFormat":99},{"version":"acfed6cc001e7f7f26d2ba42222a180ba669bb966d4dd9cb4ad5596516061b13","impliedFormat":99},{"version":"f61a4dc92450609c353738f0a2daebf8cae71b24716dbd952456d80b1e1a48b6","impliedFormat":99},{"version":"f3f76db6e76bc76d13cc4bfa10e1f74390b8ebe279535f62243e8d8acd919314","impliedFormat":99},{"version":"af57ef20beafaeb58839cd9e619f34e23b9c3161e0a7a290a068888f7ba84406","signature":"c635bbebcf48f9370c98a06b4e55dffc0b9cadff1d0904b06a9bd997e731e5b7","impliedFormat":99},{"version":"430e0f1edf09958969e6c6dbdacc42be121cacfddbdec347c4128f0601b84f18","signature":"03cf86b43d6fb10bc36f6c415c3ea878f38a39c6e264fce5aae75a99e4d39613","impliedFormat":99},{"version":"f7f8b6edf07e78e260e5933a24a4c1ab4b857ca33523922f198542030a753bd8","signature":"d55c70ca5a5a36b412921fe342d98677dbedfff4577a4691126eee61febeb4e7","impliedFormat":99},{"version":"95fd2a9f5c1d418430cd4e1b0956e02c4cdc8ca3bfe1ad39568e7fb607ef526c","impliedFormat":99},{"version":"3bfcf4742399559f7b4aaa490aa2635ef325b224992f7d81b0be07c73c5ea474","impliedFormat":1},{"version":"b25a1d6e2552304e009260a81c12a9b47858b0f577d09d48c508de72cfd27bee","impliedFormat":1},{"version":"1a9cec9b158710d2cde853c8fcf2b975aba0039ced3d3d6c6ab1dd5f3773370f","impliedFormat":1},{"version":"52550c1a63840a0839253a8940a16286cc7e84ee809b4252340075f44a8369b2","impliedFormat":1},{"version":"1eb2441c0efffc5fb95bdf3c6202aae8ac9c8b8f77eab6df4bb48a3a48df52cf","impliedFormat":1},{"version":"4d1e0aa275bcc14b4ca3a8a8fa7a648f438f26737bf7990932082f7d9619c6fd","impliedFormat":1},{"version":"d21f0dfcfe7014fb628366d9dd7600d05844b3fc230a348beb31dbab4f88ebe5","impliedFormat":1},{"version":"3966afedbec4d84c1d3996a781ae1e7d6619031017a93ec3cf9e713a898ec51f","impliedFormat":1},{"version":"08200806e2d6c767e37b8e78d64d23b37cfece4a43b46d04479e0935c8879039","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[[288,293],300,301,304,305,307,310,311,338,339,[343,346]],"options":{"allowUnreachableCode":false,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSources":true,"module":199,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[212,1],[209,2],[356,2],[359,3],[254,4],[252,2],[253,5],[255,6],[250,7],[248,2],[251,8],[249,9],[315,2],[317,2],[318,2],[320,10],[319,2],[358,2],[214,11],[211,1],[213,12],[210,1],[171,13],[242,2],[175,14],[364,15],[207,2],[297,16],[299,17],[298,18],[196,19],[177,20],[178,21],[176,22],[179,23],[180,24],[181,25],[182,26],[183,27],[184,28],[185,29],[186,30],[187,31],[195,19],[189,19],[188,32],[286,2],[164,2],[170,2],[109,33],[110,33],[111,34],[63,35],[112,36],[113,37],[114,38],[58,2],[61,39],[59,2],[60,2],[115,40],[116,41],[117,42],[118,43],[119,44],[120,45],[121,45],[122,46],[123,47],[124,48],[125,49],[64,2],[62,2],[126,50],[127,51],[128,52],[162,53],[129,54],[130,2],[131,55],[132,56],[133,57],[134,58],[135,59],[136,60],[137,61],[138,62],[139,63],[140,63],[141,64],[142,2],[143,65],[144,66],[146,67],[145,68],[147,69],[148,70],[149,71],[150,72],[151,73],[152,74],[153,75],[154,76],[155,77],[156,78],[157,79],[158,80],[159,81],[65,2],[66,2],[67,2],[106,82],[107,2],[108,2],[160,83],[161,84],[295,85],[294,86],[287,87],[296,2],[308,2],[215,88],[54,2],[163,14],[167,89],[57,2],[303,90],[302,2],[68,2],[357,2],[342,91],[340,2],[341,92],[306,2],[205,2],[247,2],[363,93],[166,94],[221,2],[361,95],[362,96],[279,2],[281,97],[280,2],[222,65],[274,98],[272,99],[273,100],[261,101],[262,99],[269,102],[260,103],[265,104],[275,2],[266,105],[271,106],[277,107],[276,108],[259,109],[267,110],[268,111],[263,112],[270,98],[264,113],[360,114],[192,115],[191,2],[193,116],[219,2],[313,117],[337,118],[329,119],[314,117],[312,2],[328,120],[336,2],[334,2],[330,121],[333,122],[324,123],[332,124],[331,125],[327,126],[335,127],[322,128],[323,129],[326,126],[316,130],[325,128],[321,131],[244,132],[243,133],[258,2],[256,134],[174,2],[49,2],[50,2],[10,2],[8,2],[9,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[51,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[1,2],[12,2],[11,2],[84,135],[94,136],[83,135],[104,137],[75,138],[74,139],[103,140],[97,141],[102,142],[77,143],[91,144],[76,145],[100,146],[72,147],[71,140],[101,148],[73,149],[78,150],[79,2],[82,150],[69,2],[105,151],[95,152],[86,153],[87,154],[89,155],[85,156],[88,157],[98,140],[80,158],[81,159],[90,160],[70,161],[93,152],[92,150],[96,2],[99,162],[240,163],[285,164],[246,165],[241,163],[239,2],[245,166],[283,2],[278,2],[282,122],[257,124],[284,167],[165,168],[229,169],[53,170],[238,171],[169,2],[172,172],[233,173],[235,169],[236,174],[234,175],[56,2],[52,2],[237,176],[55,177],[232,178],[230,179],[231,176],[226,180],[225,180],[228,180],[227,180],[168,181],[309,2],[217,182],[220,183],[218,184],[204,185],[206,186],[190,2],[208,187],[224,188],[173,2],[194,189],[201,58],[197,190],[198,191],[200,192],[216,193],[202,194],[223,195],[199,196],[346,197],[288,198],[289,172],[290,199],[291,200],[292,201],[305,202],[304,203],[301,204],[344,205],[338,206],[339,207],[293,208],[345,209],[310,210],[311,211],[300,212],[307,213],[343,214],[348,215],[349,2],[203,215],[350,2],[347,2],[351,2],[352,2],[353,2],[354,2],[355,2]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.full.d.ts","../../core/dist/src/packager.d.ts","../../core/dist/src/html-entrypoint.d.ts","../../../node_modules/.pnpm/broccoli-node-api@1.7.0/node_modules/broccoli-node-api/index.d.ts","../../core/dist/src/stage.d.ts","../../core/dist/src/options.d.ts","../../../node_modules/.pnpm/broccoli-plugin@4.0.7/node_modules/broccoli-plugin/dist/interfaces.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/broccoli-output-wrapper@3.2.5/node_modules/broccoli-output-wrapper/dist/index.d.ts","../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../../../node_modules/.pnpm/walk-sync@2.2.0/node_modules/walk-sync/index.d.ts","../../../node_modules/.pnpm/fs-merger@3.2.1/node_modules/fs-merger/dist/index.d.ts","../../../node_modules/.pnpm/broccoli-plugin@4.0.7/node_modules/broccoli-plugin/dist/index.d.ts","../../core/dist/src/wait-for-trees.d.ts","../../core/dist/src/js-handlebars.d.ts","../../../node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms/index.d.ts","../../../node_modules/.pnpm/@types+debug@4.1.12/node_modules/@types/debug/index.d.ts","../../core/dist/src/messages.d.ts","../../shared-internals/src/metadata.ts","../../../node_modules/.pnpm/typescript-memoize@1.1.1/node_modules/typescript-memoize/dist/memoize-decorator.d.ts","../../../node_modules/.pnpm/@types+fs-extra@9.0.13/node_modules/@types/fs-extra/index.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/common.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/array.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/date.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/function.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/math.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/number.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/object.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/string.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/common/util.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/index.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/get.d.ts","../../shared-internals/src/get-or-create.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/cache.d.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/cache-group.d.ts","../../../node_modules/.pnpm/resolve-package-path@4.0.3/node_modules/resolve-package-path/lib/index.d.ts","../../shared-internals/src/package-cache.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/flatMap.d.ts","../../../node_modules/.pnpm/@types+lodash@4.17.21/node_modules/@types/lodash/cloneDeep.d.ts","../../shared-internals/src/package.ts","../../shared-internals/src/paths.ts","../../shared-internals/src/working-dir.ts","../../shared-internals/src/rewritten-package-cache.ts","../../shared-internals/src/package-name.ts","../../shared-internals/src/tmpdir.ts","../../../types/broccoli-funnel/index.d.ts","../../shared-internals/src/ember-cli-models.ts","../../../node_modules/.pnpm/ember-rfc176-data@0.3.18/node_modules/ember-rfc176-data/mappings.json","../../shared-internals/src/ember-standard-modules.ts","../../../node_modules/.pnpm/@types+js-string-escape@1.0.3/node_modules/@types/js-string-escape/index.d.ts","../../shared-internals/src/hbs-to-js.ts","../../../node_modules/.pnpm/@babel+types@7.28.5/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/.pnpm/@types+babel__traverse@7.28.0/node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/.pnpm/@types+babel__generator@7.27.0/node_modules/@types/babel__generator/index.d.ts","../../../node_modules/.pnpm/@babel+parser@7.28.5/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template/index.d.ts","../../../node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts","../../../node_modules/.pnpm/babel-import-util@3.0.1/node_modules/babel-import-util/src/index.d.ts","../../shared-internals/src/template-colocation-plugin.ts","../../shared-internals/src/babel-plugin-cache-busting.ts","../../shared-internals/src/dep-validation.ts","../../../node_modules/.pnpm/resolve.exports@2.0.3/node_modules/resolve.exports/index.d.ts","../../shared-internals/src/colocation.ts","../../../node_modules/.pnpm/is-subdir@1.2.0/node_modules/is-subdir/index.d.ts","../../../node_modules/.pnpm/pkg-entry-points@1.1.1/node_modules/pkg-entry-points/dist/index.d.cts","../../shared-internals/src/watch-utils.ts","../../shared-internals/src/index.ts","../../core/dist/src/virtual-test-support.d.ts","../../core/dist/src/virtual-test-support-styles.d.ts","../../core/dist/src/virtual-vendor.d.ts","../../core/dist/src/virtual-vendor-styles.d.ts","../../core/dist/src/app-files.d.ts","../../core/dist/src/virtual-entrypoint.d.ts","../../core/dist/src/virtual-route-entrypoint.d.ts","../../core/dist/src/virtual-content.d.ts","../../core/dist/src/module-request.d.ts","../../core/dist/src/node-resolve.d.ts","../../core/dist/src/module-resolver-options.d.ts","../../core/dist/src/module-resolver.d.ts","../../core/dist/src/resolver-loader.d.ts","../../core/dist/src/index.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/customEvent.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/logging-C6h4g8dA.d.mts","../../../node_modules/.pnpm/@oxc-project+types@0.115.0/node_modules/@oxc-project/types/types.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/binding-BohGL_65.d.mts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.d.ts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.d.ts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.d.ts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/filter/index.d.ts","../../../node_modules/.pnpm/@rolldown+pluginutils@1.0.0-rc.9/node_modules/@rolldown/pluginutils/dist/index.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/define-config-cG45vHwf.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/index.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/parse-ast-index.d.mts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/internal/rollupTypeCompat.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/constructors-DNuo4d0H.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/plugins-index.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/shared/transform-BoJxrM-e.d.mts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/utils-index.d.mts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/internal/esbuildOptions.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/metadata.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/types/types.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/types/types.d.mts","../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts","../../../node_modules/.pnpm/@jridgewell+source-map@0.3.11/node_modules/@jridgewell/source-map/types/source-map.d.mts","../../../node_modules/.pnpm/terser@5.44.1/node_modules/terser/tools/terser.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/internal/terserOptions.d.ts","../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/postcss@8.5.8/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/ast.d.ts","../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/targets.d.ts","../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/index.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/.pnpm/rolldown@1.0.0-rc.9/node_modules/rolldown/dist/filter-index.d.mts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/types/importGlob.d.ts","../../../node_modules/.pnpm/vite@8.0.0_@types+node@22.19.1_esbuild@0.25.12_jiti@2.4.2_terser@5.44.1/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/@types+mime@1.3.5/node_modules/@types/mime/index.d.ts","../../../node_modules/.pnpm/@types+send@0.17.6/node_modules/@types/send/index.d.ts","../src/assets.ts","../src/backchannel.ts","../src/build-id-filter.ts","../src/build-once.ts","../src/build.ts","../src/hbs.ts","../../../node_modules/.pnpm/@types+parse5@6.0.3/node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/.pnpm/@types+parse5@6.0.3/node_modules/@types/parse5/index.d.ts","../../../node_modules/.pnpm/@types+tough-cookie@4.0.5/node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/base.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/ts4.0/index.d.ts","../../../node_modules/.pnpm/@types+jsdom@16.2.15/node_modules/@types/jsdom/index.d.ts","../src/scripts.ts","../src/content-for.ts","../../../node_modules/.pnpm/browserslist@4.28.1/node_modules/browserslist/index.d.ts","../../../node_modules/.pnpm/browserslist-to-esbuild@2.1.1_browserslist@4.28.1/node_modules/browserslist-to-esbuild/src/index.d.ts","../src/config-targets.ts","../src/classic-ember-support.ts","../../../node_modules/.pnpm/content-tag@4.1.0/node_modules/content-tag/index.d.cts","../src/template-tag.ts","../../../node_modules/.pnpm/assert-never@1.4.0/node_modules/assert-never/index.d.ts","../../reverse-exports/dist/src/index.d.ts","../src/request.ts","../src/resolver.ts","../src/esbuild-request.ts","../src/esbuild-resolver.ts","../../../node_modules/.pnpm/chalk@5.6.2/node_modules/chalk/source/vendor/ansi-styles/index.d.ts","../../../node_modules/.pnpm/chalk@5.6.2/node_modules/chalk/source/vendor/supports-color/index.d.ts","../../../node_modules/.pnpm/chalk@5.6.2/node_modules/chalk/source/index.d.ts","../src/warn-root-url.ts","../src/types.ts","../src/ember.ts","../src/optimize-deps.ts","../index.ts","../../../types/broccoli/index.d.ts","../../../types/broccoli-concat/index.d.ts","../../../types/broccoli-file-creator/index.d.ts","../../../types/broccoli-merge-trees/index.d.ts","../../../types/console-ui/index.d.ts","../../../types/ember-cli/index.d.ts","../../../types/fast-sourcemap-concat/index.d.ts","../../../types/source-map-url/index.d.ts","../../../types/thread-loader/index.d.ts","../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts"],"fileIdsList":[[63,112,129,130,209,312,313,314],[63,112,129,130,312,313,314],[63,112,129,130,312,313,314,348],[63,112,129,130,266,268,312,313,314],[63,112,129,130,267,312,313,314],[63,112,129,130,266,269,312,313,314],[63,112,129,130,264,266,312,313,314],[63,112,129,130,263,264,265,312,313,314],[63,112,129,130,263,266,312,313,314],[63,112,129,130,245,246,247,312,313,314],[63,112,129,130,248,312,313,314],[63,112,129,130,209,210,211,212,213,312,313,314],[63,112,129,130,209,212,312,313,314],[63,112,129,130,170,312,313,314],[63,112,124,129,130,162,312,313,314],[63,112,129,130,312,313,314,350,353],[63,112,123,129,130,158,162,310,311,313,314],[63,112,129,130,312,313],[63,112,129,130,312,314],[63,112,129,130,188,312,313,314],[63,112,129,130,176,178,179,180,181,182,183,184,185,186,187,188,312,313,314],[63,112,129,130,176,177,179,180,181,182,183,184,185,186,187,188,312,313,314],[63,112,129,130,177,178,179,180,181,182,183,184,185,186,187,188,312,313,314],[63,112,129,130,176,177,178,180,181,182,183,184,185,186,187,188,312,313,314],[63,112,129,130,176,177,178,179,181,182,183,184,185,186,187,188,312,313,314],[63,112,129,130,176,177,178,179,180,182,183,184,185,186,187,188,312,313,314],[63,112,129,130,176,177,178,179,180,181,183,184,185,186,187,188,312,313,314],[63,112,129,130,176,177,178,179,180,181,182,184,185,186,187,188,312,313,314],[63,112,129,130,176,177,178,179,180,181,182,183,185,186,187,188,312,313,314],[63,112,129,130,176,177,178,179,180,181,182,183,184,186,187,188,312,313,314],[63,112,129,130,176,177,178,179,180,181,182,183,184,185,187,188,312,313,314],[63,112,129,130,176,177,178,179,180,181,182,183,184,185,186,188,312,313,314],[63,112,129,130,176,177,178,179,180,181,182,183,184,185,186,187,312,313,314],[63,109,110,112,129,130,312,313,314],[63,111,112,129,130,312,313,314],[112,129,130,312,313,314],[63,112,117,129,130,147,312,313,314],[63,112,113,118,123,129,130,132,144,155,312,313,314],[63,112,113,114,123,129,130,132,312,313,314],[58,59,60,63,112,129,130,312,313,314],[63,112,115,129,130,156,312,313,314],[63,112,116,117,124,129,130,133,312,313,314],[63,112,117,129,130,144,152,312,313,314],[63,112,118,120,123,129,130,132,312,313,314],[63,111,112,119,129,130,312,313,314],[63,112,120,121,129,130,312,313,314],[63,112,122,123,129,130,312,313,314],[63,111,112,123,129,130,312,313,314],[63,112,123,124,125,129,130,144,155,312,313,314],[63,112,123,124,125,129,130,139,144,147,312,313,314],[63,105,112,120,123,126,129,130,132,144,155,312,313,314],[63,112,123,124,126,127,129,130,132,144,152,155,312,313,314],[63,112,126,128,129,130,144,152,155,312,313,314],[61,62,63,64,65,66,67,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,312,313,314],[63,112,123,129,130,312,313,314],[63,112,129,130,131,155,312,313,314],[63,112,120,123,129,130,132,144,312,313,314],[63,112,129,130,133,312,313,314],[63,112,129,130,134,312,313,314],[63,111,112,129,130,135,312,313,314],[63,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,312,313,314],[63,112,129,130,137,312,313,314],[63,112,129,130,138,312,313,314],[63,112,123,129,130,139,140,312,313,314],[63,112,129,130,139,141,156,158,312,313,314],[63,112,124,129,130,312,313,314],[63,112,123,129,130,144,145,147,312,313,314],[63,112,129,130,146,147,312,313,314],[63,112,129,130,144,145,312,313,314],[63,112,129,130,147,312,313,314],[63,112,129,130,148,312,313,314],[63,109,112,129,130,144,149,312,313,314],[63,112,123,129,130,150,151,312,313,314],[63,112,129,130,150,151,312,313,314],[63,112,117,129,130,132,144,152,312,313,314],[63,112,129,130,153,312,313,314],[63,112,129,130,132,154,312,313,314],[63,112,126,129,130,138,155,312,313,314],[63,112,117,129,130,156,312,313,314],[63,112,129,130,144,157,312,313,314],[63,112,129,130,131,158,312,313,314],[63,112,129,130,159,312,313,314],[63,105,112,129,130,312,313,314],[63,105,112,123,125,129,130,135,144,147,155,157,158,160,312,313,314],[63,112,129,130,144,161,312,313,314],[63,112,129,130,309,312,313,314],[63,112,129,130,310,312,313,314],[63,112,124,129,130,144,162,301,312,313,314],[63,112,129,130,214,312,313,314],[54,57,63,112,129,130,163,166,312,313,314],[63,112,129,130,312,313,314,317],[63,112,129,130,312,313,314,329,330],[63,112,129,130,154,312,313,314],[63,112,129,130,312,313,314,346,352],[54,63,112,124,129,130,162,165,312,313,314],[63,112,129,130,312,313,314,350],[63,112,129,130,312,313,314,347,351],[63,112,129,130,293,294,312,313,314],[63,112,129,130,288,312,313,314],[63,112,129,130,286,288,312,313,314],[63,112,129,130,277,285,286,287,289,291,312,313,314],[63,112,129,130,275,312,313,314],[63,112,129,130,278,283,288,291,312,313,314],[63,112,129,130,274,291,312,313,314],[63,112,129,130,278,279,282,283,284,291,312,313,314],[63,112,129,130,278,279,280,282,283,291,312,313,314],[63,112,129,130,275,276,277,278,279,283,284,285,287,288,289,291,312,313,314],[63,112,129,130,291,312,313,314],[63,112,129,130,273,275,276,277,278,279,280,282,283,284,285,286,287,288,289,290,312,313,314],[63,112,129,130,273,291,312,313,314],[63,112,129,130,278,280,281,283,284,291,312,313,314],[63,112,129,130,282,291,312,313,314],[63,112,129,130,283,284,288,291,312,313,314],[63,112,129,130,276,286,312,313,314],[63,112,129,130,312,313,314,349],[63,112,129,130,191,312,313,314],[63,112,129,130,191,192,312,313,314],[63,112,129,130,244,250,312,313,314],[63,112,129,130,242,244,250,312,313,314],[63,112,129,130,243,244,312,313,314],[63,112,129,130,244,250,254,312,313,314],[63,112,129,130,243,312,313,314],[63,112,129,130,242,243,244,249,312,313,314],[63,112,129,130,242,244,312,313,314],[63,112,129,130,243,244,256,312,313,314],[63,112,129,130,270,312,313,314],[63,77,81,112,129,130,155,312,313,314],[63,77,112,129,130,144,155,312,313,314],[63,72,112,129,130,312,313,314],[63,74,77,112,129,130,152,155,312,313,314],[63,112,129,130,132,152,312,313,314],[63,112,129,130,162,312,313,314],[63,72,112,129,130,162,312,313,314],[63,74,77,112,129,130,132,155,312,313,314],[63,69,70,73,76,112,123,129,130,144,155,312,313,314],[63,77,84,112,129,130,312,313,314],[63,69,75,112,129,130,312,313,314],[63,77,98,99,112,129,130,312,313,314],[63,73,77,112,129,130,147,155,162,312,313,314],[63,98,112,129,130,162,312,313,314],[63,71,72,112,129,130,162,312,313,314],[63,77,112,129,130,312,313,314],[63,71,72,73,74,75,76,77,78,79,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,112,129,130,312,313,314],[63,77,92,112,129,130,312,313,314],[63,77,84,85,112,129,130,312,313,314],[63,75,77,85,86,112,129,130,312,313,314],[63,76,112,129,130,312,313,314],[63,69,72,77,112,129,130,312,313,314],[63,77,81,85,86,112,129,130,312,313,314],[63,81,112,129,130,312,313,314],[63,75,77,80,112,129,130,155,312,313,314],[63,69,74,77,84,112,129,130,312,313,314],[63,112,129,130,144,312,313,314],[63,72,77,98,112,129,130,160,162,312,313,314],[63,112,129,130,239,312,313,314],[63,112,123,124,126,127,128,129,130,132,144,152,155,161,162,239,240,241,251,252,253,255,257,259,261,262,272,292,296,297,298,299,300,312,313,314],[63,112,129,130,239,240,241,258,312,313,314],[63,112,129,130,241,312,313,314],[63,112,129,130,260,312,313,314],[63,112,129,130,295,312,313,314],[63,112,129,130,251,262,300,312,313,314],[63,112,129,130,271,312,313,314],[63,112,129,130,251,300,312,313,314],[63,112,124,129,130,162,164,312,313,314],[63,112,129,130,224,312,313,314],[52,63,112,129,130,312,313,314],[52,53,55,56,63,112,129,130,168,169,172,224,229,232,233,235,236,237,312,313,314],[63,112,129,130,171,312,313,314],[63,112,129,130,232,312,313,314],[63,112,129,130,224,233,234,235,312,313,314],[63,112,129,130,232,233,236,312,313,314],[63,112,129,130,236,312,313,314],[54,63,112,129,130,312,313,314],[63,112,129,130,225,226,227,228,230,231,238,312,313,314],[63,112,129,130,229,236,312,313,314],[63,112,129,130,232,236,312,313,314],[54,63,112,129,130,167,312,313,314],[63,112,129,130,175,312,313,314],[63,112,129,130,134,175,194,198,219,312,313,314],[63,112,129,130,197,312,313,314],[54,63,112,129,130,173,203,312,313,314],[63,112,129,130,205,312,313,314],[63,112,129,130,134,207,312,313,314],[63,112,129,130,173,190,194,197,198,199,200,201,202,204,206,208,216,217,218,220,223,312,313,314],[63,112,124,129,130,134,190,193,197,312,313,314],[63,112,129,130,134,173,174,175,189,194,195,196,312,313,314],[63,112,129,130,134,197,312,313,314],[63,112,129,130,134,175,190,194,197,199,312,313,314],[63,112,124,129,130,134,164,171,198,210,214,215,224,312,313,314],[63,112,129,130,133,175,312,313,314],[63,112,129,130,134,221,222,312,313,314],[63,112,124,129,130,134,175,312,313,314],[63,112,129,130,303,306,307,308,312,313,314,315,316,319,320,322,326,328,334,335],[63,112,129,130,134,136,175,238,300,302,312,313,314],[63,112,129,130,300,312,313,314],[63,112,113,129,130,312,313,314],[63,112,113,129,130,131,134,300,312,313,314],[63,112,129,130,303,307,308,312,313,314,315,316,319],[63,112,124,129,130,134,155,312,313,314,318],[63,112,129,130,134,175,238,300,312,313,314],[63,112,124,129,130,300,312,313,314,322,326,328,332,333],[63,112,129,130,134,238,260,304,312,313,314,323,324],[63,112,129,130,134,175,214,238,260,304,312,313,314,321,323,327],[63,112,129,130,238,251,262,300,305,312,313,314],[63,112,129,130,312,313,314,328],[63,112,129,130,134,238,251,262,300,304,312,313,314,323,324],[63,112,117,124,129,130,134,171,175,238,251,262,300,304,312,313,314,323,324,325],[63,112,117,129,130,134,175,251,262,271,300,312,313,314,344],[63,112,129,130,300,305,312,313,314,321],[63,112,129,130,300,312,313,314,331],[63,112,129,130,167,312,313,314]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"08f6861df84fba9719c14d5adc3ba40be9f0c687639e6c4df3c05b9301b8ff94","impliedFormat":1},{"version":"8cacf8ff57f2abccde586ca6b2ad0d5b6aa805f1e05d648016a699c4d34e7e33","impliedFormat":1},{"version":"792dfbb0cff6fc2ea09ccfe0e2edc66e05b4b0b86f77195d8d3b946423f853e5","impliedFormat":1},{"version":"d7080e710749d451754bdd05701a2d9b9c04b31aaca1afdc798f6b49e1e6ba54","impliedFormat":1},{"version":"22e9daef6c13ef229200e88e58732e6d977dfdf1328a4af72b9305f46b6b89d4","impliedFormat":1},{"version":"028b7d52179b04ec4b8e4967e4828fdc66c9d8e3e9c103e5321c3610c3a61dd0","impliedFormat":1},{"version":"4a91fa7370259a7be029b46233de8309646395443f1f0d90639dab3d6f58bc9b","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"bb45cd435da536500f1d9692a9b49d0c570b763ccbf00473248b777f5c1f353b","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"21145ce1c54e05ef9e52092b98a4ebfb326b92f52e76e47211c50cfcd2a2b4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5ebe6f4cc3b803cbfc962bae0d954f9c80e5078ca41eb3f1de41d92e7193ef37","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"b6e17ead1f63a988977d55268fbc1f88f8455e07b4442ecaca86a6295b9bca0d","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"5dae0892cddccaf9e5285453f1c97e78b9cf5e3be996f983fc56a63ac53b94d8","impliedFormat":1},{"version":"2d233a382de6a4ac120f49241f652a4f5631b08507ed6e031b7b00b9cc560b87","impliedFormat":1},{"version":"9ccc26dc5c86aaec692f30ae63b01c45765843bc4947e7d690ef57ea59544e8e","impliedFormat":1},{"version":"1e3aa45e69779b57f0d01a45a45d3665c26cea5759b6bb55c5e156b1c6f23c55","impliedFormat":1},{"version":"9c9216966405a82309678de0c1810ccce8d2a51dc766a521ace8954853573ee1","impliedFormat":1},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"38bfe41d54db874636648909bc36abe85c160ddebdf9c53913ad1f466e24ec84","impliedFormat":1},{"version":"1fcf0fb4160c9d2568d343c368282202d3c1882fdd2b08d54663ee7838924d53","impliedFormat":1},{"version":"3e08915d754e9fa1bccf3641c724ab9e8a50d4c301b80d7ace911e43eb298e54","impliedFormat":1},{"version":"ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","impliedFormat":1},{"version":"380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","impliedFormat":1},{"version":"98acc316756389efdc925de9169c826e4c40a6290fd0ed96b2d5a511b900b486","impliedFormat":1},{"version":"fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","impliedFormat":1},{"version":"b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","impliedFormat":1},{"version":"0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","impliedFormat":1},{"version":"7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","impliedFormat":1},{"version":"49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","impliedFormat":1},{"version":"8c7bb1d03e5607e5ad3d27f48e53dbe70b61372ea73d75000c9ead7ad2ac0fbd","impliedFormat":1},{"version":"5a03d90a285f2c0849d2cedd969cd01f801b8f44308d77c86aa4b75130d088b7","impliedFormat":1},{"version":"d5960343e19e2a78a1dc78a6cee39e2a9d857d4a241180e45f1fd36367495386","impliedFormat":1},{"version":"c0264ca644cd14781acbd942ee3615d2b9810f4e6e6d86e0e14a1dbac8d8cdaa","impliedFormat":1},{"version":"1458833def0c60d8548148fc08d9ca95fa0011c7bf96045ce38065c5c4d48047","impliedFormat":1},{"version":"de9471b25f19b3943df51928960abdd900fa8da30deb581c246c0dbec810c9de","impliedFormat":1},{"version":"d3aca2ab5ac0fdfd53191f44a2d440505c7bf73c1c93bb113d8ffbc37b62869c","impliedFormat":1},{"version":"a33ea06913b712c529662bee7fd75959781267cf8a307902cc7761307fec0337","impliedFormat":1},{"version":"9a107dd9c61651050102afc71e2912cf177dcf49a3daa8a86135fc51bab66691","impliedFormat":1},{"version":"f01b36721e9be97fb7254863ccadd3c417a4fba4767e97650768588ad07c22b9","impliedFormat":1},{"version":"8b054be2a316e12dbc5f6305a3c8a96332f5951fb52c5fcef761bcda54ebeb2b","impliedFormat":1},{"version":"4b3dab4da88ad7d3c495b1f7aa0c5a3991c0437a97f7a1aab43ec182f74a6bfc","impliedFormat":1},{"version":"978260b11b03c868dff66b9862422bfda618002a94df75e76b8df2d6d8d4740c","impliedFormat":1},{"version":"a303777c4a10e5e75143415e08babaf3f24bc8927dd073652b1087fcaf2de50a","impliedFormat":1},{"version":"b3982a9cfd8798be0caead4ab7062a46cce8376920d20856453a2622ad1420bf","impliedFormat":1},{"version":"3da542e69e5c0bef96b479a9cc4824fe6549e263b469b2f5a2c5f82c05c498e1","impliedFormat":1},"d3a865e0c77656b2f63b5c83cbeef97509fe03705d908ca541a0a77bd21f1f2b",{"version":"e54572d9d33385dcafafeeb2640d0c7a2838db00be5214dbd582b2f46f1b9324","impliedFormat":1},{"version":"3d09a8b49c119963b8b9bd830798133206965a38ea4757e8fe8bfccb3238b6aa","impliedFormat":1},{"version":"81a466460fc5a4e14eda785ec4f7c7b40995939453574b4f1057030f71dec595","impliedFormat":1},{"version":"c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"d39269d2a3b969bfd48ad79da81bb50e42a55264756cdde09aff2f5b963f6a6f","impliedFormat":1},{"version":"ad007a83ba82282a5b081cd5d87213605d556e6892da8f61b61eb5ff89b9a74b","impliedFormat":1},{"version":"bfc85a8981d6c20a87cd5f1eba6afd3a5cad6673994f545a548bf0782fdd25f1","impliedFormat":1},{"version":"8294fd94e467ad144df9bbd0ff6a150f14f7fa473bb8524c05749bdec34d9b0e","impliedFormat":1},{"version":"10230a955a3fd41688645b2abb92b596bd0c1eae62e05a92c3825c3b34ad5234","impliedFormat":1},{"version":"af432edae5323b4da73e45059916c17a1dce5fe503ac8a480326d9cd7d908706","impliedFormat":1},{"version":"a1ac2bcfaf6e1c53f7c75b694c7a332ed1174096f14a539620f021502af5cca2","impliedFormat":1},{"version":"6a437ff229c33de0dfd6c805daa3d40376e4c060d2b94919f00c6cfc122b29a0","impliedFormat":1},{"version":"41e8ce7169dfdb101d8a157af387bd542172ec842e7bc407d9e47fdda59782fa","impliedFormat":1},{"version":"1a320316245a19c41eee34a2c8d3c669d5e048f44069ac8dc70a3b5a027bc30b","impliedFormat":1},{"version":"629e088d17a1ea44b725597f76d829345e5c5675806996b729fba51c800cd497","impliedFormat":1},{"version":"bf9188bb98c69d44281b5f165ee1064021334631c7d841ffaf459aeb0ac5f982","impliedFormat":1},{"version":"fea2403f4b1a2e2b1171b1d076bb0c69f9c32e417033ad70c458533b7a9a31e1","impliedFormat":1},{"version":"ee940b3dc76c388f05911e8741099926bff59c3cae046cd82deb5cc7d46e58a9","impliedFormat":1},{"version":"2b9254b674dacbfb0593309769e0ccfe8c14cc84632023aac540cb20c306ea16","impliedFormat":1},{"version":"0b87454679443c99368948bc46de64d8fe114ca547e5356cd8d9267f62fe99a9","impliedFormat":1},{"version":"1757eeacddd964919e64fccc69d9209ba893dacc3828ec7068541982dc9ab6d9","impliedFormat":1},{"version":"bd21b568e51ef0d60ba905004a549c316a5f8695ed6c2f95e72e5a35699cb28d","impliedFormat":1},{"version":"64ba746775d776e99f431dfe276827c90cf633b66d9c0328380d8b6cd27f62c9","impliedFormat":1},{"version":"54a529ddfbd61ea552ba963293ce43125a0e02852f2b16b19dcf4968547afa9c","impliedFormat":1},{"version":"bf3a14f808a3ca036c57622bc34ccbb42f338604ea82fe87692c8cf47be83c81","impliedFormat":1},{"version":"1929509da7d867b1864a1fc6303a5f532eaa745094aa64fe2a44dcc61d75bfb8","impliedFormat":1},{"version":"b554d6092f52572f5e2b6f07c7305860b2080aa9ae34258ad36e253e94be1b2c","impliedFormat":1},{"version":"745cd820a3379755cd5c98bcde85522b97dd112504da2169d563880e636004e9","impliedFormat":1},{"version":"3b89216a7e38a454985ad17bb2ff85792837dc812f2a89fa5f60ad0a2e216fa7","impliedFormat":99},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"82179358c2d9d7347f1602dc9300039a2250e483137b38ebf31d4d2e5519c181","impliedFormat":99},{"version":"c73fdf42528325dd17940937ed787b15ae3445c6a2dae1a2b74bc4d87d337ca2","impliedFormat":99},{"version":"08b97f6a8e66afc82e8e536b786e620e74cb5496292d882f971bb72579393935","impliedFormat":99},{"version":"8f94cf4d829f82d6469b2300e7dc05e8c630395f6aef68e75f7a76f1d2bfe632","impliedFormat":99},{"version":"148debd12783ded0a60d115daeacd8136f77757ae89a05c4e18de6dd77646fd2","impliedFormat":99},{"version":"0088b02dca63c47b273a140d0a3944bdc6dc2eb765fff0ca98e3c3a2786b3a5a","impliedFormat":99},{"version":"a651d06b780fa354231f19b040cbcde484bede3218885752b4f9e9a8f72d3b5f","impliedFormat":99},{"version":"06e26f75bed4c8389a8a63f0e6d6a9068038873dc95d8d1338e8c370a0ae8bc3","impliedFormat":99},{"version":"a2155e2675fd1af52b0b70779371c28611cdd1076b29d0f68bf93b983e5ddce0","impliedFormat":99},{"version":"c049bdb01dd6d0697b764db592381693c8cfec4cba496648b13f261202386976","impliedFormat":99},{"version":"515bf30a1d5356c4a1b58c5e42f3bf65078ab41e955e233bd2c0093625059b9c","impliedFormat":99},{"version":"d0bdb3239791558ea54e1fa0818f3d5bb72078b9102d478d19b9134ec7f1026c","impliedFormat":99},{"version":"7d3e062a778b8f5ea4f0cac7e925e31f88e6739812ebc5f827474324a4048f14","impliedFormat":99},{"version":"a6d25f46d14f51741fd4aa6f63766871813b13dbecfe2329585d811480b93a45","impliedFormat":99},{"version":"2bff81382850153cb016673d0130a13247fb0335524f3f6d38370801ddb9c394","impliedFormat":99},{"version":"83c1d9200c038c329064a4e1d78ba3e89ce6b0affc557cccbad5ea9898183dec","impliedFormat":99},{"version":"cde43bd8c0d59505f80ef51b62fa759a10f9d7526162348448afb9d5601a0642","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"091546ac9077cddcd7b9479cc2e0c677238bf13e39eab4b13e75046c3328df93","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0864480ea083087d705f9405bd6bf59b795e8474c3447f0d6413b2bce535a09","impliedFormat":99},{"version":"e67cbea16f1994af89efd700542dbf3828a46a52b29e4d67e801bd7869dc103c","impliedFormat":99},{"version":"971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","impliedFormat":99},{"version":"76de3321ce519928f1ff7d7a30391c0dc7374af20f81d9167919f038895b5cb0","impliedFormat":99},{"version":"094b9210da23b8711709b0535c59841186267bf6b83c1609aa9b515f830ab274","impliedFormat":99},{"version":"fbfbb4e99c6259ff5ccc4a5a62b3b63c0c8cae6e84737786c4a4c761c9a9de91","impliedFormat":99},{"version":"604887bbd5b0a93234ce882543a465f008636185c52e0f0353330e2bc38b03b6","impliedFormat":99},{"version":"32bf912173e8a9533631f9e9d8dc90a2ac7b52c2355611ddd886beab24dfd182","impliedFormat":99},{"version":"82695324abf7f3278b6d9f0582f4a544e8f7055c8cbe1065ab5cbacde1719c4c","impliedFormat":99},{"version":"43bba542e50e19241ec64bc13cfc0d9273e6198f36563cecad1f4e4b78ad47f3","impliedFormat":99},{"version":"b8cb3b69c0e8114f758bb8ef8efeef1cc80f8911bfd21126def73d2174ce479e","impliedFormat":99},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":99},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"7965dc3c7648e2a7a586d11781cabb43d4859920716bc2fdc523da912b06570d","impliedFormat":1},{"version":"90c2bd9a3e72fe08b8fa5982e78cb8dc855a1157b26e11e37a793283c52bf64b","impliedFormat":1},{"version":"a8122fe390a2a987079e06c573b1471296114677923c1c094c24a53ddd7344a2","impliedFormat":1},{"version":"70c2cb19c0c42061a39351156653aa0cf5ba1ecdc8a07424dd38e3a1f1e3c7f4","impliedFormat":1},{"version":"a8fb10fd8c7bc7d9b8f546d4d186d1027f8a9002a639bec689b5000dab68e35c","impliedFormat":1},{"version":"c9b467ea59b86bd27714a879b9ad43c16f186012a26d0f7110b1322025ceaa83","impliedFormat":1},{"version":"57ea19c2e6ba094d8087c721bac30ff1c681081dbd8b167ac068590ef633e7a5","impliedFormat":1},{"version":"cba81ec9ae7bc31a4dc56f33c054131e037649d6b9a2cfa245124c67e23e4721","impliedFormat":1},{"version":"ad193f61ba708e01218496f093c23626aa3808c296844a99189be7108a9c8343","impliedFormat":1},{"version":"a0544b3c8b70b2f319a99ea380b55ab5394ede9188cdee452a5d0ce264f258b2","impliedFormat":1},{"version":"8c654c17c334c7c168c1c36e5336896dc2c892de940886c1639bebd9fc7b9be4","impliedFormat":1},{"version":"6a4da742485d5c2eb6bcb322ae96993999ffecbd5660b0219a5f5678d8225bb0","impliedFormat":1},{"version":"c65ca21d7002bdb431f9ab3c7a6e765a489aa5196e7e0ef00aed55b1294df599","impliedFormat":1},{"version":"c8fc655c2c4bafc155ceee01c84ab3d6c03192ced5d3f2de82e20f3d1bd7f9fa","impliedFormat":1},{"version":"be5a7ff3b47f7e553565e9483bdcadb0ca2040ac9e5ec7b81c7e115a81059882","impliedFormat":1},{"version":"1a93f36ecdb60a95e3a3621b561763e2952da81962fae217ab5441ac1d77ffc5","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"3fd8a5aefd8c3feb3936ca66f5aa89dff7bf6e6537b4158dbd0f6e0d65ed3b9e","impliedFormat":1},{"version":"a18642ddf216f162052a16cba0944892c4c4c977d3306a87cb673d46abbb0cbf","impliedFormat":1},{"version":"41c41c6e90133bb2a14f7561f29944771886e5535945b2b372e2f6ed6987746e","impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":99},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":99},{"version":"a99bfaebce194209dbf7290663af01aaff57cf6b4089810eea5c8ec72a2c9cc2","impliedFormat":99},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":99},{"version":"68ead79e0f4b5576e2f17c5422039ecf5d56a20dc515ef593750411fbbe475bf","impliedFormat":99},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"cb90077223cc1365fa21ef0911a1f9b8f2f878943523d97350dc557973ca3823","impliedFormat":1},{"version":"fe4ba9c04893b00fd09c73c1e4c27e51247c7ea388ae9abef3dd63f63b8ef7ab","signature":"73579e22c39e3997101be489e9d6088328a850a6fca5f99c591c20a31994c0e0","impliedFormat":99},{"version":"d6975791f20923a97d336d9ca8be2f93a9f833787ccc33409d1b136a13be3492","signature":"0a1ff1a208e1b056b5854e6a9304230743d08d48b8e8c40ff0553a003d71434c","impliedFormat":99},{"version":"b0ab9e72081dbb8f5f41f366072542a1f787a98201ff9d03b467d6ba3b6d5975","signature":"3a0382e6f76e420dac6943a4e04a7896b6545f092f236883cf076741dfac085e","impliedFormat":99},{"version":"a0d13da6723605e5ea39afb213180256dc6c73a2bda9512c3e67fe0e06c7054d","signature":"c2ed123903a1ccd27b4df43d648579ecc04333752fb457e05cf65a4490c5cb2f","impliedFormat":99},{"version":"caf084e25d6e84746c6637947756a3271c6f1e455095132b2fcec95a250d5c64","signature":"dbabfc5e3d191bb9e2c69feb1e032f39e8194147627c4645e90a8bf90fdfbe09","impliedFormat":99},{"version":"417a25b157495c184f22c8dd01bbe9e7f85c4e3d54c7297602e620ecff25a2a0","signature":"41dfc6d7e1013dcb2f4d9b43477e0c7783ff7d8f8c354d2801582666b9a2b927","impliedFormat":99},{"version":"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","impliedFormat":1},{"version":"5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","impliedFormat":1},{"version":"389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3","impliedFormat":1},{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5954fa30b733b7b4b24ed66599c8af0b896f3d921f203491b24774618eb4299","signature":"372b2cb6f42ef888e606ba27fee20a9cb1616b8944833d9985f0897dcadf9f7b","impliedFormat":99},{"version":"ac8b072c0b42556b9446f447da810e5980a69950222a5bd8aed49bc558db01a8","signature":"5cfeaf249b01371d633a91d560af77e1c9a1d4c4b27817ddeecee28e3136a75e","impliedFormat":99},{"version":"88623aa2028777d8f073c61590feb7f3abde4513918329d868c8c0cb38d2d000","affectsGlobalScope":true,"impliedFormat":1},{"version":"074d6ab080bdcf0ea7100f880d8c33a303a477ebcd2e419d0db657fe7dc6e092","impliedFormat":99},{"version":"f516b2e06594753e526567ab16191079d5cd99c731d17df51ba79bd91d73696e","signature":"94bd0625d7b63916aea79e002fc43d6b52ba23e5e80f296c70297a924df66932","impliedFormat":99},{"version":"5a11f4e9d2a5eae995adc44f397e73f77b845387a6f07710a475d5012ed24d47","signature":"ec92aa77b9320508db41c21a471cc5a35d51b9a58f5f1674c82f2f3cd988c182","impliedFormat":99},{"version":"f030eecf26a96b02146673d0d4a3d1067880ad18122b5ee92bd7d72f2d7f3c6d","impliedFormat":1},{"version":"803ef7579a0b9c492e69a9c232c1dcda2ac76ca070a8bb807f9a6ce5336b503d","signature":"0fc03d6cdf9dc9cc7013db34d28818d20ab87bd5aea2e613ae696df2c7b490b4","impliedFormat":99},{"version":"d5a703fa18b967789d212dcd73ceeb62eaf3bf32a3170aa0e74e1a8964bef863","impliedFormat":1},{"version":"b07a2af67ad692bc3d1b59ab0d6c19c272c22bf4817ce1c8581ad1f94366ce24","impliedFormat":1},{"version":"0c5f283c3a07ace8505aaee79beb362feb832dea15a4cf046b79bd379d84f94f","signature":"ca913cc8aee18e816418c3a3306eddc274a74d3bcd79d579750cb13f0e295b13","impliedFormat":99},{"version":"396b59bb6f84182a7edf0032eda3f02084930b9d19e10c5689ad40ea6ea60818","signature":"198ab496c8f1c45a06555b0f12cf124af419cee343cfbee8d01603b805251309","impliedFormat":99},{"version":"feab7fc55f4eb4ef127b37d21077cba865978fd2ff330b19e6e43279f91d305d","signature":"5a053a99905f1f02360b0c066ecb90d7e0fe45fb2823a8fe8ee9309a16d4064e","impliedFormat":99},{"version":"0b88661e2639ed09162cecf604377305111fe1be0b37e4bc7c5dc50dc4a2fcc8","signature":"7cdbce6a8c67a581be3c06a8cdcba31595b99d4000ca17c8bdf91c55c8d5c683","impliedFormat":99},{"version":"acfed6cc001e7f7f26d2ba42222a180ba669bb966d4dd9cb4ad5596516061b13","impliedFormat":99},{"version":"f61a4dc92450609c353738f0a2daebf8cae71b24716dbd952456d80b1e1a48b6","impliedFormat":99},{"version":"f3f76db6e76bc76d13cc4bfa10e1f74390b8ebe279535f62243e8d8acd919314","impliedFormat":99},{"version":"af57ef20beafaeb58839cd9e619f34e23b9c3161e0a7a290a068888f7ba84406","signature":"c635bbebcf48f9370c98a06b4e55dffc0b9cadff1d0904b06a9bd997e731e5b7","impliedFormat":99},{"version":"3e43a060b06d3f143af32d989be69b9ae7028fc26ddc6247ead88c9d9ac2f57d","signature":"a1345cec05b68b3fb4187cdb809722fd004c6278bef24d20bc8326d215be5fd2","impliedFormat":99},{"version":"ad4f37e9a1574dc985b0708d50eca060722af3ee8d9794a267000758c05d0495","signature":"f2cdc6497fe88fe7029170f8770a1e4ee05016d60aa7a5e84326094c65cb2931","impliedFormat":99},{"version":"f7f8b6edf07e78e260e5933a24a4c1ab4b857ca33523922f198542030a753bd8","signature":"d55c70ca5a5a36b412921fe342d98677dbedfff4577a4691126eee61febeb4e7","impliedFormat":99},{"version":"95fd2a9f5c1d418430cd4e1b0956e02c4cdc8ca3bfe1ad39568e7fb607ef526c","impliedFormat":99},{"version":"3bfcf4742399559f7b4aaa490aa2635ef325b224992f7d81b0be07c73c5ea474","impliedFormat":1},{"version":"b25a1d6e2552304e009260a81c12a9b47858b0f577d09d48c508de72cfd27bee","impliedFormat":1},{"version":"1a9cec9b158710d2cde853c8fcf2b975aba0039ced3d3d6c6ab1dd5f3773370f","impliedFormat":1},{"version":"52550c1a63840a0839253a8940a16286cc7e84ee809b4252340075f44a8369b2","impliedFormat":1},{"version":"1eb2441c0efffc5fb95bdf3c6202aae8ac9c8b8f77eab6df4bb48a3a48df52cf","impliedFormat":1},{"version":"4d1e0aa275bcc14b4ca3a8a8fa7a648f438f26737bf7990932082f7d9619c6fd","impliedFormat":1},{"version":"d21f0dfcfe7014fb628366d9dd7600d05844b3fc230a348beb31dbab4f88ebe5","impliedFormat":1},{"version":"3966afedbec4d84c1d3996a781ae1e7d6619031017a93ec3cf9e713a898ec51f","impliedFormat":1},{"version":"08200806e2d6c767e37b8e78d64d23b37cfece4a43b46d04479e0935c8879039","impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[[303,308],315,316,319,320,322,[325,328],[332,336]],"options":{"allowUnreachableCode":false,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSources":true,"module":199,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[212,1],[209,2],[346,2],[349,3],[269,4],[267,2],[268,5],[270,6],[265,7],[263,2],[266,8],[264,9],[243,2],[245,2],[246,2],[248,10],[247,2],[249,11],[348,2],[214,12],[211,1],[213,13],[210,1],[171,14],[175,15],[354,16],[207,2],[312,17],[314,18],[313,19],[196,20],[177,21],[178,22],[176,23],[179,24],[180,25],[181,26],[182,27],[183,28],[184,29],[185,30],[186,31],[187,32],[195,20],[189,20],[188,33],[301,2],[164,2],[170,2],[109,34],[110,34],[111,35],[63,36],[112,37],[113,38],[114,39],[58,2],[61,40],[59,2],[60,2],[115,41],[116,42],[117,43],[118,44],[119,45],[120,46],[121,46],[122,47],[123,48],[124,49],[125,50],[64,2],[62,2],[126,51],[127,52],[128,53],[162,54],[129,55],[130,2],[131,56],[132,57],[133,58],[134,59],[135,60],[136,61],[137,62],[138,63],[139,64],[140,64],[141,65],[142,2],[143,66],[144,67],[146,68],[145,69],[147,70],[148,71],[149,72],[150,73],[151,74],[152,75],[153,76],[154,77],[155,78],[156,79],[157,80],[158,81],[159,82],[65,2],[66,2],[67,2],[106,83],[107,2],[108,2],[160,84],[161,85],[310,86],[309,87],[302,88],[311,2],[323,2],[215,89],[54,2],[163,15],[167,90],[57,2],[318,91],[317,2],[68,2],[347,2],[331,92],[329,2],[330,93],[321,2],[205,2],[260,2],[353,94],[166,95],[221,2],[351,96],[352,97],[293,2],[295,98],[294,2],[222,66],[289,99],[287,100],[288,101],[276,102],[277,100],[284,103],[275,104],[280,105],[290,2],[281,106],[286,107],[292,108],[291,109],[274,110],[282,111],[283,112],[278,113],[285,99],[279,114],[350,115],[192,116],[191,2],[193,117],[219,2],[298,118],[251,119],[252,120],[255,121],[244,122],[254,118],[250,123],[242,2],[256,124],[257,125],[273,2],[271,126],[174,2],[49,2],[50,2],[10,2],[8,2],[9,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[23,2],[24,2],[4,2],[25,2],[29,2],[26,2],[27,2],[28,2],[30,2],[31,2],[32,2],[5,2],[33,2],[34,2],[35,2],[36,2],[6,2],[51,2],[40,2],[37,2],[38,2],[39,2],[41,2],[7,2],[42,2],[47,2],[48,2],[43,2],[44,2],[45,2],[46,2],[1,2],[12,2],[11,2],[84,127],[94,128],[83,127],[104,129],[75,130],[74,131],[103,132],[97,133],[102,134],[77,135],[91,136],[76,137],[100,138],[72,139],[71,132],[101,140],[73,141],[78,142],[79,2],[82,142],[69,2],[105,143],[95,144],[86,145],[87,146],[89,147],[85,148],[88,149],[98,132],[80,150],[81,151],[90,152],[70,153],[93,144],[92,142],[96,2],[99,154],[240,155],[300,156],[259,157],[241,155],[239,2],[258,158],[299,2],[297,2],[261,159],[296,160],[253,161],[272,162],[262,163],[165,164],[229,165],[53,166],[238,167],[169,2],[172,168],[233,169],[235,165],[236,170],[234,171],[56,2],[52,2],[237,172],[55,173],[232,174],[230,175],[231,172],[226,176],[225,176],[228,176],[227,176],[168,177],[324,2],[217,178],[220,179],[218,180],[204,181],[206,182],[190,2],[208,183],[224,184],[173,2],[194,185],[201,59],[197,186],[198,187],[200,188],[216,189],[202,190],[223,191],[199,192],[336,193],[303,194],[304,168],[305,195],[306,196],[307,197],[320,198],[319,199],[316,200],[334,201],[327,202],[328,203],[308,204],[335,205],[325,206],[326,207],[315,208],[322,209],[333,195],[332,210],[338,211],[339,2],[203,211],[340,2],[337,2],[341,2],[342,2],[343,2],[344,2],[345,2]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@embroider/vite",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/embroider-build/embroider.git",
|
|
7
7
|
"directory": "packages/vite"
|
|
8
8
|
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"vite-plugin",
|
|
11
|
+
"vite",
|
|
12
|
+
"ember",
|
|
13
|
+
"emberjs",
|
|
14
|
+
"productivity",
|
|
15
|
+
"performance",
|
|
16
|
+
"ember.js",
|
|
17
|
+
"production",
|
|
18
|
+
"spa"
|
|
19
|
+
],
|
|
9
20
|
"type": "module",
|
|
10
21
|
"exports": {
|
|
11
22
|
".": {
|
|
@@ -15,7 +26,7 @@
|
|
|
15
26
|
},
|
|
16
27
|
"peerDependencies": {
|
|
17
28
|
"vite": ">= 5.2.0",
|
|
18
|
-
"@embroider/core": "^4.4.
|
|
29
|
+
"@embroider/core": "^4.4.6"
|
|
19
30
|
},
|
|
20
31
|
"dependencies": {
|
|
21
32
|
"@babel/core": "^7.22.9",
|
|
@@ -43,11 +54,10 @@
|
|
|
43
54
|
"@types/send": "^0.17.4",
|
|
44
55
|
"esbuild": "^0.25.0",
|
|
45
56
|
"html-minifier-terser": "^7.2.0",
|
|
46
|
-
"rolldown
|
|
47
|
-
"
|
|
48
|
-
"vite": "^7.2.6",
|
|
57
|
+
"rolldown": "1.0.0-rc.9",
|
|
58
|
+
"vite": "^8.0.0",
|
|
49
59
|
"vitest": "^3.2.4",
|
|
50
|
-
"@embroider/core": "^4.4.
|
|
60
|
+
"@embroider/core": "^4.4.6"
|
|
51
61
|
},
|
|
52
62
|
"files": [
|
|
53
63
|
"dist"
|