vite-plugin-react-server 1.1.19 → 1.1.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-react-server",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "description": "Vite plugin for React Server Components (RSC)",
5
5
  "type": "module",
6
6
  "main": "./dist/plugin/index.js",
@@ -1 +1 @@
1
- {"version":3,"file":"transformModuleWithPreservedFunctions.d.ts","sourceRoot":"","sources":["../../../plugin/loader/transformModuleWithPreservedFunctions.ts"],"names":[],"mappings":"AAmBA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAG1C,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAuDD;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,qCAAqC,CACnD,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,OAAO,EAChB,gBAAgB,EAAE,OAAO,GAAG,gBAAgB,GAAG,IAAI,EACnD,iBAAiB,EAAE,OAAO,GAAG,gBAAgB,GAAG,IAAI,GACnD,MAAM,CAmdR"}
1
+ {"version":3,"file":"transformModuleWithPreservedFunctions.d.ts","sourceRoot":"","sources":["../../../plugin/loader/transformModuleWithPreservedFunctions.ts"],"names":[],"mappings":"AAmBA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAG1C,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAuDD;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,qCAAqC,CACnD,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,OAAO,EAChB,gBAAgB,EAAE,OAAO,GAAG,gBAAgB,GAAG,IAAI,EACnD,iBAAiB,EAAE,OAAO,GAAG,gBAAgB,GAAG,IAAI,GACnD,MAAM,CAgdR"}
@@ -402,9 +402,6 @@ function transformModuleWithPreservedFunctions(source, moduleId, program, isServ
402
402
  mappingInfos.push({ generatedLine: 2, originalLine: 1, originalColumn: 0 });
403
403
  let lineNum = lines.length + 1;
404
404
  for (const entry of exportedEntries) {
405
- if (entry.type === "function") {
406
- lines.push(`if (typeof ${entry.localName} === "function") `);
407
- }
408
405
  lines.push(`registerServerReference(${entry.localName}, ${JSON.stringify(moduleId)}, ${JSON.stringify(entry.exportedName)});`);
409
406
  mappingInfos.push({
410
407
  generatedLine: lineNum,
@@ -1 +1 @@
1
- {"version":3,"file":"transformModuleWithPreservedFunctions.js","sources":["../../../plugin/loader/transformModuleWithPreservedFunctions.ts"],"sourcesContent":["/**\n * # RSC Boundary Handling\n *\n * This file provides the core transformation logic for React Server Components (RSC) boundaries.\n *\n * - **Server Loader**: Always strips implementation for client modules, exports error-throwing references.\n * - **Client Loader**: Always strips implementation for server modules, exports error-throwing references.\n * - **Browser**: Only client modules are passed through as-is.\n *\n * All transformations are handled by `transformModuleWithPreservedFunctions` for consistency.\n *\n * ## Error Behavior\n *\n * - If a client component is imported on the server, the export is a function that throws a clear error.\n * - If a server action is imported on the client, the export is a function that throws a clear error.\n *\n * This ensures that implementation details are never leaked across boundaries and errors are easy to debug.\n */\nimport { handleExports } from \"./handleExports.js\";\nimport type { Program } from \"./types.js\";\nimport { createMappingsSerializer } from \"../source-map/createMappingsSerializer.js\";\n\nexport interface TransformOptions {\n id: string;\n exportNames: string[];\n beforeExports: string;\n afterExports: string;\n isServerModule?: boolean;\n isClientModule?: boolean;\n program?: Program;\n}\n\n// Helper type for mapping info\ninterface MappingInfo {\n generatedLine: number;\n originalLine: number;\n originalColumn: number;\n}\n\nfunction generateSourceMap(\n moduleId: string,\n source: string,\n lines: string[],\n mappingInfos: MappingInfo[],\n originalSourceMap?: any\n) {\n const createMapping = createMappingsSerializer();\n let mappings = '';\n\n // Create a mapping for each line\n for (let i = 0; i < lines.length; i++) {\n const info = mappingInfos[i] || { generatedLine: i + 1, originalLine: 1, originalColumn: 0 };\n mappings += createMapping(\n info.generatedLine,\n 0,\n 0, // sourceIndex\n info.originalLine,\n info.originalColumn,\n -1 // nameIndex\n );\n }\n\n // Add a final mapping for the end of the file\n mappings += createMapping(\n lines.length + 1,\n 0,\n 0,\n source.split('\\n').length,\n 0,\n -1\n );\n\n const sourceMap = {\n version: 3,\n file: moduleId,\n sources: originalSourceMap?.sources || [moduleId],\n sourcesContent: originalSourceMap?.sourcesContent || [source],\n mappings,\n sourceRoot: originalSourceMap?.sourceRoot || \"\",\n names: originalSourceMap?.names || [],\n };\n\n return `data:application/json;charset=utf-8;base64,${Buffer.from(JSON.stringify(sourceMap)).toString(\"base64\")}`;\n}\n\n/**\n * --- React RSC Directive Handling ---\n *\n * 1. 'use client' at file top:\n * - Pass through code as-is (after removing directive).\n * - Do not transform or register anything.\n * - Required for React client features to work.\n * - See: https://react.dev/reference/rsc/use-client\n *\n * 2. 'use server' at file top:\n * - Register all exported async functions as server actions.\n * - See: https://react.dev/reference/rsc/use-server#caveats\n *\n * 3. 'use server' at function top:\n * - Register only that async function as a server action.\n * - See: https://react.dev/reference/rsc/use-server#caveats\n *\n * 4. No directive:\n * - Treat as a normal shared or server-only module.\n * - No special registration or transformation.\n */\n\n/**\n * Transforms a module for RSC boundaries.\n * - Server modules: exports are wrapped with server references while preserving functionality.\n * - Client modules: exports are replaced with client references or errors, depending on environment.\n * - Only the correct references are exported; implementation is never leaked across boundaries.\n *\n * @param source - The original module source code.\n * @param moduleId - The module's unique identifier.\n * @param url - The module's URL.\n * @param program - The parsed AST.\n * @param map - The source map for the source code.\n * @param isServerFunction - Whether the module is a server function.\n * @param isClientComponent - Whether the module is a client component.\n * @returns The transformed source code.\n */\nexport function transformModuleWithPreservedFunctions(\n source: string,\n moduleId: string,\n program: Program,\n isServerFunction: boolean | RegExpMatchArray | null,\n isClientComponent: boolean | RegExpMatchArray | null\n): string {\n // Check for existing source map\n let sourceMappingURL = null;\n let sourceMappingStart = 0;\n let sourceMappingEnd = 0;\n let sourceMappingLines = 0;\n let originalSourceMap = null;\n\n // Look for source map comment\n const sourceMapMatch = source.match(/\\/\\/[#@] sourceMappingURL=(.+)$/m);\n if (sourceMapMatch) {\n sourceMappingURL = sourceMapMatch[1];\n sourceMappingStart = sourceMapMatch.index!;\n sourceMappingEnd = sourceMapMatch.index! + sourceMapMatch[0].length;\n sourceMappingLines = sourceMapMatch[0].split('\\n').length - 1;\n\n // If it's a data URL, parse it\n if (sourceMappingURL.startsWith('data:application/json;base64,')) {\n const base64 = sourceMappingURL.slice('data:application/json;base64,'.length);\n originalSourceMap = JSON.parse(Buffer.from(base64, 'base64').toString());\n }\n }\n\n // Remove the old source map if present\n let sourceWithoutMap = source;\n if (sourceMappingStart > 0) {\n sourceWithoutMap = source.slice(0, sourceMappingStart) + '\\n'.repeat(sourceMappingLines) + source.slice(sourceMappingEnd);\n }\n\n // Remove directives from source code\n let sourceWithoutDirective = sourceWithoutMap;\n let directiveEnd = 0;\n let hasFileLevelServerDirective = false;\n let hasFileLevelClientDirective = false;\n let hasFunctionLevelClientDirective = false;\n let hasFunctionLevelServerDirective = false;\n\n // Get export names and create module ID literal\n const { exportNames, exports } = handleExports(\n sourceWithoutDirective,\n program,\n isServerFunction,\n isClientComponent\n );\n const moduleIdLiteral = JSON.stringify(moduleId);\n\n // Helper function to check for directives in a node\n function checkForDirective(node: any): string | null {\n if (node.type === \"ExpressionStatement\") {\n if (\"directive\" in node && typeof node.directive === \"string\") {\n return node.directive;\n } else if (\n node.expression.type === \"Literal\" &&\n typeof node.expression.value === \"string\" &&\n (node.expression.value === \"use server\" || node.expression.value === \"use client\")\n ) {\n return node.expression.value;\n }\n }\n return null;\n }\n\n // Check for file-level and function-level directives\n for (const node of program.body) {\n const directive = checkForDirective(node);\n if (directive) {\n if (directive === \"use server\") {\n if (node.start === 0) {\n hasFileLevelServerDirective = true;\n } else {\n hasFunctionLevelServerDirective = true;\n }\n }\n if (directive === \"use client\") {\n if (node.start === 0) {\n hasFileLevelClientDirective = true;\n } else {\n hasFunctionLevelClientDirective = true;\n }\n }\n if (\"start\" in node && \"end\" in node) {\n directiveEnd = Math.max(directiveEnd, node.end);\n }\n }\n\n // Check for function-level server directives in function bodies\n if (node.type === \"ExportNamedDeclaration\" && node.declaration?.type === \"FunctionDeclaration\") {\n const funcNode = node.declaration;\n if (funcNode.body?.body) {\n for (const stmt of funcNode.body.body) {\n const directive = checkForDirective(stmt);\n if (directive === \"use server\") {\n hasFunctionLevelServerDirective = true;\n // Mark this specific function as having a server directive\n const name = funcNode.id?.name;\n if (name) {\n const exportInfo = exports.get(name);\n if (exportInfo) {\n exportInfo.declaration = exportInfo.declaration?.replace(\n /^export\\s+function\\s+/,\n 'export async function '\n );\n exportInfo.isAsync = true;\n }\n }\n break;\n }\n }\n }\n } else if (node.type === \"FunctionDeclaration\") {\n if (node.body?.body) {\n for (const stmt of node.body.body) {\n const directive = checkForDirective(stmt);\n if (directive === \"use server\") {\n hasFunctionLevelServerDirective = true;\n // Mark this specific function as having a server directive\n const name = node.id?.name;\n if (name) {\n const exportInfo = exports.get(name);\n if (exportInfo) {\n exportInfo.declaration = exportInfo.declaration?.replace(\n /^export\\s+function\\s+/,\n 'export async function '\n );\n exportInfo.isAsync = true;\n }\n }\n break;\n }\n }\n }\n } else if (node.type === \"VariableDeclaration\") {\n for (const decl of node.declarations) {\n if (decl.init?.type === \"FunctionExpression\" || decl.init?.type === \"ArrowFunctionExpression\") {\n const body = decl.init.body;\n if (body.type === \"BlockStatement\" && body.body) {\n for (const stmt of body.body) {\n const directive = checkForDirective(stmt);\n if (directive === \"use server\") {\n hasFunctionLevelServerDirective = true;\n const name = decl.id.type === \"Identifier\" ? decl.id.name : undefined;\n if (name) {\n const exportInfo = exports.get(name);\n if (exportInfo) {\n exportInfo.declaration = exportInfo.declaration?.replace(\n /^export\\s+function\\s+/,\n 'export async function '\n );\n exportInfo.isAsync = true;\n }\n }\n break;\n }\n }\n }\n }\n }\n }\n }\n\n // Validate directive combinations\n if (hasFileLevelClientDirective && hasFileLevelServerDirective) {\n throw new Error(`Module ${moduleId} cannot have both \"use client\" and \"use server\" directives`);\n }\n\n if (hasFunctionLevelClientDirective) {\n throw new Error(`Module ${moduleId} cannot have function-level \"use client\" directives - only file-level is allowed`);\n }\n\n // Validate against user's explicit intent\n if (Boolean(isClientComponent) && !hasFileLevelClientDirective) {\n throw new Error(`Module ${moduleId} is marked as a client component but has no \"use client\" directive`);\n }\n\n if (Boolean(isServerFunction) && !hasFileLevelServerDirective && !hasFunctionLevelServerDirective) {\n if(process.env['NODE_ENV'] !== \"production\") {\n console.log(\"Error for file\", moduleId, source);\n }\n throw new Error(`Module ${moduleId} is marked as a server function but has no \"use server\" directive`);\n }\n\n // Remove the directive and any whitespace after it\n if (directiveEnd > 0) {\n sourceWithoutDirective = source.slice(directiveEnd).trim();\n }\n\n // Validate that there are exports to transform if explicitly marked\n if (Boolean(isClientComponent) && exportNames.length === 0) {\n throw new Error(`Module ${moduleId} is marked as a client component but has no exports to transform`);\n }\n\n if (Boolean(isServerFunction) && exportNames.length === 0) {\n throw new Error(`Module ${moduleId} is marked as a server function but has no exports to transform`);\n }\n\n // For client modules in server environment, replace with client references\n if (Boolean(isClientComponent)) {\n const output: string[] = [];\n const mappingInfos: MappingInfo[] = [];\n\n // Add registerClientReference import\n const clientImport = process.env['NODE_ENV'] === 'production'\n ? 'import { registerClientReference } from \"react-server-dom-esm/server\";'\n : 'import { registerClientReference } from \"react-server-dom-esm/server.node\";';\n output.push(clientImport);\n mappingInfos.push({ generatedLine: 1, originalLine: 1, originalColumn: 0 });\n\n // Register each export\n let lineNum = 2;\n for (const name of exportNames) {\n const exportInfo = exports.get(name);\n if (exportInfo) {\n // For default exports, use the localName if available\n const exportName =\n name === \"default\" && exportInfo.localName\n ? exportInfo.localName\n : name;\n if (name === 'default') {\n output.push(\n `export default registerClientReference(function() {` +\n `throw new Error(\"Attempted to call the default export of ${moduleIdLiteral} from the server but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\");` +\n `}, ${moduleIdLiteral}, \"default\");`\n );\n } else {\n output.push(\n `export const ${exportName} = registerClientReference(function() {` +\n `throw new Error(\"Attempted to call ${exportName}() from the server but ${exportName} is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\");` +\n `}, ${moduleIdLiteral}, ${JSON.stringify(name)});`\n );\n }\n // Create a mapping for each registration line\n mappingInfos.push({ \n generatedLine: lineNum, \n originalLine: exportInfo.loc?.line || 1, \n originalColumn: exportInfo.loc?.column || 0 \n });\n lineNum++;\n }\n }\n\n const newClientSource = output.join(\"\\n\\n\");\n const sourceMapBase64 = generateSourceMap(\n moduleId,\n source,\n output,\n mappingInfos,\n originalSourceMap\n );\n return `${newClientSource}\\n//# sourceMappingURL=${sourceMapBase64}`;\n }\n\n // For server modules in client environment, replace with server references\n if (Boolean(isServerFunction)) {\n // First collect all exports that need registration\n const exportedEntries: Array<{ localName: string; exportedName: string; type: string; loc?: { line: number; column: number } }> = [];\n const localNames = new Set();\n\n // Helper to check if a function has a \"use server\" directive\n function hasServerDirective(node: any): boolean {\n if (hasFileLevelServerDirective) return true;\n if (node.body?.body) {\n for (const stmt of node.body.body) {\n const directive = checkForDirective(stmt);\n if (directive === \"use server\") return true;\n }\n }\n return false;\n }\n\n // First pass: collect exports and remove directives\n let newSource = source;\n let directiveEnd = 0;\n\n for (const node of program.body) {\n // Handle directives\n const directive = checkForDirective(node);\n if (directive === \"use server\" || directive === \"use client\") {\n if (node.start === 0) {\n directiveEnd = node.end;\n } else {\n // Remove function-level directive\n newSource = newSource.slice(0, node.start) + newSource.slice(node.end);\n }\n continue;\n }\n\n // Collect exports that need registration, with loc\n switch (node.type) {\n case 'ExportDefaultDeclaration':\n if (node.declaration.type === 'FunctionDeclaration' && node.declaration.id) {\n const name = node.declaration.id.name;\n if (hasServerDirective(node.declaration)) {\n exportedEntries.push({\n localName: name,\n exportedName: 'default',\n type: 'function',\n loc: node.declaration.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n } else if (node.declaration.type === 'ClassDeclaration' && node.declaration.id) {\n const name = node.declaration.id.name;\n exportedEntries.push({\n localName: name,\n exportedName: 'default',\n type: 'class',\n loc: node.declaration.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n break;\n case 'ExportNamedDeclaration':\n if (node.declaration) {\n if (node.declaration.type === 'FunctionDeclaration' && node.declaration.id) {\n const name = node.declaration.id.name;\n if (hasServerDirective(node.declaration)) {\n exportedEntries.push({\n localName: name,\n exportedName: name,\n type: 'function',\n loc: node.declaration.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n } else if (node.declaration.type === 'ClassDeclaration' && node.declaration.id) {\n const name = node.declaration.id.name;\n exportedEntries.push({\n localName: name,\n exportedName: name,\n type: 'class',\n loc: node.declaration.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n } else if (node.declaration.type === 'VariableDeclaration') {\n for (const decl of node.declaration.declarations) {\n if (decl.id.type === 'Identifier') {\n const name = decl.id.name;\n if (decl.init) {\n if (decl.init.type === 'FunctionExpression' || decl.init.type === 'ArrowFunctionExpression') {\n if (hasServerDirective(decl.init)) {\n exportedEntries.push({\n localName: name,\n exportedName: name,\n type: 'function',\n loc: decl.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n } else {\n // Register non-function values\n exportedEntries.push({\n localName: name,\n exportedName: name,\n type: 'value',\n loc: decl.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n }\n }\n }\n }\n }\n if (node.specifiers) {\n for (const spec of node.specifiers) {\n if (spec.type === 'ExportSpecifier') {\n const localName = spec.local.type === 'Identifier' ? spec.local.name : '';\n const exportedName = spec.exported.type === 'Identifier' ? spec.exported.name : '';\n if (localName && exportedName) {\n // Find the original declaration to check for directive\n const originalDecl = program.body.find(n => \n (n.type === 'FunctionDeclaration' && n.id?.name === localName) ||\n (n.type === 'ClassDeclaration' && n.id?.name === localName) ||\n (n.type === 'VariableDeclaration' && n.declarations.some(d => \n d.id.type === 'Identifier' && d.id.name === localName\n ))\n );\n let loc = { line: 1, column: 0 };\n if (originalDecl) {\n if (originalDecl.type === 'FunctionDeclaration' && hasServerDirective(originalDecl)) {\n loc = originalDecl.id?.loc?.start || loc;\n exportedEntries.push({\n localName,\n exportedName,\n type: 'function',\n loc\n });\n localNames.add(localName);\n } else if (originalDecl.type === 'ClassDeclaration') {\n loc = originalDecl.id?.loc?.start || loc;\n exportedEntries.push({\n localName,\n exportedName,\n type: 'class',\n loc\n });\n localNames.add(localName);\n } else if (originalDecl.type === 'VariableDeclaration') {\n // Find the right declaration\n const decl = originalDecl.declarations.find(d => d.id.type === 'Identifier' && d.id.name === localName);\n loc = decl?.id?.loc?.start || loc;\n exportedEntries.push({\n localName,\n exportedName,\n type: 'value',\n loc\n });\n localNames.add(localName);\n }\n }\n }\n }\n }\n }\n break;\n }\n }\n\n // Remove file-level directive if present\n if (directiveEnd > 0) {\n newSource = newSource.slice(directiveEnd).trim();\n }\n\n // Add import and registrations\n const lines: string[] = [];\n const mappingInfos: MappingInfo[] = [];\n \n // Add import statement\n const serverImport = process.env['NODE_ENV'] === 'production' \n ? 'import { registerServerReference } from \"react-server-dom-esm/server\";'\n : 'import { registerServerReference } from \"react-server-dom-esm/server.node\";';\n lines.push(serverImport);\n mappingInfos.push({ generatedLine: 1, originalLine: 1, originalColumn: 0 });\n\n // Add the original source code\n lines.push(newSource);\n mappingInfos.push({ generatedLine: 2, originalLine: 1, originalColumn: 0 });\n\n // Add registrations after the source code\n let lineNum = lines.length + 1;\n for (const entry of exportedEntries) {\n if (entry.type === 'function') {\n lines.push(`if (typeof ${entry.localName} === \"function\") `);\n }\n lines.push(`registerServerReference(${entry.localName}, ${JSON.stringify(moduleId)}, ${JSON.stringify(entry.exportedName)});`);\n // Create a mapping for each registration line\n mappingInfos.push({ \n generatedLine: lineNum, \n originalLine: entry.loc?.line || 1, \n originalColumn: entry.loc?.column || 0 \n });\n lineNum++;\n }\n\n const newTransformedSource = lines.join('\\n');\n const sourceMapBase64 = generateSourceMap(\n moduleId,\n source,\n lines,\n mappingInfos,\n originalSourceMap\n );\n return `${newTransformedSource}\\n//# sourceMappingURL=${sourceMapBase64}`;\n }\n\n // For non-server, non-client modules, return as is\n return sourceWithoutMap;\n}\n"],"names":["directive","directiveEnd"],"mappings":"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"}
1
+ {"version":3,"file":"transformModuleWithPreservedFunctions.js","sources":["../../../plugin/loader/transformModuleWithPreservedFunctions.ts"],"sourcesContent":["/**\n * # RSC Boundary Handling\n *\n * This file provides the core transformation logic for React Server Components (RSC) boundaries.\n *\n * - **Server Loader**: Always strips implementation for client modules, exports error-throwing references.\n * - **Client Loader**: Always strips implementation for server modules, exports error-throwing references.\n * - **Browser**: Only client modules are passed through as-is.\n *\n * All transformations are handled by `transformModuleWithPreservedFunctions` for consistency.\n *\n * ## Error Behavior\n *\n * - If a client component is imported on the server, the export is a function that throws a clear error.\n * - If a server action is imported on the client, the export is a function that throws a clear error.\n *\n * This ensures that implementation details are never leaked across boundaries and errors are easy to debug.\n */\nimport { handleExports } from \"./handleExports.js\";\nimport type { Program } from \"./types.js\";\nimport { createMappingsSerializer } from \"../source-map/createMappingsSerializer.js\";\n\nexport interface TransformOptions {\n id: string;\n exportNames: string[];\n beforeExports: string;\n afterExports: string;\n isServerModule?: boolean;\n isClientModule?: boolean;\n program?: Program;\n}\n\n// Helper type for mapping info\ninterface MappingInfo {\n generatedLine: number;\n originalLine: number;\n originalColumn: number;\n}\n\nfunction generateSourceMap(\n moduleId: string,\n source: string,\n lines: string[],\n mappingInfos: MappingInfo[],\n originalSourceMap?: any\n) {\n const createMapping = createMappingsSerializer();\n let mappings = '';\n\n // Create a mapping for each line\n for (let i = 0; i < lines.length; i++) {\n const info = mappingInfos[i] || { generatedLine: i + 1, originalLine: 1, originalColumn: 0 };\n mappings += createMapping(\n info.generatedLine,\n 0,\n 0, // sourceIndex\n info.originalLine,\n info.originalColumn,\n -1 // nameIndex\n );\n }\n\n // Add a final mapping for the end of the file\n mappings += createMapping(\n lines.length + 1,\n 0,\n 0,\n source.split('\\n').length,\n 0,\n -1\n );\n\n const sourceMap = {\n version: 3,\n file: moduleId,\n sources: originalSourceMap?.sources || [moduleId],\n sourcesContent: originalSourceMap?.sourcesContent || [source],\n mappings,\n sourceRoot: originalSourceMap?.sourceRoot || \"\",\n names: originalSourceMap?.names || [],\n };\n\n return `data:application/json;charset=utf-8;base64,${Buffer.from(JSON.stringify(sourceMap)).toString(\"base64\")}`;\n}\n\n/**\n * --- React RSC Directive Handling ---\n *\n * 1. 'use client' at file top:\n * - Pass through code as-is (after removing directive).\n * - Do not transform or register anything.\n * - Required for React client features to work.\n * - See: https://react.dev/reference/rsc/use-client\n *\n * 2. 'use server' at file top:\n * - Register all exported async functions as server actions.\n * - See: https://react.dev/reference/rsc/use-server#caveats\n *\n * 3. 'use server' at function top:\n * - Register only that async function as a server action.\n * - See: https://react.dev/reference/rsc/use-server#caveats\n *\n * 4. No directive:\n * - Treat as a normal shared or server-only module.\n * - No special registration or transformation.\n */\n\n/**\n * Transforms a module for RSC boundaries.\n * - Server modules: exports are wrapped with server references while preserving functionality.\n * - Client modules: exports are replaced with client references or errors, depending on environment.\n * - Only the correct references are exported; implementation is never leaked across boundaries.\n *\n * @param source - The original module source code.\n * @param moduleId - The module's unique identifier.\n * @param url - The module's URL.\n * @param program - The parsed AST.\n * @param map - The source map for the source code.\n * @param isServerFunction - Whether the module is a server function.\n * @param isClientComponent - Whether the module is a client component.\n * @returns The transformed source code.\n */\nexport function transformModuleWithPreservedFunctions(\n source: string,\n moduleId: string,\n program: Program,\n isServerFunction: boolean | RegExpMatchArray | null,\n isClientComponent: boolean | RegExpMatchArray | null\n): string {\n // Check for existing source map\n let sourceMappingURL = null;\n let sourceMappingStart = 0;\n let sourceMappingEnd = 0;\n let sourceMappingLines = 0;\n let originalSourceMap = null;\n\n // Look for source map comment\n const sourceMapMatch = source.match(/\\/\\/[#@] sourceMappingURL=(.+)$/m);\n if (sourceMapMatch) {\n sourceMappingURL = sourceMapMatch[1];\n sourceMappingStart = sourceMapMatch.index!;\n sourceMappingEnd = sourceMapMatch.index! + sourceMapMatch[0].length;\n sourceMappingLines = sourceMapMatch[0].split('\\n').length - 1;\n\n // If it's a data URL, parse it\n if (sourceMappingURL.startsWith('data:application/json;base64,')) {\n const base64 = sourceMappingURL.slice('data:application/json;base64,'.length);\n originalSourceMap = JSON.parse(Buffer.from(base64, 'base64').toString());\n }\n }\n\n // Remove the old source map if present\n let sourceWithoutMap = source;\n if (sourceMappingStart > 0) {\n sourceWithoutMap = source.slice(0, sourceMappingStart) + '\\n'.repeat(sourceMappingLines) + source.slice(sourceMappingEnd);\n }\n\n // Remove directives from source code\n let sourceWithoutDirective = sourceWithoutMap;\n let directiveEnd = 0;\n let hasFileLevelServerDirective = false;\n let hasFileLevelClientDirective = false;\n let hasFunctionLevelClientDirective = false;\n let hasFunctionLevelServerDirective = false;\n\n // Get export names and create module ID literal\n const { exportNames, exports } = handleExports(\n sourceWithoutDirective,\n program,\n isServerFunction,\n isClientComponent\n );\n const moduleIdLiteral = JSON.stringify(moduleId);\n\n // Helper function to check for directives in a node\n function checkForDirective(node: any): string | null {\n if (node.type === \"ExpressionStatement\") {\n if (\"directive\" in node && typeof node.directive === \"string\") {\n return node.directive;\n } else if (\n node.expression.type === \"Literal\" &&\n typeof node.expression.value === \"string\" &&\n (node.expression.value === \"use server\" || node.expression.value === \"use client\")\n ) {\n return node.expression.value;\n }\n }\n return null;\n }\n\n // Check for file-level and function-level directives\n for (const node of program.body) {\n const directive = checkForDirective(node);\n if (directive) {\n if (directive === \"use server\") {\n if (node.start === 0) {\n hasFileLevelServerDirective = true;\n } else {\n hasFunctionLevelServerDirective = true;\n }\n }\n if (directive === \"use client\") {\n if (node.start === 0) {\n hasFileLevelClientDirective = true;\n } else {\n hasFunctionLevelClientDirective = true;\n }\n }\n if (\"start\" in node && \"end\" in node) {\n directiveEnd = Math.max(directiveEnd, node.end);\n }\n }\n\n // Check for function-level server directives in function bodies\n if (node.type === \"ExportNamedDeclaration\" && node.declaration?.type === \"FunctionDeclaration\") {\n const funcNode = node.declaration;\n if (funcNode.body?.body) {\n for (const stmt of funcNode.body.body) {\n const directive = checkForDirective(stmt);\n if (directive === \"use server\") {\n hasFunctionLevelServerDirective = true;\n // Mark this specific function as having a server directive\n const name = funcNode.id?.name;\n if (name) {\n const exportInfo = exports.get(name);\n if (exportInfo) {\n exportInfo.declaration = exportInfo.declaration?.replace(\n /^export\\s+function\\s+/,\n 'export async function '\n );\n exportInfo.isAsync = true;\n }\n }\n break;\n }\n }\n }\n } else if (node.type === \"FunctionDeclaration\") {\n if (node.body?.body) {\n for (const stmt of node.body.body) {\n const directive = checkForDirective(stmt);\n if (directive === \"use server\") {\n hasFunctionLevelServerDirective = true;\n // Mark this specific function as having a server directive\n const name = node.id?.name;\n if (name) {\n const exportInfo = exports.get(name);\n if (exportInfo) {\n exportInfo.declaration = exportInfo.declaration?.replace(\n /^export\\s+function\\s+/,\n 'export async function '\n );\n exportInfo.isAsync = true;\n }\n }\n break;\n }\n }\n }\n } else if (node.type === \"VariableDeclaration\") {\n for (const decl of node.declarations) {\n if (decl.init?.type === \"FunctionExpression\" || decl.init?.type === \"ArrowFunctionExpression\") {\n const body = decl.init.body;\n if (body.type === \"BlockStatement\" && body.body) {\n for (const stmt of body.body) {\n const directive = checkForDirective(stmt);\n if (directive === \"use server\") {\n hasFunctionLevelServerDirective = true;\n const name = decl.id.type === \"Identifier\" ? decl.id.name : undefined;\n if (name) {\n const exportInfo = exports.get(name);\n if (exportInfo) {\n exportInfo.declaration = exportInfo.declaration?.replace(\n /^export\\s+function\\s+/,\n 'export async function '\n );\n exportInfo.isAsync = true;\n }\n }\n break;\n }\n }\n }\n }\n }\n }\n }\n\n // Validate directive combinations\n if (hasFileLevelClientDirective && hasFileLevelServerDirective) {\n throw new Error(`Module ${moduleId} cannot have both \"use client\" and \"use server\" directives`);\n }\n\n if (hasFunctionLevelClientDirective) {\n throw new Error(`Module ${moduleId} cannot have function-level \"use client\" directives - only file-level is allowed`);\n }\n\n // Validate against user's explicit intent\n if (Boolean(isClientComponent) && !hasFileLevelClientDirective) {\n throw new Error(`Module ${moduleId} is marked as a client component but has no \"use client\" directive`);\n }\n\n if (Boolean(isServerFunction) && !hasFileLevelServerDirective && !hasFunctionLevelServerDirective) {\n if(process.env['NODE_ENV'] !== \"production\") {\n console.log(\"Error for file\", moduleId, source);\n }\n throw new Error(`Module ${moduleId} is marked as a server function but has no \"use server\" directive`);\n }\n\n // Remove the directive and any whitespace after it\n if (directiveEnd > 0) {\n sourceWithoutDirective = source.slice(directiveEnd).trim();\n }\n\n // Validate that there are exports to transform if explicitly marked\n if (Boolean(isClientComponent) && exportNames.length === 0) {\n throw new Error(`Module ${moduleId} is marked as a client component but has no exports to transform`);\n }\n\n if (Boolean(isServerFunction) && exportNames.length === 0) {\n throw new Error(`Module ${moduleId} is marked as a server function but has no exports to transform`);\n }\n\n // For client modules in server environment, replace with client references\n if (Boolean(isClientComponent)) {\n const output: string[] = [];\n const mappingInfos: MappingInfo[] = [];\n\n // Add registerClientReference import\n const clientImport = process.env['NODE_ENV'] === 'production'\n ? 'import { registerClientReference } from \"react-server-dom-esm/server\";'\n : 'import { registerClientReference } from \"react-server-dom-esm/server.node\";';\n output.push(clientImport);\n mappingInfos.push({ generatedLine: 1, originalLine: 1, originalColumn: 0 });\n\n // Register each export\n let lineNum = 2;\n for (const name of exportNames) {\n const exportInfo = exports.get(name);\n if (exportInfo) {\n // For default exports, use the localName if available\n const exportName =\n name === \"default\" && exportInfo.localName\n ? exportInfo.localName\n : name;\n if (name === 'default') {\n output.push(\n `export default registerClientReference(function() {` +\n `throw new Error(\"Attempted to call the default export of ${moduleIdLiteral} from the server but it's on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\");` +\n `}, ${moduleIdLiteral}, \"default\");`\n );\n } else {\n output.push(\n `export const ${exportName} = registerClientReference(function() {` +\n `throw new Error(\"Attempted to call ${exportName}() from the server but ${exportName} is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.\");` +\n `}, ${moduleIdLiteral}, ${JSON.stringify(name)});`\n );\n }\n // Create a mapping for each registration line\n mappingInfos.push({ \n generatedLine: lineNum, \n originalLine: exportInfo.loc?.line || 1, \n originalColumn: exportInfo.loc?.column || 0 \n });\n lineNum++;\n }\n }\n\n const newClientSource = output.join(\"\\n\\n\");\n const sourceMapBase64 = generateSourceMap(\n moduleId,\n source,\n output,\n mappingInfos,\n originalSourceMap\n );\n return `${newClientSource}\\n//# sourceMappingURL=${sourceMapBase64}`;\n }\n\n // For server modules in client environment, replace with server references\n if (Boolean(isServerFunction)) {\n // First collect all exports that need registration\n const exportedEntries: Array<{ localName: string; exportedName: string; type: string; loc?: { line: number; column: number } }> = [];\n const localNames = new Set();\n\n // Helper to check if a function has a \"use server\" directive\n function hasServerDirective(node: any): boolean {\n if (hasFileLevelServerDirective) return true;\n if (node.body?.body) {\n for (const stmt of node.body.body) {\n const directive = checkForDirective(stmt);\n if (directive === \"use server\") return true;\n }\n }\n return false;\n }\n\n // First pass: collect exports and remove directives\n let newSource = source;\n let directiveEnd = 0;\n\n for (const node of program.body) {\n // Handle directives\n const directive = checkForDirective(node);\n if (directive === \"use server\" || directive === \"use client\") {\n if (node.start === 0) {\n directiveEnd = node.end;\n } else {\n // Remove function-level directive\n newSource = newSource.slice(0, node.start) + newSource.slice(node.end);\n }\n continue;\n }\n\n // Collect exports that need registration, with loc\n switch (node.type) {\n case 'ExportDefaultDeclaration':\n if (node.declaration.type === 'FunctionDeclaration' && node.declaration.id) {\n const name = node.declaration.id.name;\n if (hasServerDirective(node.declaration)) {\n exportedEntries.push({\n localName: name,\n exportedName: 'default',\n type: 'function',\n loc: node.declaration.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n } else if (node.declaration.type === 'ClassDeclaration' && node.declaration.id) {\n const name = node.declaration.id.name;\n exportedEntries.push({\n localName: name,\n exportedName: 'default',\n type: 'class',\n loc: node.declaration.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n break;\n case 'ExportNamedDeclaration':\n if (node.declaration) {\n if (node.declaration.type === 'FunctionDeclaration' && node.declaration.id) {\n const name = node.declaration.id.name;\n if (hasServerDirective(node.declaration)) {\n exportedEntries.push({\n localName: name,\n exportedName: name,\n type: 'function',\n loc: node.declaration.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n } else if (node.declaration.type === 'ClassDeclaration' && node.declaration.id) {\n const name = node.declaration.id.name;\n exportedEntries.push({\n localName: name,\n exportedName: name,\n type: 'class',\n loc: node.declaration.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n } else if (node.declaration.type === 'VariableDeclaration') {\n for (const decl of node.declaration.declarations) {\n if (decl.id.type === 'Identifier') {\n const name = decl.id.name;\n if (decl.init) {\n if (decl.init.type === 'FunctionExpression' || decl.init.type === 'ArrowFunctionExpression') {\n if (hasServerDirective(decl.init)) {\n exportedEntries.push({\n localName: name,\n exportedName: name,\n type: 'function',\n loc: decl.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n } else {\n // Register non-function values\n exportedEntries.push({\n localName: name,\n exportedName: name,\n type: 'value',\n loc: decl.id.loc?.start || { line: 1, column: 0 }\n });\n localNames.add(name);\n }\n }\n }\n }\n }\n }\n if (node.specifiers) {\n for (const spec of node.specifiers) {\n if (spec.type === 'ExportSpecifier') {\n const localName = spec.local.type === 'Identifier' ? spec.local.name : '';\n const exportedName = spec.exported.type === 'Identifier' ? spec.exported.name : '';\n if (localName && exportedName) {\n // Find the original declaration to check for directive\n const originalDecl = program.body.find(n => \n (n.type === 'FunctionDeclaration' && n.id?.name === localName) ||\n (n.type === 'ClassDeclaration' && n.id?.name === localName) ||\n (n.type === 'VariableDeclaration' && n.declarations.some(d => \n d.id.type === 'Identifier' && d.id.name === localName\n ))\n );\n let loc = { line: 1, column: 0 };\n if (originalDecl) {\n if (originalDecl.type === 'FunctionDeclaration' && hasServerDirective(originalDecl)) {\n loc = originalDecl.id?.loc?.start || loc;\n exportedEntries.push({\n localName,\n exportedName,\n type: 'function',\n loc\n });\n localNames.add(localName);\n } else if (originalDecl.type === 'ClassDeclaration') {\n loc = originalDecl.id?.loc?.start || loc;\n exportedEntries.push({\n localName,\n exportedName,\n type: 'class',\n loc\n });\n localNames.add(localName);\n } else if (originalDecl.type === 'VariableDeclaration') {\n // Find the right declaration\n const decl = originalDecl.declarations.find(d => d.id.type === 'Identifier' && d.id.name === localName);\n loc = decl?.id?.loc?.start || loc;\n exportedEntries.push({\n localName,\n exportedName,\n type: 'value',\n loc\n });\n localNames.add(localName);\n }\n }\n }\n }\n }\n }\n break;\n }\n }\n\n // Remove file-level directive if present\n if (directiveEnd > 0) {\n newSource = newSource.slice(directiveEnd).trim();\n }\n\n // Add import and registrations\n const lines: string[] = [];\n const mappingInfos: MappingInfo[] = [];\n \n // Add import statement\n const serverImport = process.env['NODE_ENV'] === 'production' \n ? 'import { registerServerReference } from \"react-server-dom-esm/server\";'\n : 'import { registerServerReference } from \"react-server-dom-esm/server.node\";';\n lines.push(serverImport);\n mappingInfos.push({ generatedLine: 1, originalLine: 1, originalColumn: 0 });\n\n // Add the original source code\n lines.push(newSource);\n mappingInfos.push({ generatedLine: 2, originalLine: 1, originalColumn: 0 });\n\n // Add registrations after the source code\n let lineNum = lines.length + 1;\n for (const entry of exportedEntries) {\n lines.push(`registerServerReference(${entry.localName}, ${JSON.stringify(moduleId)}, ${JSON.stringify(entry.exportedName)});`);\n // Create a mapping for each registration line\n mappingInfos.push({ \n generatedLine: lineNum, \n originalLine: entry.loc?.line || 1, \n originalColumn: entry.loc?.column || 0 \n });\n lineNum++;\n }\n\n const newTransformedSource = lines.join('\\n');\n const sourceMapBase64 = generateSourceMap(\n moduleId,\n source,\n lines,\n mappingInfos,\n originalSourceMap\n );\n return `${newTransformedSource}\\n//# sourceMappingURL=${sourceMapBase64}`;\n }\n\n // For non-server, non-client modules, return as is\n return sourceWithoutMap;\n}\n"],"names":["directive","directiveEnd"],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../plugin/config/getCondition.ts","../plugin/index.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/rollup/dist/rollup.d.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/rollup/dist/parseAst.d.ts","../node_modules/vite/types/hmrPayload.d.ts","../node_modules/vite/types/customEvent.d.ts","../node_modules/vite/types/hot.d.ts","../node_modules/vite/dist/node/moduleRunnerTransport.d-DJ_mE5sf.d.ts","../node_modules/vite/dist/node/module-runner.d.ts","../node_modules/esbuild/lib/main.d.ts","../node_modules/source-map-js/source-map.d.ts","../node_modules/postcss/lib/previous-map.d.ts","../node_modules/postcss/lib/input.d.ts","../node_modules/postcss/lib/css-syntax-error.d.ts","../node_modules/postcss/lib/declaration.d.ts","../node_modules/postcss/lib/root.d.ts","../node_modules/postcss/lib/warning.d.ts","../node_modules/postcss/lib/lazy-result.d.ts","../node_modules/postcss/lib/no-work-result.d.ts","../node_modules/postcss/lib/processor.d.ts","../node_modules/postcss/lib/result.d.ts","../node_modules/postcss/lib/document.d.ts","../node_modules/postcss/lib/rule.d.ts","../node_modules/postcss/lib/node.d.ts","../node_modules/postcss/lib/comment.d.ts","../node_modules/postcss/lib/container.d.ts","../node_modules/postcss/lib/at-rule.d.ts","../node_modules/postcss/lib/list.d.ts","../node_modules/postcss/lib/postcss.d.ts","../node_modules/postcss/lib/postcss.d.mts","../node_modules/vite/types/internal/lightningcssOptions.d.ts","../node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../node_modules/vite/types/importGlob.d.ts","../node_modules/vite/types/metadata.d.ts","../node_modules/vite/dist/node/index.d.ts","../node_modules/@types/react-dom/client.d.ts","../node_modules/@types/react-dom/server.d.ts","../plugin/worker/types.ts","../plugin/types.ts","../plugin/components/css-collector-elements.tsx","../plugin/components/css-collector.tsx","../plugin/components/html.tsx","../plugin/config/defaults.tsx","../plugin/config/resolveAutoDiscoverMatcher.ts","../plugin/preserver/plugin.ts","../types.ts","../plugin/root.ts","../plugin/helpers/inputNormalizer.ts","../plugin/config/extMap.ts","../plugin/config/resolveOptions.ts","../plugin/config/resolveUserConfig.ts","../plugin/config/resolveUrlOption.ts","../plugin/config/autoDiscover/resolveBuildPages.ts","../plugin/config/resolvePages.ts","../plugin/helpers/tryManifest.ts","../plugin/config/autoDiscover/createGlobAutoDiscover.ts","../plugin/config/autoDiscover/customWorkerFiles.ts","../plugin/config/autoDiscover/pageAndPropFiles.ts","../plugin/config/autoDiscover/resolveAutoDiscover.ts","../plugin/helpers/cleanObject.ts","../plugin/helpers/serializeUserOptions.ts","../plugin/config/mimeTypes.ts","../plugin/helpers/requestInfo.ts","../plugin/config/getPaths.ts","../plugin/error/toError.ts","../plugin/worker/createWorker.ts","../plugin/react-client/restartWorker.ts","../plugin/react-client/createMessageHandlers.ts","../plugin/react-client/createWorkerStream.ts","../plugin/react-client/handleWorkerRscStream.ts","../plugin/helpers/getRouteFiles.ts","../plugin/helpers/handleServerAction.ts","../plugin/react-client/handleWorkerServerAction.ts","../plugin/react-client/configureWorkerRequestHandler.ts","../plugin/react-static/configurePreviewServer.ts","../plugin/react-client/plugin.ts","../plugin/config/resolveEnv.ts","../plugin/env/plugin.ts","../plugin/plugin.client.ts","../server.ts","../plugin/helpers/moduleRefs.ts","../plugin/react-static/temporaryReferences.ts","../plugin/react-static/createBuildLoader.ts","../plugin/helpers/metrics.ts","../plugin/helpers/resolvePage.ts","../plugin/helpers/resolveProps.ts","../plugin/helpers/resolvePageAndProps.ts","../plugin/vendor/vendor.server.ts","../plugin/helpers/createRscStream.tsx","../plugin/helpers/createHandler.ts","../plugin/react-static/renderStreams.ts","../plugin/react-static/rscToHtmlStream.ts","../plugin/react-static/fileWriter.ts","../plugin/react-static/collectHtmlWorkerContent.ts","../plugin/react-static/collectRscContent.ts","../plugin/react-static/renderPage.ts","../plugin/react-static/renderPages.ts","../plugin/helpers/getBundleManifest.ts","../plugin/helpers/collectManifestCss.ts","../plugin/helpers/createCssProps.tsx","../plugin/utils/urls.ts","../plugin/utils/envUrls.node.ts","../plugin/react-static/plugin.ts","../plugin/helpers/moduleResolver.ts","../node_modules/acorn/dist/acorn.d.mts","../plugin/loader/types.ts","../plugin/loader/handleExports.ts","../plugin/source-map/createMappingsSerializer.ts","../plugin/loader/transformModuleWithPreservedFunctions.ts","../node_modules/acorn-loose/dist/acorn-loose.d.mts","../plugin/loader/parse.ts","../plugin/loader/transformModuleIfNeeded.ts","../plugin/transformer/plugin.server.ts","../plugin/helpers/createEventHandler.ts","../plugin/helpers/collectViteModuleGraphCss.ts","../plugin/react-server/handleServerAction.ts","../plugin/react-server/configureReactServer.ts","../plugin/react-server/plugin.ts","../plugin/plugin.server.ts","../plugin/plugin.ts","../plugin/process-env.ts","../plugin/components/index.ts","../plugin/config/createModuleID.ts","../plugin/config/autoDiscover/index.ts","../plugin/config/index.ts","../plugin/env/index.ts","../plugin/file-preserver/plugin.ts","../plugin/helpers/collectBundleManifestCss.ts","../plugin/helpers/defaultFileWriter.ts","../plugin/helpers/formatMetrics.ts","../plugin/helpers/requestToRoute.ts","../plugin/helpers/stashReturnValue.ts","../plugin/helpers/index.ts","../plugin/types/sourceMap.d.ts","../plugin/helpers/sourceMap.ts","../plugin/loader/createDefaultLoader.ts","../plugin/utils/env.ts","../plugin/loader/css-loader.development.ts","../plugin/loader/css-loader.production.ts","../plugin/loader/env-loader.development.ts","../plugin/loader/index.ts","../plugin/loader/react-loader.client.ts","../plugin/loader/react-loader.server.ts","../plugin/loader/react-loader.ts","../plugin/loader/sourceMap.ts","../plugin/metrics/formatMetrics.ts","../plugin/metrics/index.ts","../plugin/preserver/index.ts","../plugin/react-client/index.ts","../plugin/react-server/index.ts","../plugin/react-static/index.ts","../plugin/react-static/streamHandler.ts","../plugin/react-static/types.ts","../plugin/source-map/readMappings.ts","../plugin/transformer/index.ts","../plugin/transformer/plugin.client.ts","../plugin/transformer/plugin.ts","../plugin/transformer/types.ts","../plugin/types/css-tracking.ts","../plugin/types/env.d.ts","../plugin/types/global.d.ts","../plugin/types/react-server-dom-esm.d.ts","../plugin/types/webpack-sources.d.ts","../plugin/utils/createCallServer.ts","../plugin/utils/callServer.ts","../plugin/utils/createReactFetcher.ts","../plugin/utils/envUrls.ts","../plugin/utils/index.ts","../plugin/utils/moduleBaseURL.ts","../plugin/vendor/vendor.ts","../plugin/vendor/index.ts","../plugin/vendor/types.ts","../plugin/vendor/vendor.client.ts","../plugin/worker/registerLoaders.ts","../plugin/worker/sendMessage.ts","../plugin/worker/html/types.ts","../plugin/worker/html/createHtmlWorkerRenderState.tsx","../plugin/worker/html/messageHandler.tsx","../plugin/worker/html/html-worker.production.tsx","../plugin/worker/html/html-worker.development.tsx","../plugin/worker/html/html-worker.ts","../plugin/worker/html/index.ts","../plugin/worker/rsc/state.ts","../plugin/worker/rsc/handleRender.ts","../plugin/worker/rsc/userOptions.ts","../plugin/worker/rsc/handlers.ts","../plugin/worker/rsc/messageHandler.tsx","../plugin/worker/rsc/rsc-worker.production.ts","../node_modules/tsx/dist/types-Cxp8y2TL.d.ts","../node_modules/tsx/dist/esm/api/index.d.mts","../plugin/worker/rsc/rsc-worker.development.ts","../plugin/worker/rsc/index.ts","../plugin/config/resolveDevServerConfig.tsx","../plugin/worker/rsc/rsc-worker.tsx","../index.ts","../client.ts","../package.json","../node_modules/vite/types/importMeta.d.ts","../node_modules/vite/client.d.ts","../node_modules/@types/react/canary.d.ts","../node_modules/@types/react-dom/index.d.ts","../node_modules/@types/react-dom/canary.d.ts"],"fileIdsList":[[76,118,204,244,327],[76,118,204,327],[76,118,327],[76,115,118,327],[76,117,118,327],[118,327],[76,118,123,153,327],[76,118,119,124,130,131,138,150,161,327],[76,118,119,120,130,138,327],[71,72,73,76,118,327],[76,118,121,162,327],[76,118,122,123,131,139,327],[76,118,123,150,158,327],[76,118,124,126,130,138,327],[76,117,118,125,327],[76,118,126,127,327],[76,118,130,327],[76,118,128,130,327],[76,117,118,130,327],[76,118,130,131,132,150,161,327],[76,118,130,131,132,145,150,153,327],[76,113,118,166,327],[76,113,118,126,130,133,138,150,161,327],[76,118,130,131,133,134,138,150,158,161,327],[76,118,133,135,150,158,161,327],[74,75,76,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,162,163,164,165,166,167,327],[76,118,130,136,327],[76,118,137,161,327],[76,118,126,130,138,150,327],[76,118,139,327],[76,118,140,327],[76,117,118,141,327],[76,115,116,117,118,119,120,121,122,123,124,125,126,127,128,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,162,163,164,165,166,167,327],[76,118,143,327],[76,118,144,327],[76,118,130,145,146,327],[76,118,145,147,162,164,327],[76,118,130,150,151,153,327],[76,118,152,153,327],[76,118,150,151,327],[76,118,153,327],[76,118,154,327],[76,115,118,150,327],[76,118,130,156,157,327],[76,118,156,157,327],[76,118,123,138,150,158,327],[76,118,159,327],[76,118,138,160,327],[76,118,133,144,161,327],[76,118,123,162,327],[76,118,150,163,327],[76,118,137,164,327],[76,118,165,327],[76,118,123,130,132,141,150,161,164,166,327],[76,118,150,167,327],[69,76,118,327,366],[69,76,118,327],[69,76,118,201,327],[67,68,76,118,327],[76,118,270,327],[76,118,191,327],[76,118,189,191,327],[76,118,180,188,189,190,192,327],[76,118,178,327],[76,118,181,186,191,194,327],[76,118,177,194,327],[76,118,181,182,185,186,187,194,327],[76,118,181,182,183,185,186,194,327],[76,118,178,179,180,181,182,186,187,188,190,191,192,194,327],[76,118,194,327],[76,118,176,178,179,180,181,182,183,185,186,187,188,189,190,191,192,193,327],[76,118,176,194,327],[76,118,181,183,184,186,187,194,327],[76,118,185,194,327],[76,118,186,187,191,194,327],[76,118,179,189,327],[70,76,118,199,200,327],[66,70,76,118,327],[76,118,166,327,354],[76,85,89,118,161,327],[76,85,118,150,161,327],[76,80,118,327],[76,82,85,118,158,161,327],[76,118,138,158,327],[76,118,168,327],[76,80,118,168,327],[76,82,85,118,138,161,327],[76,77,78,81,84,118,130,150,161,327],[76,85,92,118,327],[76,77,83,118,327],[76,85,106,107,118,327],[76,81,85,118,153,161,168,327],[76,106,118,168,327],[76,79,80,118,168,327],[76,85,118,327],[76,79,80,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,118,327],[76,85,100,118,327],[76,85,92,93,118,327],[76,83,85,93,94,118,327],[76,84,118,327],[76,77,80,85,118,327],[76,85,89,93,94,118,327],[76,89,118,327],[76,83,85,88,118,161,327],[76,77,82,85,92,118,327],[76,118,150,327],[76,80,85,106,118,166,168,327],[76,118,327,363],[70,76,118,130,131,133,134,135,138,150,158,161,167,168,169,170,171,173,174,175,195,196,197,198,199,200,327],[76,118,170,171,172,173,327],[76,118,170,327],[76,118,171,327],[76,118,172,198,327],[70,76,118,200,327],[69,76,118,204,327],[69,76,118,204,205,327],[76,118,204,205,206,207,327],[76,118,132,140,204,327],[76,118,204,212,327],[76,118,218,221,222,223,224,327],[76,118,140,200,204,218,219,220,221,222,223,327],[76,118,132,140,204,217,327],[76,118,140,204,214,327],[76,118,206,207,327],[76,118,204,208,327],[64,76,118,208,215,216,219,229,289,327],[64,76,118,200,208,327],[70,76,118,140,199,200,204,206,208,209,212,213,214,327],[70,76,118,140,199,200,204,208,327],[76,118,243,327],[76,118,200,208,212,242,327],[76,118,200,327],[70,76,118,132,140,199,200,327],[76,118,200,204,265,327],[76,118,140,204,226,245,327],[76,118,204,245,254,327],[76,118,141,204,253,327],[70,76,118,199,200,204,327],[76,118,204,217,327],[76,118,150,200,230,327],[76,118,213,220,225,226,228,236,246,249,250,251,252,254,255,263,264,265,279,280,293,294,295,296,297,327],[76,118,140,200,204,208,327],[76,118,150,202,204,327],[76,118,140,200,204,227,327],[76,118,230,327],[76,118,204,250,251,327],[76,118,200,204,225,327],[76,118,140,299,327],[76,118,132,140,200,327],[64,76,118,327],[76,118,131,175,204,273,277,327],[76,118,132,137,161,166,200,203,204,215,298,302,327],[76,118,132,137,161,166,204,327],[76,118,137,166,200,203,204,327],[76,118,270,271,327],[76,118,271,275,327],[70,76,118,140,161,166,199,200,203,204,215,277,298,327],[76,118,140,273,299,327],[64,76,118,208,274,276,327],[76,118,271,272,273,327],[76,118,204,311,327],[76,118,200,210,211,241,243,327],[76,118,200,204,210,243,268,278,283,327],[76,118,210,327],[66,70,76,118,140,200,204,208,209,327],[76,118,141,150,153,166,200,203,204,226,228,232,235,236,238,327],[76,118,200,203,327],[76,118,166,200,203,204,230,233,327],[76,118,166,200,203,234,327],[76,118,166,200,203,230,237,327],[76,118,241,327],[76,118,166,200,204,215,216,224,239,240,327],[76,118,166,200,208,211,226,231,327],[69,76,118,133,200,204,228,230,236,252,255,279,280,281,327],[76,118,133,140,200,204,230,253,327],[76,118,283,327],[64,76,118,141,200,204,215,216,224,240,263,282,327],[76,118,150,204,249,257,258,327],[76,118,132,140,150,204,249,258,327],[76,118,131,132,140,151,200,204,228,327],[70,76,118,140,199,200,230,245,246,247,327],[76,118,131,132,140,150,204,327],[76,118,268,327],[64,76,118,132,140,141,166,200,204,208,215,216,224,226,231,248,262,263,264,265,267,327],[76,118,204,249,252,256,259,260,327],[76,118,150,204,249,261,327],[69,76,118,204,255,327],[76,118,150,166,200,203,204,327],[76,118,140,161,327],[76,118,278,327],[76,118,140,200,204,215,220,230,269,277,327],[69,70,76,118,150,166,199,200,203,327],[69,76,118,150],[76,118,302,327,329],[69,76,118,266,302,327,329],[76,118,266,327],[76,118,266,302,327],[76,118,266,302,327,329,330,331],[76,118,302,327],[76,118,327,335],[76,118,137,140,166,327],[64,69,76,118,140,166,200,203,208,212,229,230,327],[69,76,118,140,150,166,203,204,327,338,341],[76,118,166,203,327,343],[76,118,327,344,345],[76,118,166,203,230,327,341,342],[76,118,150,204,327],[76,118,131,137,161,166,327],[76,118,140,141,150,166,203,204,206,252,253,254,327,348],[76,118,140,150,203,230,253,327,340,348,350],[76,118,327,353,356],[76,118,166,203,230,327,348,349,351],[76,118,137,140,166,203,212,230,327,352,355],[76,118,137,140,166,203,212,327,352],[76,118,140,150,166,204,265,327],[76,118,166,290,298,327],[76,118,166,203,225,327],[76,118,166,202,204,327],[76,118,204,284,327]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c187accb8fa670f4c034b09312e3bccf804dc7e9a3715960344b581696f8f68","signature":"de50040b53a6deebdd2fe0cbc34cc14de27a89e34179eab95bcb3f2105ea0c36","impliedFormat":99},{"version":"fe5cfafc5e78fe1d4945f5b2df060f4d80707d59a4ddd4e583c9fbcd651e1d90","signature":"e1a156cda2f6c358954db22319cbde8b0977c70151ecb3b139a91434ec097251","impliedFormat":99},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"742d4b7b02ffc3ba3c4258a3d196457da2b3fec0125872fd0776c50302a11b9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"8a3fdc84d91c2c7321fd2f8dba2ea90249cfdc31427ac71b5735dd51bc25cf91","impliedFormat":1},{"version":"a02d26c056491b1ddfa53a671ad60ce852969b369f0e71993dbac8ddcf0d038b","affectsGlobalScope":true,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"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":"3b724a66c071d616203133f8d099a0cb881b0b43fd42e8621e611243c5f30cd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc","impliedFormat":1},{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"b200675fd112ffef97c166d0341fb33f6e29e9f27660adde7868e95c5bc98beb","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a0a1dda070290b92da5a50113b73ecc4dd6bcbffad66e3c86503d483eafbadcf","impliedFormat":1},{"version":"59dcad36c4549175a25998f6a8b33c1df8e18df9c12ebad1dfb25af13fd4b1ce","impliedFormat":1},{"version":"9ba5b6a30cb7961b68ad4fb18dca148db151c2c23b8d0a260fc18b83399d19d3","impliedFormat":1},{"version":"3f3edb8e44e3b9df3b7ca3219ab539710b6a7f4fe16bd884d441af207e03cd57","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"8cf7e92bdb2862c2d28ba4535c43dc599cfbc0025db5ed9973d9b708dcbe3d98","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a410a7fa4baf13dd45c9bba6d71806027dc0e4e5027cdf74f36466ae9b240b7","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"8c2ad42d5d1a2e8e6112625767f8794d9537f1247907378543106f7ba6c7df90","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"12e8ce658dd17662d82fb0509d2057afc5e6ee30369a2e9e0957eff725b1f11d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"5ef7f1f136a42a18665a95e7346a93576758b573892af66e2c8a2a154718e5fc","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"63b05afa6121657f25e99e1519596b0826cda026f09372c9100dfe21417f4bd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","impliedFormat":1},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"11443a1dcfaaa404c68d53368b5b818712b95dd19f188cab1669c39bee8b84b3","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"035d0934d304483f07148427a5bd5b98ac265dae914a6b49749fe23fbd893ec7","impliedFormat":99},{"version":"e2ed5b81cbed3a511b21a18ab2539e79ac1f4bc1d1d28f8d35d8104caa3b429f","impliedFormat":99},{"version":"dd7ca4f0ef3661dac7043fb2cdf1b99e008d2b6bc5cd998dd1fa5a2968034984","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"33f3718dababfc26dfd9832c150149ea4e934f255130f8c118a59ae69e5ed441","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":"1bb61aa2f08ab4506d41dbe16c5f3f5010f014bbf46fa3d715c0cbe3b00f4e1c","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"e42820cd611b15910c204cd133f692dcd602532b39317d4f2a19389b27e6f03d","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":1},{"version":"7870becb94cbc11d2d01b77c4422589adcba4d8e59f726246d40cd0d129784d8","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"f70b8328a15ca1d10b1436b691e134a49bc30dcf3183a69bfaa7ba77e1b78ecd","impliedFormat":1},{"version":"ff3660e2664e6096196280deb4e176633b1bb1e58a7dcc9b021ec0e913a6f96f","impliedFormat":99},{"version":"88e9caa9c5d2ba629240b5913842e7c57c5c0315383b8dc9d436ef2b60f1c391","impliedFormat":1},{"version":"270b1a4c2aa9fd564c2e7ec87906844cdcc9be09f3ef6c49e8552dff7cbefc7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"81570642cfc04585f0c96634047a622de344edc676e00f42fd7076311c3ecb80","signature":"36a85ab9f5d3a8b59a55418e4a6bcc812f8584a0d0ccfb89722aa11007afc71a","impliedFormat":99},{"version":"98e33971b57f5904fa24a1dbb96a4b269b6aeba2a585d5fa62a0a0266ef9c902","signature":"6e2dacb7bc2f2b54b4e14629b22a22fc6a2cb0dd17668352db77d7144944e267","affectsGlobalScope":true,"impliedFormat":99},{"version":"758ea119b9e2d7f9583088752a400de74769c978e82cd53e62ceaa4a310cdae4","signature":"e16fbd6cb85516e9fac677468066899240b7bc9bb5b42c977c954d6184ed4037","impliedFormat":99},{"version":"62464291c9e63b017acf3386ce0f76334525afa3284c8c7d24575dc5e021d6a9","signature":"520efb6fc76a88f4b0eecba65936b1fdeb4a418e397929f79da611ab468578a7","impliedFormat":99},{"version":"bc5ca61098ddec56245495d67460f09aa6387b411ed5d0426b82561e2106ae19","signature":"ad79b48d63f528de4b2a6f4863f8e168d00689f5a85076d8b46c8669e0a7e242","impliedFormat":99},{"version":"2a56fe3f813bae1e84b1a77ebb77fcdf96781f78c8d2b9c4f2c62ad24e14a276","signature":"81cf1e74b703b57d9c6cf4dc183400a6daa3815f39469af807790363068a1a2f","impliedFormat":99},{"version":"48ab3e0c6608e82725ddf243d5c3e58c63ad7731d2acab7c07ace20e3cd2f1fa","signature":"caa7b81f3e7cfbb81056c07b0a94040d012fcfd9b49f310f5774f70a4299fd40","impliedFormat":99},{"version":"e79a079098b1d52ef58259fd8392991efde98eefbede9eee77e867e03a6088cf","signature":"653a4add9e678a763027090675b0df78c68e21797593b733b49a1730c3ffb138","impliedFormat":99},{"version":"31e4e01c6102bb98f8a318c0e50c6fe814c132d25afc98e6596665f5eeeb5d22","signature":"045ec455f101e5076d8cbf56a084eeb4b6523aaadbab52fac5341948b82a3a41","impliedFormat":99},{"version":"f6cb888903787fcbb164ef3f69d85adf353cbe609502bdfb33d2fab3a6e3e1c1","signature":"71b23f2256a666af24576627870abb2debfedae51b604052c4c35c2d0363e9b2","impliedFormat":99},{"version":"2d81a4196cf12ead48219924f1d5e5999dd73f16602b6270daed924e421e34eb","signature":"a67887c4d32ae926128fa469de540b61684d22daf6014a5e17e5853259630150","impliedFormat":99},{"version":"8b8b4975430d408d7782eb1b453b88f194c7a81367d7e8167e806f422086f30c","signature":"20ad9df604325514cdc47029569a3b994378587aaaa8885a82dd715481a4657c","impliedFormat":99},{"version":"c6dd89562a486b577c486bd4c28e6a384b5bc69fc1783dc72be152098e4a4d4f","signature":"bca383b0be8848efe2a7bf6788d705da07d9cf9c1add48063b9cc9b8fc27d7cc","impliedFormat":99},{"version":"21bcba774a882fda4703219252da7fbfa0c5319b341f6e3582627a0554303c22","signature":"89b3d9fdef612746edd399d86929f4205a90e017234ef31b8ac00631beef8cf9","impliedFormat":99},{"version":"e34b18e8683c8b3a47637ca2f5135fa5f7a48d840840d7b59e27d107406da945","signature":"b2dd07b8816193dade66462c3615d1fa167df45323af0b1e16b0f655c6ffe5fb","impliedFormat":99},{"version":"d6b0a766eee764a816f8cd79bd5bf7a13be1d6a13331d935d80803a935a575c1","signature":"85ad537ff1a83cd20ef52ff958ca5779c142690572c3b051d52d3be732f05ba2","impliedFormat":99},{"version":"95431db78d5732cd6fbedcb4a7e45a6d1f772c869e3428766fe035635ada0282","signature":"421a6bb0d699c39028c24429b254566af9b15676a6a5005370f24cdbae473752","impliedFormat":99},{"version":"03d814d42f3c3762836086a8255ad990c955a76a2ebb8137d2ac4a244972fb44","signature":"6d6beb6fe224756b1bab3811d955fd4f039f28a8cd6bda771ee9938507f81e9e","impliedFormat":99},{"version":"00e7ed8aa74ba5c21df189cedb978b1aebcd0a3107080c8ef99369aa56858b12","signature":"02612ddfa081cc79f29425768e7ccb72858f978818fb5ee5a68023ee7b608b58","impliedFormat":99},{"version":"8a9c9d8c8b7a63e9da7f1907f1d1d9f80daf1fdea241e91774f6c3b7d0ae773f","signature":"580b6cf714decc0b15e3ad19d40fdfb994897543149da0f4914930a614614e79","impliedFormat":99},{"version":"a167745e64d308ae296170cdbbebf2a2554ec1945f3fe818876a94ae7b197e66","signature":"906465c653dc7211f528401d158694999c28fdfb8e353a31812a42f499e02744","impliedFormat":99},{"version":"26c3d2838143600b60db4966916bb3f67b97ee7eb4a46bd3ed29d79a6b4255b7","signature":"4741367318cfd126a9dda8b9f86d9684e0095b6b84949f777b897afd9abaa1e8","impliedFormat":99},{"version":"fdabba37eeab3972f9c6db4f8b7d55f6ee6935c9af788f5bca7f277c44092615","signature":"57dc75e28e69996d20101bdf61ae2aa7771adfb25a85ee0a8131257b6ceb1ec0","impliedFormat":99},{"version":"33cd52f0de0aeaca5a2de0643e4d56c0022e92dccab73be09581740704f86108","signature":"1e366185ec0033d4b59516231f944ea0397a1e96496c7148c9d64f5e6b8d8bde","impliedFormat":99},{"version":"343400e3434e27d5171cfbc89602226b5aa789044cfb180038541cba370e2392","signature":"d9d99a790053359670923a833510fe97e1a352fc5d3ae724fdcc396a42dfbe64","impliedFormat":99},{"version":"63063bbf8fc64cd227b0c0fc21b7d9a7f10516480030ea60506698ae8d65e1d4","signature":"e695294ccccd3605bafd2278b3faee3f23f70a403e3997316bb481480635951b","impliedFormat":99},{"version":"252046cf3f91f8461a11840e21c9dcd7ec21940095497ac94eb3d81e71717476","signature":"734704815bccc38c1baa2afe14df957f766f16d6aedd85733e7f710e61c3851b","impliedFormat":99},{"version":"0040cbe99a8a702969ca7572960d9deb78776c394c81f7684392838a2c704977","signature":"332003466545f71755f0b16d3d0fcd865624c5caf3f8c1e0017af556acee3a39","impliedFormat":99},{"version":"db981f99f37a681680d954434a09525c5a8b8da8919360a49a1adc824854a4cf","signature":"cd851118fdc03884e734a41ef8bd00c9a152b5fb3e83a5b1c349014c1ef2c616","impliedFormat":99},{"version":"9b9022e1adb31560619ba7b60b32ceda8c954bdb3dcc0047360eabf2e5df2f9b","signature":"cf72bddef7cd2f5e3f3bfab906aab876886e74616fdc795215b070ad6d5a7f49","impliedFormat":99},{"version":"89a5e32f26c8caaa4c35a9e915ec6df6d70e583a45be19bc5ea42a55cd4e6392","signature":"869cd5ce81c3a503fb46afde1b57b7b999093423830a31a0ca9bd12116cdae7b","impliedFormat":99},{"version":"142faf7e85ab32d392ccf6caf349c2df17b0059ffe36c91d390a18a8287debb2","signature":"6c900d4a013cd1bbe1727a368bd48912ce004e53b25ed41206a6353144e764a3","impliedFormat":99},{"version":"3b0ec52a94fc545b1bf2dcca92a8807c9ce872400b1af95a6e7f5800515bd68e","signature":"8b6c92b00d329aab90331446bfb02eee5703356fb8a41b4ddf2c7432b5b10bb3","impliedFormat":99},{"version":"0bdba16b0573d3db26221557ebd3fa7955de43357f6e6f5b8f5d0ffaf604ffdc","signature":"e8eb8e171dfde89e8668ee99ce29bcbd1f2d9b66200039e1d8b5c6218a7c9538","impliedFormat":99},{"version":"7165682fcd216223bc581368791a54d0b45a84a7f1fd332c46fe3764b67f283f","signature":"44fd923b58c658f18a349ca58dc04ab0c48582e78259000d4a70798eea55c201","impliedFormat":99},{"version":"7b66054ed8dcbe6c1f2d1f329082eb272b2a4d1047c354aceaaf191d64d3c267","signature":"beeed395bcfc88d4d0747843ba41fc7917c744ec55db798d45a73605805846df","impliedFormat":99},{"version":"15d0033bb5c8bb1bee81bf3dbc94ca6c89e95b48e42843241a9375c4b0c247d8","signature":"19ef32328bb9ef33bc52c1e4faefdf512b2d61843c54943145c4f2ec8b8235ca","impliedFormat":99},{"version":"d0d137824aa340759702d4b652b53b020c20f966f39ee1d456dce9975204f479","signature":"7781f294f43dd7a9424005041bb96620e4f1db0dc46d2f86c055ab13bb4acb0a","impliedFormat":99},{"version":"76bf43a27265b0f91633a47637a45be1bfc1e6d3245f977fff011b9e5b03461b","signature":"794fff1e671cc4195611c60757a1f8c94166252d2c28960242e0c9347070910d","impliedFormat":99},{"version":"1d4ce280003167150bf7d807ea8b54040c97ff3940d8700e0302f158262ed93d","signature":"a7dca8b39352b5848bbe74d7d80ff54a705aa9f6963aa9ab10c5854498d51fd7","impliedFormat":99},{"version":"c061190374716b5c9eecad6ca02af3c032ff344870044d7bd65e5ab8660b5927","signature":"7bd09dbc137795f7231ed123203448aa70fde633e1fb878a3a652d4bb3c95c06","impliedFormat":99},{"version":"5e90161343a856c58f78e46c26a3823a21b538739453502573fba0abb5418697","signature":"8d36c16410fda39a93485bb1b5102a7eafb584bf4993bc8fb8c1b593ad4ea4d6","impliedFormat":99},{"version":"e56423820f8c3c1058f1be5ec0767f7c02d93668f1bc896eddad750d44ab09e4","signature":"5fc0fe556808c7234157505fe99a2b124f3f77d0588457c4c4ff3a6fc2669765","impliedFormat":99},{"version":"25004502bd030ade6ec3b21f2ca2929772908c0c5f1aec0436e1ac7b0bb4d6ef","signature":"9d023989760bf05cc9ab456d2f0c5c192a134e65a547800e81b65ea4a7e79cd7","impliedFormat":99},{"version":"cebc6f94f8156c8079b7306124ea59b88c1230302ad6ff0caf1d3902ffb02779","signature":"fcbb5f1a0bcf14fb67cf4dab2fde5bfeeedafc73bc90eb26de94c513e5ea906f","impliedFormat":99},{"version":"bc32b5d139b006fdf0df3535cfabb04b58479c14c70b537079f50952eeae1f7c","signature":"caebb4a85c86ebced3b23c18239de4ab2ad41b70c7f82daff525dbc073f6901b","impliedFormat":99},{"version":"34232d7990d74874d290db370aabc67b1a233b1c90bf3673e1e7c104ac69b06e","signature":"e2c4699dddc9033dfe43398956fcc7ac360816ffd89235964d83a151f587ea3c","impliedFormat":99},{"version":"19ce07a4da4651e6f44e69f99b6d1f6d05e66f255b7007ed5553dd2652ac6ffb","signature":"15f59f5f2cdac7afcc21bc97af2852f8db553eb5d0c1048fb665145bf97a25e9","impliedFormat":99},{"version":"c48ea3d2079e2e940389a67fc88869ea47fa0b0fa7076e1e18e2d9d84d4d55a4","signature":"5f2e3749833e8d5ed58df95c3c50837619181d78e72fc50da547d408284ed3b7","impliedFormat":99},{"version":"9eee8e3439d921475e9336277fc406608af37eb3069c5c23ce31231fa09cc33f","signature":"cb5517e60fa4df036d42457710c09b8a1641440c43ad75551c1ad5a43941c6b7","impliedFormat":99},{"version":"69db7957667fe79850bfed052f77a27c5a9577a7a9f11e7a4bbea3f1d80c56cc","signature":"da2f18bf6c3a343c17860f0b914bd2345334e33e43301a629545d3b0a3e5be2f","impliedFormat":99},{"version":"ee3251a708d2457190103fd59da29374430a16bd4d5143c03a05b6012b2b6b7e","signature":"97378325be911ed38092b6000bf28b76b33f76f25b6daa92cd5a1cd691422fc7","impliedFormat":99},{"version":"f49d2d854fb24b8649758313f99025ef81c5425e10b13b13923543580165b890","signature":"79d523464c91f1ea79fe6faf2d8804bbb7675f978274c6ce7ce77e3c5b1abc96","impliedFormat":99},{"version":"a3daf4c5696eb7ec55c0f9de83dcc8e9155fdcc0135da90a98ec1139ed644429","signature":"1aa9899ab9027236cadae0b76d2d6bf980f338c5ddecdd558b3a3a15a156def4","impliedFormat":99},{"version":"9af7b25c0ba085968b6d59a08ad07b2920c0bc57798155fe563a98277c7279ef","signature":"ba095ce85423a35815243abb2d035c4fb41861337bdbe325e0d827a72614b019","impliedFormat":99},{"version":"cc2cbfcd09eb7dd2861c838f2f6bd22abd0247d55a86a48162fca8af3976b273","signature":"78c8f157067470ab43c0d16101e710e389ae1c9ed6c1ceda3e5b78da187816eb","impliedFormat":99},{"version":"ca8618d08063f4e1d8cc1cfedfeb117bfda16285b28a7b5184ec5a05802dface","signature":"3ca43740be40eba41980ec6cf3bf60718d098da19dd3e6f40198b68c91e71ad6","impliedFormat":99},{"version":"6061a6af290d79373eae8ee2fe5ec2cf9bbfd83d868b9a54365163b2b567e17d","signature":"14857862047dd520edd8f278287a9f251679e393f55c0635641263cc17351328","impliedFormat":99},{"version":"97880a541a50834d9816343779f8d69a0a770b4828dfc71a6f97caeb18349d6c","signature":"aea28be4a41c183133559189ddd9e42482b5fdc8ad21f1e1f83fc3ad62eec5ee","impliedFormat":99},{"version":"0a91e9d0492b5e3aa90cc651ce28a8cb8d3a1989d2140f4eed6a445c2ffa6e64","signature":"06679d75be0dd692fa599227d895682237937394c7cf46eaf180c0eb9bddd9d8","impliedFormat":99},{"version":"5aaa27cb043a0fcda731c6168ac1c139af5ac444d2dc4666ea02f32463e396e9","signature":"255038f51d170ac62545fdd29a790e825ca7273a5df372efaf3e9d80a5b49daf","impliedFormat":99},{"version":"5d794808e492da408a1de07dc0e5a1c8b326eb526f566209cf66520985d24d34","signature":"a36b390ff87f1650fd5c4f64c29ff2cdcde7d26087297f3b2b4bf9afda435dce","impliedFormat":99},{"version":"b3be4c983f6b9d439136ff1065daabc5a2ba529a82d2edf3ddd254c47578efdd","signature":"fe98ca76fb99b4eab7b94ed78dcef880e430ed1333ab87346f8fd0bb9e82f8c6","impliedFormat":99},{"version":"77a684ab1fe001164ca35f3e1dc30d7531676bf79001e6439a1a70374c6030d5","signature":"df01cefb77ed5a53579dcf5f419395ab32d9020890d72bbf71cb0c2d3c85ee28","impliedFormat":99},{"version":"6c596c0cbbb7f90acd1d7fea3c012ece781d95d92e5edc01231f9ac984abb533","signature":"5c493166be404976a0a2b26e6560cbadf7534a044e6dbe13fa839a616b49fccb","impliedFormat":99},{"version":"f1dde07dd76a2cdf766ed8c35d8db484dd449b8dde7c751e4549f74aa41b5dda","signature":"931934fc349511cddd2dbf1b7fe86dbbff2fbe20e956ad486cffd8c825069f73","impliedFormat":99},{"version":"004387052fcb8e8a806b1ce9e793684e50ba974f7291ae4343e1b9f4ee560306","signature":"53ae3ede70f024344fe570463ea925d216886bd659f4bdf02435077b596c4da1","impliedFormat":99},{"version":"796300d2a75b7b2b1ad8837c7808298928c803879a64b13ce4d4db2822de66fc","impliedFormat":99},{"version":"3087d9884e878b2c6f2a0121e4b5255ac770ccda4a11bf074f597d220fcec066","signature":"a7f8303bc5308cc0353e6c05fc5b9231d666e5d716b92151bcd3198291d726cd","impliedFormat":99},{"version":"13d9e024e48ba5a4d3056ce2936d422dfe91f673f73ec8c9a622ae4c1cd8a64f","signature":"c95fed85b32e919b9dee556a8cc52e992aff8977b6a1576ac46f6d8fd940b114","impliedFormat":99},{"version":"1763a936b5eccc755a446869dc797a3fcae44fdfacf4ded36d91f7e5ebaba483","signature":"b310ecae0e53eaa3e56d52ca0751f0321cef20e501e70cde2d822ebcdc4279a2","impliedFormat":99},{"version":"a8083ff9cace2a845193b963456ff10c8223847b911bb752c2db27f989995078","signature":"8c23084bd5224ddfac7e06bbfb994ab02c6247c3d5cd3a93cae5d98f66a1d590","impliedFormat":99},{"version":"738f098ff70bf841000f92b40d2860371b814d80b9baaa8fd02fa73603231e09","impliedFormat":99},{"version":"153a785e949cff2c2443e70662cfa3cccac90a16b812cdcaefcc140aacb7aa4e","signature":"9154c87ea895848ed88fcce709155b8d7b799de87b6ce3a2ff40d51ecacd1777","impliedFormat":99},{"version":"bd28ae8ca434e8d911571af5da318dfbc44eb2bcdf6a6fee0141ab14d3d89fa2","signature":"f5e80f07ca0a33fa87200e623a57bd1a169d1bdc0d4221c85a8063b9225b584a","impliedFormat":99},{"version":"4a97c9f6e9845a62926419ab1b3de277f613bc2219eff1dfa0c760584de353b7","signature":"2d6493891f834ca324029ad9d2d6fef96a1b39783449e5e5d10d15b199b268d3","impliedFormat":99},{"version":"a381760e4c9eb9efef5752147fed96ae2610490268a9eb49fe3c5fe024884e6d","signature":"f7e05642aafa933127d30fbaefe3420a2c071e235f202cfe1297e499ae1cb99d","impliedFormat":99},{"version":"85acd5eb13ea195b16a46e40edb9647185ea4cadfe920b1ce1bf3419343f8fe4","signature":"188564e2c42d91e9a58fb45337a60bd2b75ee84c44a2396ba9f6ee11492ffd76","impliedFormat":99},{"version":"3f6841354b3653693ecf146081f308d4ab8cdb2c8aa6703e068ff89434dd7337","signature":"2b251b91d2d277fa5af82d5c6d54edddb01775ca574879a25a08ad054657e023","impliedFormat":99},{"version":"1056c9a71c54a746462b6a07720c5977e24ea800fd2b214bfa4d4319b7654aa2","signature":"3636e3136cdd6e17d4eb53903f3ba3194676d60cb87471cf2f0f2fd80dcb0130","impliedFormat":99},{"version":"66a1706feeba9516be4fc9a8d0768e384eb5ad5335b8c588b8b25f48a6061773","signature":"81f2699dbf06c7f5e42143e1d130dbb09c28d6368dc40438388b6cfd64e8a1ee","impliedFormat":99},{"version":"b5e5b34c104b04696be7dde30db2c260e88379aba9c63f782683b88b110f7abf","signature":"14fe366983229fd7c58d55796c6a8430f9802de3af08cc7d25a5e413dfb68aa8","impliedFormat":99},{"version":"dff1f65533d52cc58bf30f3d4333c402919bb81fe55c67f5795727b04d4943df","signature":"e1a156cda2f6c358954db22319cbde8b0977c70151ecb3b139a91434ec097251","impliedFormat":99},{"version":"f14d2e3af5f1ea20047985d9f5b981e69a3ccf0bb4ccb1ebdfd08a4cfb152fe2","signature":"f170690311a68cb83299b9672b659493d646f167e0cb255d43a9fe6261f94809","affectsGlobalScope":true,"impliedFormat":99},{"version":"df85910d8ff37d6c434d071cb0e8c775f3a75faa794a42592bd0f6e5edcc1698","signature":"fa4029ce76cdf60886d22d9096ff5c6a948cce10efff76e25a5bbbba3f4c49d0","impliedFormat":99},{"version":"2fd4e26ad53e71404a5baa1af7eac4d6aeb30087e7ad3188da9657f215dbce88","signature":"e2dc767c6fe38a2aece9afa8fa0d2f9b63b04f3c64e1de57929c871ff84a9d5d","impliedFormat":99},{"version":"11bdada6c70784d7fa110e4d8099d146f53de101c440c82e8e45d6012b9c923e","signature":"bbf9190f8a8a15687caf18ff5e88fef4d7fa67cab7e5490a41d5353fa5dab212","impliedFormat":99},{"version":"c6b57e6fe5c155e4b5a26a523c33def1a56e71efc444f69b1d92dbdeaa5a170f","impliedFormat":99},{"version":"cb4df321b842741a6679cce5aede3e4dd578ee938a78163bcd896da0ee9d4e21","signature":"da7c2fd3f3ae9b9df1fcdd0b636f18d66c2657f06fbc6b6d83b99d8de9f35858","impliedFormat":99},{"version":"ed70ac7b8aa899570380e7f8dcf8072b7f84f3a1bfe774bdb9846144c700e5de","signature":"29c41b6a2d48ca25be344d96c6b0064f9b52a54183506049edcc0d1aa28add62","impliedFormat":99},{"version":"b1126023aaa47aace45825ae5329ffe1d55ba27cbe00168696b72e0b9db765fc","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"5f79bd78c17c0541fb0e1d3b46b77959b7fa134255d90123fc4b7e04b1596d4e","signature":"f22e24466c5d71f2c853fe81d61b1791d08f93c911e4f9b72cd5dd0331f4f3bd","impliedFormat":99},{"version":"266bf91c345e5fc075b185a3fd01aa965666b1c0d39990e2fa34c2d77c8ef194","signature":"262f210580fc33eeea270da5ec94741e2eb1f3a57b7764cfecb2d18b16456254","impliedFormat":99},{"version":"4e3a15d410184e2dba17480baaeb15e457e1b1167f062c352748d54aff9999a7","signature":"2fd5d202b9fc54aa649622b1c7df22b6dea459452a4564fe1db903da42451e9c","impliedFormat":99},{"version":"cc4385ce309ccc3a1dc4b12374b46f634364fe1d5caf0092f4ddcc66799b3d1e","signature":"bde3b0971e3875004b42dab865b448c93092d6f647852a6e80a5e88007270a25","impliedFormat":99},{"version":"2a5d233be5bb21b4a8d2da2c7f560b0ea19214fe204d120cf22a8628769c04b2","impliedFormat":99},{"version":"2d0720d5224168044de065f6421d5afa877fc9032698e8e2f78f912e238fbf1d","signature":"b6c954ce490f65f40198d1464185061444e627c6fdcc1403807fea648994eaa6","impliedFormat":99},{"version":"367880472f38e380a93bca6ef38308b96dd7958c7b6032624cdbb7cfdbe3b199","signature":"e8469985371ec33bd5d1bdd91435afba4bde38caff54050efd86cfb465f17d50","impliedFormat":99},{"version":"3e4700a1e487bf7582f7b74434efae5fb397b0a54c2892a99dc995a304086b72","signature":"19f647ae0079c61fccd680b778424e3a7db252e6e26c1f750add3cc0be4973ae","impliedFormat":99},{"version":"3f71bc6c0d98b56d5cfea896ec204735626e1955d9a7c7d94bf2de153fbe5e6d","signature":"29c7486b5e587dbb98742024c78fbbb7732e1b951573dca4b4e9ef4f741a1947","impliedFormat":99},{"version":"08bec151ea29e6b265a8ba0bc04584769b196cbee8dc7ec21dd9628ea4740305","signature":"caf11e5c4d0b1361b6a94b9a4d00675d70c8bb5cedb6dba369cb6a57c065ca43","impliedFormat":99},{"version":"1b4fd2ed22fcadbc4d80bbe62255a0be6b63ab4f1e2784718593dd72f30a7423","signature":"a2a2323c6d8ee15897321ac4255098238a343958e256d04cd959973705d76d84","impliedFormat":99},{"version":"dde1d1040fde605830c2cb7e755b1127efba6340b5abf64f758eacdef23ef51f","signature":"6d5ead5885cf79fe38d54f207f82a3d713281edc63dbcdfc1647e67961c852b4","impliedFormat":99},{"version":"870d1f501f4ec5e9ea2332c01abfb9a22142680282d2c93de80477bc5488eccc","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"2608f6e00dd656708cb83f040dd5bb591b9369782a5525f39197efa4e25ed403","signature":"44179c1bd866fc79e185b84a15eed91dbe8d989673c8e7fd37e0f339281740df","impliedFormat":99},{"version":"6b3d7e8eddf3120c9a2fa15223295f4d97b979815e3c8cdec753d3152477ed42","signature":"7f2ae7498c79bcc1f94d0cb924b1d7dcf38215c00067584559003c4c62030948","impliedFormat":99},{"version":"4b9d28adbaec9ceebd62c2400e11871f2d0ba83963221463ceb7e75ef66617aa","signature":"92a6abbfeadf0a7e84e763c66a69047e49bcbb2784f5d1485887c469cf533e47","impliedFormat":99},{"version":"af120b5ba1adc693ed283b237d5e28bfdf3dc5255a6027c0e1492f7cacd4e0bb","signature":"74a89c01b875bd26429b36e6d618671a567c2ea2a339f86a9f84f45ead879a4f","impliedFormat":99},{"version":"d091eecf646a13e1409071d4237d776902ca0ea10e97d365433c3e4ef31d9970","signature":"51149206f9e92c557574822d9d9406945ede0d386adcde87c9af6e668d87188d","impliedFormat":99},{"version":"50d251d7cd6ae2f56486226b43f12f398b61e95745371f1e77abbb52733c2be4","impliedFormat":99},{"version":"20c2d6428827a805aa446c678174644c5ef5c4c10fed12031737f1bd191b8168","signature":"1262ab6591ed9f03c13aed6ad33214e1f450808318cb0ff67d89d0be3fad6166","impliedFormat":99},{"version":"adc3703d8ad5174cff601808a93e05ab4749d3f15b9fe62b91277d5388da6358","signature":"a736481d695ceb5521ceb50eac92e3792a4c15c650817541ab4b80549144cdd3","impliedFormat":99},{"version":"936b814700f1378c999fe7226810673afa380eec0860d51d940e3e7fa4c97a56","signature":"653c25edf2805d56614406e017ce0ad340e4f9ce17baa7a54002bad57b760a3b","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"d6456a65434c2bc7313ad672cbd9b3db099cc97720c763523e27beb4983b7ced","signature":"54d4dc1c5d16be78a3629012bcd06d39ec26834fe2f475ccf15ca5f475cebeba","impliedFormat":99},{"version":"07c6cf14470fc3bcd7cb487b46664f36d3079f3912819e85a7f291b8e133c6f1","signature":"481e5dc54e1b7460b2be62b6232804653500d44389de34bfca05de772c4243cb","impliedFormat":99},{"version":"2a3e65e043b1b12b3aa7c0917012974f23ec060b82bac15d34738744afb879b2","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"708c828c7d5e764ae00cbb3f1ee14727f6872227748e26c693aa461c60416f18","signature":"76311ab631abc0c007eec50c490edb7f0481bf2ecc0f220badcec58974ecd36f","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"336af98db344d1e4ad0b9ae5c3449b9163f5d5e3bd8bb44f93f6782d8a614789","signature":"8ebe94eb782af49c27e0aca58ad3c6f18440deeb1518c8b1fd9bd5b6a453a500","impliedFormat":99},{"version":"79b546ffbe13602ed4d6396ce807f0106247fdfd29ff09bed10f185dfd41cc1d","affectsGlobalScope":true,"impliedFormat":99},{"version":"25da943184d25467f15c2c236e95c4952988a977d75f3bacd908d1e0315a9e14","affectsGlobalScope":true,"impliedFormat":99},{"version":"678bb36fc31a9b2f12386f5d549079b1d908872c3b72dc0ad366957fd16f61cd","impliedFormat":99},{"version":"14c6779c3bbde97a2bcd7fd0ef4cd79111f4be5b7471056661c24cea88d6ed4a","impliedFormat":99},{"version":"4bfd39d0cdfe9dd04d2d2591d0a5b662517108b66afbd094dacde05f8bb7df52","signature":"240aa34968c331a53db90dc69115cc64f34e7ede02640664b8aa5670b6d7a23e","impliedFormat":99},{"version":"e793564c306d0eda21dde7ceea3be4c7717c5b5ca1e7ffc3991df729e0707161","signature":"c88fde9d1b3c954c8739f899d9114c860641206751d162c160abc8b8f45ef425","impliedFormat":99},{"version":"4ea88279dee123b4ebd3d4e485ecc12704e14abf99d8c593de20c522e1bcbc9d","signature":"64cc8864b1ea2d97180232b1d80210817990701bd4deb8222b30cc1c5d79b79a","impliedFormat":99},{"version":"26005abec69a63766138934b590280ac55d8a182211ffbd47aaa2d4ff1c03b2c","signature":"49967a774900d5efb2e54c63324d87d3a87e21d85831b867371be0971a064a5f","impliedFormat":99},{"version":"e322237875b9ea1490e14a5af7f024061f0acbe428ccd4f0b6cd7d4343dc374b","signature":"adcc70e6be513d6eb2c095bf474bcc21bd56c926e7b673d3f18bab19d3aedbbe","impliedFormat":99},{"version":"2c24b818407714b7b252be4bb750c84a804a19551c79f6adeab9972590857ddd","signature":"e333ddc99377b1d52ee539700737a245cfed4efd012079a8f9a7c653af7927ef","impliedFormat":99},{"version":"0c0c4556bb1e789b845f628176d0c1de2f43323c41eca6e49c0e9c4657bebe50","signature":"3b3a330c1c4b0fac7313149d9ebbdb3e29d454d9496cc324dd2e451926e7b4d6","impliedFormat":99},{"version":"a92b10f4ca8a728c50d8b5cbf016fef30f27d1674c24caf6a96e6724e14dda18","signature":"ae45b6569b8e8c9aa9ec40a3cb876ba030d66e42fbbf8d7a989e198946d538bf","impliedFormat":99},{"version":"ca452a778322112acf74d2542d39fd7e2d2c4687aedcf0fe895d60ca1fbb536b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"5a5ccfa4bdfb11b65c2e8fdc7a4decf932b94bc278b52be2cbb9a9a9f03a1f09","signature":"2254167d50d4863715e4b65ddf565b61851428456ccbef73fa3cc0bb5cea775f","impliedFormat":99},{"version":"8980d0a4f7c16eb53482aba68fe89c7568600ad167289349b4b5f718e909572d","signature":"fe18faa65edfe9771725a590d2de31a012a8a2806f9664f53703fc3a79f7daee","impliedFormat":99},{"version":"8d27cceff306f637ddff3aa213c736ea0acb9f76ee537422bb85cedb17b18dd7","signature":"f9bd5ef547af371b4c82562ecf7ac63f1e131fdf53305e1796773bbcf8feb567","impliedFormat":99},{"version":"822d16d5fd3500cfff3ac157063335c81552c92f4cb1e8bbd99f9b03f5fc5fef","signature":"14066e22f15a42d2d2e4764306025cf6cbdd12a03fbbd0ba98dab80ebfd96521","impliedFormat":99},{"version":"f42b36d8f5d78ae776038704755771a0f43f94ead777c2efbc0ebd3d7813ec96","signature":"b291197359a4e6e72c1f80dc096109670025ece2f1b6fb870150a6b139256faf","impliedFormat":99},{"version":"68bb5811ccb769c731f87f371d1538537837ebee3c6c7c2ad57c56acff731b51","signature":"0089db34aa8ee3ea5a70e5e870cca31fcd2e78c1f1370ae7567da16f143cf54d","impliedFormat":99},{"version":"72b9c73838eebc3317e0c97b6a2081734ac3e40ed78270e76ac240ef9ad407c3","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"0c575d14238232540c906b15590ee78e95ebe95c901ff91c51fee3a3e1c2c3d4","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"6c06c0fc5a2469adb1404eba8ef3a30cc424fea70ff03924e48924b60b8803f8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"df04ae666f83c05fd637c087efa4d43029f110f0b1ed8c919cb99bf2c5443571","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"90a65ab163a6c0ec0bec6fc0b58c512be1508ec86eb27bd3265687d67d660632","signature":"0b284bb8f8da24c32f9924669dd45aabe175a0dd613f24fdd23fe9cdf28a063a","impliedFormat":99},{"version":"91088a50b9f609c033af7927eccf1b6ccd094753863ca77d9b5cc6d9ba18297e","signature":"34d19490cbc4b70ed0c135987ab493e7a5eb41e68b7f88f6bcbf30888bfb4ac3","impliedFormat":99},{"version":"9e283a34f47a67a4b2640c92aa30d8754c970ae672d8600d78380a9d36e7a79b","signature":"536f42adb64860ea9be496a8dfed81d64713e92eedfe1607c05890bb6108472d","impliedFormat":99},{"version":"bcecbfedd71cf6a3ec77bd5b2ba384c0bdf4cf9616798b8b44979248e4d9636c","signature":"75fd465af8bc2a90ab4c06c6973eb3cdee21f5160c7e50ba22e7015df70d7e9c","impliedFormat":99},{"version":"1271a7967dfe0b5332e9fd065b555a2a1aa162d122738281748520741411ceca","signature":"e16d639819c88570a550b8f132dae9c78c16a5f83e08e8094fc9046c654b9a10","impliedFormat":99},{"version":"c6ea1653c07ecbd83530e7fdee2052fd4cc1279860760e42b15d171955cefdab","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"f462b6fc33bc3f82d1551ac0678834dfff89192ce1e848eb0bb8ca5bfe8bc76f","impliedFormat":99},{"version":"eb9096c517da313cbedce8818d9cadb82bbf02cd6f4a65db4cee42ac01f4272c","impliedFormat":99},{"version":"b58404374a2136ead99a669fd46ef7badc3e5b359c863113141e2cfb3b75bea9","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"87d3f3f4a1f80a5b87450fff51b9d892e4616c4db0bc34801760e11494fc46af","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"87d3f3f4a1f80a5b87450fff51b9d892e4616c4db0bc34801760e11494fc46af","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"d77cead3c5f46ab418c725fa7f434733c4a1a067c02642921a44765c4f9d54b5","signature":"c683ae59e8697d4c2f96be1a5553375a12f4474a25c0363cdb6b81ac260c0065","impliedFormat":99},{"version":"c1c8a45ca8b21b12823644937601d83725caf77c1ab0e4a48b580c06bbf82d06","signature":"e7c12d840674d4f180fc5facc0d0896bf4554cfbcc862ddb2120eb09d6424726","impliedFormat":99},"8bcc0460b8de8baddc82233592744cea5e7edc7a7ce8e0118580ca6be7eb1da8",{"version":"19efad8495a7a6b064483fccd1d2b427403dd84e67819f86d1c6ee3d7abf749c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1eef826bc4a19de22155487984e345a34c9cd511dd1170edc7a447cb8231dd4a","affectsGlobalScope":true,"impliedFormat":99},{"version":"865a2612f5ec073dd48d454307ccabb04c48f8b96fda9940c5ebfe6b4b451f51","impliedFormat":1},{"version":"a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8","impliedFormat":1},{"version":"1be330b3a0b00590633f04c3b35db7fa618c9ee079258e2b24c137eb4ffcd728","impliedFormat":1}],"root":[64,65,[203,269],[271,274],[276,353],[356,362]],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"jsx":2,"module":199,"noFallthroughCasesInSwitch":true,"noPropertyAccessFromIndexSignature":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[361,1],[360,2],[66,3],[115,4],[116,4],[117,5],[76,6],[118,7],[119,8],[120,9],[71,3],[74,10],[72,3],[73,3],[121,11],[122,12],[123,13],[124,14],[125,15],[126,16],[127,16],[129,17],[128,18],[130,19],[131,20],[132,21],[114,22],[75,3],[133,23],[134,24],[135,25],[168,26],[136,27],[137,28],[138,29],[139,30],[140,31],[141,32],[142,33],[143,34],[144,35],[145,36],[146,36],[147,37],[148,3],[149,3],[150,38],[152,39],[151,40],[153,41],[154,42],[155,43],[156,44],[157,45],[158,46],[159,47],[160,48],[161,49],[162,50],[163,51],[164,52],[165,53],[166,54],[167,55],[367,56],[201,57],[366,57],[202,58],[365,57],[67,3],[69,59],[275,60],[270,3],[68,3],[175,3],[192,61],[190,62],[191,63],[179,64],[180,62],[187,65],[178,66],[183,67],[193,3],[184,68],[189,69],[195,70],[194,71],[177,72],[185,73],[186,74],[181,75],[188,61],[182,76],[169,77],[70,78],[176,3],[355,79],[354,3],[62,3],[63,3],[11,3],[12,3],[14,3],[13,3],[2,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[3,3],[23,3],[24,3],[4,3],[25,3],[29,3],[26,3],[27,3],[28,3],[30,3],[31,3],[32,3],[5,3],[33,3],[34,3],[35,3],[36,3],[6,3],[40,3],[37,3],[38,3],[39,3],[41,3],[7,3],[42,3],[47,3],[48,3],[43,3],[44,3],[45,3],[46,3],[8,3],[52,3],[49,3],[50,3],[51,3],[53,3],[9,3],[54,3],[55,3],[56,3],[58,3],[57,3],[59,3],[60,3],[10,3],[61,3],[1,3],[92,80],[102,81],[91,80],[112,82],[83,83],[82,84],[111,85],[105,86],[110,87],[85,88],[99,89],[84,90],[108,91],[80,92],[79,85],[109,93],[81,94],[86,95],[87,3],[90,95],[77,3],[113,96],[103,97],[94,98],[95,99],[97,100],[93,101],[96,102],[106,85],[88,103],[89,104],[98,105],[78,106],[101,97],[100,95],[104,3],[107,107],[364,108],[200,109],[174,110],[173,111],[171,111],[170,3],[172,112],[198,3],[363,113],[197,3],[196,3],[199,114],[362,3],[205,115],[206,116],[207,116],[287,117],[221,118],[222,119],[289,120],[223,2],[224,121],[218,122],[288,123],[208,124],[214,125],[64,3],[229,31],[290,126],[227,3],[209,3],[358,3],[242,127],[215,128],[219,2],[217,2],[216,129],[291,130],[243,131],[230,132],[292,133],[225,2],[293,3],[264,132],[280,134],[265,135],[279,2],[255,136],[254,137],[294,3],[295,2],[263,138],[236,139],[237,140],[298,141],[213,142],[249,143],[246,3],[269,3],[228,144],[296,2],[250,145],[252,146],[251,145],[226,147],[300,148],[297,3],[220,149],[65,150],[301,151],[303,152],[304,153],[305,154],[272,155],[306,150],[276,156],[307,3],[308,157],[309,150],[310,158],[277,159],[274,160],[271,60],[311,2],[312,161],[244,162],[284,163],[285,150],[313,164],[210,165],[286,3],[239,166],[233,167],[234,168],[235,169],[238,170],[314,171],[241,172],[232,173],[282,174],[281,175],[315,176],[283,177],[259,178],[260,179],[240,180],[248,181],[258,182],[316,183],[268,184],[261,185],[262,186],[256,187],[257,188],[317,3],[247,3],[318,2],[212,189],[273,3],[319,3],[320,190],[321,3],[278,191],[322,150],[323,3],[204,192],[324,3],[325,3],[326,17],[327,193],[299,132],[328,3],[330,194],[329,3],[331,195],[302,3],[267,196],[332,197],[333,198],[334,199],[266,3],[336,200],[337,3],[338,201],[253,201],[335,150],[231,202],[342,203],[345,204],[344,204],[346,205],[347,205],[343,206],[341,207],[339,208],[349,209],[351,210],[357,211],[352,212],[356,213],[353,214],[359,211],[348,215],[350,216],[340,217],[203,218],[245,219],[211,2]],"latestChangedDtsFile":"./client.d.ts","version":"5.8.3"}
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../plugin/config/getCondition.ts","../plugin/index.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/rollup/dist/rollup.d.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/rollup/dist/parseAst.d.ts","../node_modules/vite/types/hmrPayload.d.ts","../node_modules/vite/types/customEvent.d.ts","../node_modules/vite/types/hot.d.ts","../node_modules/vite/dist/node/moduleRunnerTransport.d-DJ_mE5sf.d.ts","../node_modules/vite/dist/node/module-runner.d.ts","../node_modules/esbuild/lib/main.d.ts","../node_modules/source-map-js/source-map.d.ts","../node_modules/postcss/lib/previous-map.d.ts","../node_modules/postcss/lib/input.d.ts","../node_modules/postcss/lib/css-syntax-error.d.ts","../node_modules/postcss/lib/declaration.d.ts","../node_modules/postcss/lib/root.d.ts","../node_modules/postcss/lib/warning.d.ts","../node_modules/postcss/lib/lazy-result.d.ts","../node_modules/postcss/lib/no-work-result.d.ts","../node_modules/postcss/lib/processor.d.ts","../node_modules/postcss/lib/result.d.ts","../node_modules/postcss/lib/document.d.ts","../node_modules/postcss/lib/rule.d.ts","../node_modules/postcss/lib/node.d.ts","../node_modules/postcss/lib/comment.d.ts","../node_modules/postcss/lib/container.d.ts","../node_modules/postcss/lib/at-rule.d.ts","../node_modules/postcss/lib/list.d.ts","../node_modules/postcss/lib/postcss.d.ts","../node_modules/postcss/lib/postcss.d.mts","../node_modules/vite/types/internal/lightningcssOptions.d.ts","../node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../node_modules/vite/types/importGlob.d.ts","../node_modules/vite/types/metadata.d.ts","../node_modules/vite/dist/node/index.d.ts","../node_modules/@types/react-dom/client.d.ts","../node_modules/@types/react-dom/server.d.ts","../plugin/worker/types.ts","../plugin/types.ts","../plugin/components/css-collector-elements.tsx","../plugin/components/css-collector.tsx","../plugin/components/html.tsx","../plugin/config/defaults.tsx","../plugin/config/resolveAutoDiscoverMatcher.ts","../plugin/preserver/plugin.ts","../types.ts","../plugin/root.ts","../plugin/helpers/inputNormalizer.ts","../plugin/config/extMap.ts","../plugin/config/resolveOptions.ts","../plugin/config/resolveUserConfig.ts","../plugin/config/resolveUrlOption.ts","../plugin/config/autoDiscover/resolveBuildPages.ts","../plugin/config/resolvePages.ts","../plugin/helpers/tryManifest.ts","../plugin/config/autoDiscover/createGlobAutoDiscover.ts","../plugin/config/autoDiscover/customWorkerFiles.ts","../plugin/config/autoDiscover/pageAndPropFiles.ts","../plugin/config/autoDiscover/resolveAutoDiscover.ts","../plugin/helpers/cleanObject.ts","../plugin/helpers/serializeUserOptions.ts","../plugin/config/mimeTypes.ts","../plugin/helpers/requestInfo.ts","../plugin/config/getPaths.ts","../plugin/error/toError.ts","../plugin/worker/createWorker.ts","../plugin/react-client/restartWorker.ts","../plugin/react-client/createMessageHandlers.ts","../plugin/react-client/createWorkerStream.ts","../plugin/react-client/handleWorkerRscStream.ts","../plugin/helpers/getRouteFiles.ts","../plugin/helpers/handleServerAction.ts","../plugin/react-client/handleWorkerServerAction.ts","../plugin/react-client/configureWorkerRequestHandler.ts","../plugin/react-static/configurePreviewServer.ts","../plugin/react-client/plugin.ts","../plugin/config/resolveEnv.ts","../plugin/env/plugin.ts","../plugin/plugin.client.ts","../server.ts","../plugin/helpers/moduleRefs.ts","../plugin/react-static/temporaryReferences.ts","../plugin/react-static/createBuildLoader.ts","../plugin/helpers/metrics.ts","../plugin/helpers/resolvePage.ts","../plugin/helpers/resolveProps.ts","../plugin/helpers/resolvePageAndProps.ts","../plugin/vendor/vendor.server.ts","../plugin/helpers/createRscStream.tsx","../plugin/helpers/createHandler.ts","../plugin/react-static/renderStreams.ts","../plugin/react-static/rscToHtmlStream.ts","../plugin/react-static/fileWriter.ts","../plugin/react-static/collectHtmlWorkerContent.ts","../plugin/react-static/collectRscContent.ts","../plugin/react-static/renderPage.ts","../plugin/react-static/renderPages.ts","../plugin/helpers/getBundleManifest.ts","../plugin/helpers/collectManifestCss.ts","../plugin/helpers/createCssProps.tsx","../plugin/utils/urls.ts","../plugin/utils/envUrls.node.ts","../plugin/react-static/plugin.ts","../plugin/helpers/moduleResolver.ts","../node_modules/acorn/dist/acorn.d.mts","../plugin/loader/types.ts","../plugin/loader/handleExports.ts","../plugin/source-map/createMappingsSerializer.ts","../plugin/loader/transformModuleWithPreservedFunctions.ts","../node_modules/acorn-loose/dist/acorn-loose.d.mts","../plugin/loader/parse.ts","../plugin/loader/transformModuleIfNeeded.ts","../plugin/transformer/plugin.server.ts","../plugin/helpers/createEventHandler.ts","../plugin/helpers/collectViteModuleGraphCss.ts","../plugin/react-server/handleServerAction.ts","../plugin/react-server/configureReactServer.ts","../plugin/react-server/plugin.ts","../plugin/plugin.server.ts","../plugin/plugin.ts","../plugin/process-env.ts","../plugin/components/index.ts","../plugin/config/createModuleID.ts","../plugin/config/autoDiscover/index.ts","../plugin/config/index.ts","../plugin/env/index.ts","../plugin/file-preserver/plugin.ts","../plugin/helpers/collectBundleManifestCss.ts","../plugin/helpers/defaultFileWriter.ts","../plugin/helpers/formatMetrics.ts","../plugin/helpers/requestToRoute.ts","../plugin/helpers/stashReturnValue.ts","../plugin/helpers/index.ts","../plugin/types/sourceMap.d.ts","../plugin/helpers/sourceMap.ts","../plugin/loader/createDefaultLoader.ts","../plugin/utils/env.ts","../plugin/loader/css-loader.development.ts","../plugin/loader/css-loader.production.ts","../plugin/loader/env-loader.development.ts","../plugin/loader/index.ts","../plugin/loader/react-loader.client.ts","../plugin/loader/react-loader.server.ts","../plugin/loader/react-loader.ts","../plugin/loader/sourceMap.ts","../plugin/metrics/formatMetrics.ts","../plugin/metrics/index.ts","../plugin/preserver/index.ts","../plugin/react-client/index.ts","../plugin/react-server/index.ts","../plugin/react-static/index.ts","../plugin/react-static/streamHandler.ts","../plugin/react-static/types.ts","../plugin/source-map/readMappings.ts","../plugin/transformer/index.ts","../plugin/transformer/plugin.client.ts","../plugin/transformer/plugin.ts","../plugin/transformer/types.ts","../plugin/types/css-tracking.ts","../plugin/types/env.d.ts","../plugin/types/global.d.ts","../plugin/types/react-server-dom-esm.d.ts","../plugin/types/webpack-sources.d.ts","../plugin/utils/createCallServer.ts","../plugin/utils/callServer.ts","../plugin/utils/createReactFetcher.ts","../plugin/utils/envUrls.ts","../plugin/utils/index.ts","../plugin/utils/moduleBaseURL.ts","../plugin/vendor/vendor.ts","../plugin/vendor/index.ts","../plugin/vendor/types.ts","../plugin/vendor/vendor.client.ts","../plugin/worker/registerLoaders.ts","../plugin/worker/sendMessage.ts","../plugin/worker/html/types.ts","../plugin/worker/html/createHtmlWorkerRenderState.tsx","../plugin/worker/html/messageHandler.tsx","../plugin/worker/html/html-worker.production.tsx","../plugin/worker/html/html-worker.development.tsx","../plugin/worker/html/html-worker.ts","../plugin/worker/html/index.ts","../plugin/worker/rsc/state.ts","../plugin/worker/rsc/handleRender.ts","../plugin/worker/rsc/userOptions.ts","../plugin/worker/rsc/handlers.ts","../plugin/worker/rsc/messageHandler.tsx","../plugin/worker/rsc/rsc-worker.production.ts","../node_modules/tsx/dist/types-Cxp8y2TL.d.ts","../node_modules/tsx/dist/esm/api/index.d.mts","../plugin/worker/rsc/rsc-worker.development.ts","../plugin/worker/rsc/index.ts","../plugin/config/resolveDevServerConfig.tsx","../plugin/worker/rsc/rsc-worker.tsx","../index.ts","../client.ts","../package.json","../node_modules/vite/types/importMeta.d.ts","../node_modules/vite/client.d.ts","../node_modules/@types/react/canary.d.ts","../node_modules/@types/react-dom/index.d.ts","../node_modules/@types/react-dom/canary.d.ts"],"fileIdsList":[[76,118,204,244,327],[76,118,204,327],[76,118,327],[76,115,118,327],[76,117,118,327],[118,327],[76,118,123,153,327],[76,118,119,124,130,131,138,150,161,327],[76,118,119,120,130,138,327],[71,72,73,76,118,327],[76,118,121,162,327],[76,118,122,123,131,139,327],[76,118,123,150,158,327],[76,118,124,126,130,138,327],[76,117,118,125,327],[76,118,126,127,327],[76,118,130,327],[76,118,128,130,327],[76,117,118,130,327],[76,118,130,131,132,150,161,327],[76,118,130,131,132,145,150,153,327],[76,113,118,166,327],[76,113,118,126,130,133,138,150,161,327],[76,118,130,131,133,134,138,150,158,161,327],[76,118,133,135,150,158,161,327],[74,75,76,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,162,163,164,165,166,167,327],[76,118,130,136,327],[76,118,137,161,327],[76,118,126,130,138,150,327],[76,118,139,327],[76,118,140,327],[76,117,118,141,327],[76,115,116,117,118,119,120,121,122,123,124,125,126,127,128,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,162,163,164,165,166,167,327],[76,118,143,327],[76,118,144,327],[76,118,130,145,146,327],[76,118,145,147,162,164,327],[76,118,130,150,151,153,327],[76,118,152,153,327],[76,118,150,151,327],[76,118,153,327],[76,118,154,327],[76,115,118,150,327],[76,118,130,156,157,327],[76,118,156,157,327],[76,118,123,138,150,158,327],[76,118,159,327],[76,118,138,160,327],[76,118,133,144,161,327],[76,118,123,162,327],[76,118,150,163,327],[76,118,137,164,327],[76,118,165,327],[76,118,123,130,132,141,150,161,164,166,327],[76,118,150,167,327],[69,76,118,327,366],[69,76,118,327],[69,76,118,201,327],[67,68,76,118,327],[76,118,270,327],[76,118,191,327],[76,118,189,191,327],[76,118,180,188,189,190,192,327],[76,118,178,327],[76,118,181,186,191,194,327],[76,118,177,194,327],[76,118,181,182,185,186,187,194,327],[76,118,181,182,183,185,186,194,327],[76,118,178,179,180,181,182,186,187,188,190,191,192,194,327],[76,118,194,327],[76,118,176,178,179,180,181,182,183,185,186,187,188,189,190,191,192,193,327],[76,118,176,194,327],[76,118,181,183,184,186,187,194,327],[76,118,185,194,327],[76,118,186,187,191,194,327],[76,118,179,189,327],[70,76,118,199,200,327],[66,70,76,118,327],[76,118,166,327,354],[76,85,89,118,161,327],[76,85,118,150,161,327],[76,80,118,327],[76,82,85,118,158,161,327],[76,118,138,158,327],[76,118,168,327],[76,80,118,168,327],[76,82,85,118,138,161,327],[76,77,78,81,84,118,130,150,161,327],[76,85,92,118,327],[76,77,83,118,327],[76,85,106,107,118,327],[76,81,85,118,153,161,168,327],[76,106,118,168,327],[76,79,80,118,168,327],[76,85,118,327],[76,79,80,81,82,83,84,85,86,87,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,112,118,327],[76,85,100,118,327],[76,85,92,93,118,327],[76,83,85,93,94,118,327],[76,84,118,327],[76,77,80,85,118,327],[76,85,89,93,94,118,327],[76,89,118,327],[76,83,85,88,118,161,327],[76,77,82,85,92,118,327],[76,118,150,327],[76,80,85,106,118,166,168,327],[76,118,327,363],[70,76,118,130,131,133,134,135,138,150,158,161,167,168,169,170,171,173,174,175,195,196,197,198,199,200,327],[76,118,170,171,172,173,327],[76,118,170,327],[76,118,171,327],[76,118,172,198,327],[70,76,118,200,327],[69,76,118,204,327],[69,76,118,204,205,327],[76,118,204,205,206,207,327],[76,118,132,140,204,327],[76,118,204,212,327],[76,118,218,221,222,223,224,327],[76,118,140,200,204,218,219,220,221,222,223,327],[76,118,132,140,204,217,327],[76,118,140,204,214,327],[76,118,206,207,327],[76,118,204,208,327],[64,76,118,208,215,216,219,229,289,327],[64,76,118,200,208,327],[70,76,118,140,199,200,204,206,208,209,212,213,214,327],[70,76,118,140,199,200,204,208,327],[76,118,243,327],[76,118,200,208,212,242,327],[76,118,200,327],[70,76,118,132,140,199,200,327],[76,118,200,204,265,327],[76,118,140,204,226,245,327],[76,118,204,245,254,327],[76,118,141,204,253,327],[70,76,118,199,200,204,327],[76,118,204,217,327],[76,118,150,200,230,327],[76,118,213,220,225,226,228,236,246,249,250,251,252,254,255,263,264,265,279,280,293,294,295,296,297,327],[76,118,140,200,204,208,327],[76,118,150,202,204,327],[76,118,140,200,204,227,327],[76,118,230,327],[76,118,204,250,251,327],[76,118,200,204,225,327],[76,118,140,299,327],[76,118,132,140,200,327],[64,76,118,327],[76,118,131,175,204,273,277,327],[76,118,132,137,161,166,200,203,204,215,298,302,327],[76,118,132,137,161,166,204,327],[76,118,137,166,200,203,204,327],[76,118,270,271,327],[76,118,271,275,327],[70,76,118,140,161,166,199,200,203,204,215,277,298,327],[76,118,140,273,299,327],[64,76,118,208,274,276,327],[76,118,271,272,273,327],[76,118,204,311,327],[76,118,200,210,211,241,243,327],[76,118,200,204,210,243,268,278,283,327],[76,118,210,327],[66,70,76,118,140,200,204,208,209,327],[76,118,141,150,153,166,200,203,204,226,228,232,235,236,238,327],[76,118,200,203,327],[76,118,166,200,203,204,230,233,327],[76,118,166,200,203,234,327],[76,118,166,200,203,230,237,327],[76,118,241,327],[76,118,166,200,204,215,216,224,239,240,327],[76,118,166,200,208,211,226,231,327],[69,76,118,133,200,204,228,230,236,252,255,279,280,281,327],[76,118,133,140,200,204,230,253,327],[76,118,283,327],[64,76,118,141,200,204,215,216,224,240,263,282,327],[76,118,150,204,249,257,258,327],[76,118,132,140,150,204,249,258,327],[76,118,131,132,140,151,200,204,228,327],[70,76,118,140,199,200,230,245,246,247,327],[76,118,131,132,140,150,204,327],[76,118,268,327],[64,76,118,132,140,141,166,200,204,208,215,216,224,226,231,248,262,263,264,265,267,327],[76,118,204,249,252,256,259,260,327],[76,118,150,204,249,261,327],[69,76,118,204,255,327],[76,118,150,166,200,203,204,327],[76,118,140,161,327],[76,118,278,327],[76,118,140,200,204,215,220,230,269,277,327],[69,70,76,118,150,166,199,200,203,327],[69,76,118,150],[76,118,302,327,329],[69,76,118,266,302,327,329],[76,118,266,327],[76,118,266,302,327],[76,118,266,302,327,329,330,331],[76,118,302,327],[76,118,327,335],[76,118,137,140,166,327],[64,69,76,118,140,166,200,203,208,212,229,230,327],[69,76,118,140,150,166,203,204,327,338,341],[76,118,166,203,327,343],[76,118,327,344,345],[76,118,166,203,230,327,341,342],[76,118,150,204,327],[76,118,131,137,161,166,327],[76,118,140,141,150,166,203,204,206,252,253,254,327,348],[76,118,140,150,203,230,253,327,340,348,350],[76,118,327,353,356],[76,118,166,203,230,327,348,349,351],[76,118,137,140,166,203,212,230,327,352,355],[76,118,137,140,166,203,212,327,352],[76,118,140,150,166,204,265,327],[76,118,166,290,298,327],[76,118,166,203,225,327],[76,118,166,202,204,327],[76,118,204,284,327]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","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":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","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":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","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":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","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":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c187accb8fa670f4c034b09312e3bccf804dc7e9a3715960344b581696f8f68","signature":"de50040b53a6deebdd2fe0cbc34cc14de27a89e34179eab95bcb3f2105ea0c36","impliedFormat":99},{"version":"fe5cfafc5e78fe1d4945f5b2df060f4d80707d59a4ddd4e583c9fbcd651e1d90","signature":"e1a156cda2f6c358954db22319cbde8b0977c70151ecb3b139a91434ec097251","impliedFormat":99},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"742d4b7b02ffc3ba3c4258a3d196457da2b3fec0125872fd0776c50302a11b9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"8a3fdc84d91c2c7321fd2f8dba2ea90249cfdc31427ac71b5735dd51bc25cf91","impliedFormat":1},{"version":"a02d26c056491b1ddfa53a671ad60ce852969b369f0e71993dbac8ddcf0d038b","affectsGlobalScope":true,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"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":"3b724a66c071d616203133f8d099a0cb881b0b43fd42e8621e611243c5f30cd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc","impliedFormat":1},{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"b200675fd112ffef97c166d0341fb33f6e29e9f27660adde7868e95c5bc98beb","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a0a1dda070290b92da5a50113b73ecc4dd6bcbffad66e3c86503d483eafbadcf","impliedFormat":1},{"version":"59dcad36c4549175a25998f6a8b33c1df8e18df9c12ebad1dfb25af13fd4b1ce","impliedFormat":1},{"version":"9ba5b6a30cb7961b68ad4fb18dca148db151c2c23b8d0a260fc18b83399d19d3","impliedFormat":1},{"version":"3f3edb8e44e3b9df3b7ca3219ab539710b6a7f4fe16bd884d441af207e03cd57","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"8cf7e92bdb2862c2d28ba4535c43dc599cfbc0025db5ed9973d9b708dcbe3d98","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a410a7fa4baf13dd45c9bba6d71806027dc0e4e5027cdf74f36466ae9b240b7","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"8c2ad42d5d1a2e8e6112625767f8794d9537f1247907378543106f7ba6c7df90","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"12e8ce658dd17662d82fb0509d2057afc5e6ee30369a2e9e0957eff725b1f11d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"5ef7f1f136a42a18665a95e7346a93576758b573892af66e2c8a2a154718e5fc","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"63b05afa6121657f25e99e1519596b0826cda026f09372c9100dfe21417f4bd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","impliedFormat":1},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"11443a1dcfaaa404c68d53368b5b818712b95dd19f188cab1669c39bee8b84b3","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"035d0934d304483f07148427a5bd5b98ac265dae914a6b49749fe23fbd893ec7","impliedFormat":99},{"version":"e2ed5b81cbed3a511b21a18ab2539e79ac1f4bc1d1d28f8d35d8104caa3b429f","impliedFormat":99},{"version":"dd7ca4f0ef3661dac7043fb2cdf1b99e008d2b6bc5cd998dd1fa5a2968034984","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"33f3718dababfc26dfd9832c150149ea4e934f255130f8c118a59ae69e5ed441","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":"1bb61aa2f08ab4506d41dbe16c5f3f5010f014bbf46fa3d715c0cbe3b00f4e1c","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"e42820cd611b15910c204cd133f692dcd602532b39317d4f2a19389b27e6f03d","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":1},{"version":"7870becb94cbc11d2d01b77c4422589adcba4d8e59f726246d40cd0d129784d8","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"f70b8328a15ca1d10b1436b691e134a49bc30dcf3183a69bfaa7ba77e1b78ecd","impliedFormat":1},{"version":"ff3660e2664e6096196280deb4e176633b1bb1e58a7dcc9b021ec0e913a6f96f","impliedFormat":99},{"version":"88e9caa9c5d2ba629240b5913842e7c57c5c0315383b8dc9d436ef2b60f1c391","impliedFormat":1},{"version":"270b1a4c2aa9fd564c2e7ec87906844cdcc9be09f3ef6c49e8552dff7cbefc7a","affectsGlobalScope":true,"impliedFormat":1},{"version":"81570642cfc04585f0c96634047a622de344edc676e00f42fd7076311c3ecb80","signature":"36a85ab9f5d3a8b59a55418e4a6bcc812f8584a0d0ccfb89722aa11007afc71a","impliedFormat":99},{"version":"98e33971b57f5904fa24a1dbb96a4b269b6aeba2a585d5fa62a0a0266ef9c902","signature":"6e2dacb7bc2f2b54b4e14629b22a22fc6a2cb0dd17668352db77d7144944e267","affectsGlobalScope":true,"impliedFormat":99},{"version":"758ea119b9e2d7f9583088752a400de74769c978e82cd53e62ceaa4a310cdae4","signature":"e16fbd6cb85516e9fac677468066899240b7bc9bb5b42c977c954d6184ed4037","impliedFormat":99},{"version":"62464291c9e63b017acf3386ce0f76334525afa3284c8c7d24575dc5e021d6a9","signature":"520efb6fc76a88f4b0eecba65936b1fdeb4a418e397929f79da611ab468578a7","impliedFormat":99},{"version":"bc5ca61098ddec56245495d67460f09aa6387b411ed5d0426b82561e2106ae19","signature":"ad79b48d63f528de4b2a6f4863f8e168d00689f5a85076d8b46c8669e0a7e242","impliedFormat":99},{"version":"2a56fe3f813bae1e84b1a77ebb77fcdf96781f78c8d2b9c4f2c62ad24e14a276","signature":"81cf1e74b703b57d9c6cf4dc183400a6daa3815f39469af807790363068a1a2f","impliedFormat":99},{"version":"48ab3e0c6608e82725ddf243d5c3e58c63ad7731d2acab7c07ace20e3cd2f1fa","signature":"caa7b81f3e7cfbb81056c07b0a94040d012fcfd9b49f310f5774f70a4299fd40","impliedFormat":99},{"version":"e79a079098b1d52ef58259fd8392991efde98eefbede9eee77e867e03a6088cf","signature":"653a4add9e678a763027090675b0df78c68e21797593b733b49a1730c3ffb138","impliedFormat":99},{"version":"31e4e01c6102bb98f8a318c0e50c6fe814c132d25afc98e6596665f5eeeb5d22","signature":"045ec455f101e5076d8cbf56a084eeb4b6523aaadbab52fac5341948b82a3a41","impliedFormat":99},{"version":"f6cb888903787fcbb164ef3f69d85adf353cbe609502bdfb33d2fab3a6e3e1c1","signature":"71b23f2256a666af24576627870abb2debfedae51b604052c4c35c2d0363e9b2","impliedFormat":99},{"version":"2d81a4196cf12ead48219924f1d5e5999dd73f16602b6270daed924e421e34eb","signature":"a67887c4d32ae926128fa469de540b61684d22daf6014a5e17e5853259630150","impliedFormat":99},{"version":"8b8b4975430d408d7782eb1b453b88f194c7a81367d7e8167e806f422086f30c","signature":"20ad9df604325514cdc47029569a3b994378587aaaa8885a82dd715481a4657c","impliedFormat":99},{"version":"c6dd89562a486b577c486bd4c28e6a384b5bc69fc1783dc72be152098e4a4d4f","signature":"bca383b0be8848efe2a7bf6788d705da07d9cf9c1add48063b9cc9b8fc27d7cc","impliedFormat":99},{"version":"21bcba774a882fda4703219252da7fbfa0c5319b341f6e3582627a0554303c22","signature":"89b3d9fdef612746edd399d86929f4205a90e017234ef31b8ac00631beef8cf9","impliedFormat":99},{"version":"e34b18e8683c8b3a47637ca2f5135fa5f7a48d840840d7b59e27d107406da945","signature":"b2dd07b8816193dade66462c3615d1fa167df45323af0b1e16b0f655c6ffe5fb","impliedFormat":99},{"version":"d6b0a766eee764a816f8cd79bd5bf7a13be1d6a13331d935d80803a935a575c1","signature":"85ad537ff1a83cd20ef52ff958ca5779c142690572c3b051d52d3be732f05ba2","impliedFormat":99},{"version":"95431db78d5732cd6fbedcb4a7e45a6d1f772c869e3428766fe035635ada0282","signature":"421a6bb0d699c39028c24429b254566af9b15676a6a5005370f24cdbae473752","impliedFormat":99},{"version":"03d814d42f3c3762836086a8255ad990c955a76a2ebb8137d2ac4a244972fb44","signature":"6d6beb6fe224756b1bab3811d955fd4f039f28a8cd6bda771ee9938507f81e9e","impliedFormat":99},{"version":"00e7ed8aa74ba5c21df189cedb978b1aebcd0a3107080c8ef99369aa56858b12","signature":"02612ddfa081cc79f29425768e7ccb72858f978818fb5ee5a68023ee7b608b58","impliedFormat":99},{"version":"8a9c9d8c8b7a63e9da7f1907f1d1d9f80daf1fdea241e91774f6c3b7d0ae773f","signature":"580b6cf714decc0b15e3ad19d40fdfb994897543149da0f4914930a614614e79","impliedFormat":99},{"version":"a167745e64d308ae296170cdbbebf2a2554ec1945f3fe818876a94ae7b197e66","signature":"906465c653dc7211f528401d158694999c28fdfb8e353a31812a42f499e02744","impliedFormat":99},{"version":"26c3d2838143600b60db4966916bb3f67b97ee7eb4a46bd3ed29d79a6b4255b7","signature":"4741367318cfd126a9dda8b9f86d9684e0095b6b84949f777b897afd9abaa1e8","impliedFormat":99},{"version":"fdabba37eeab3972f9c6db4f8b7d55f6ee6935c9af788f5bca7f277c44092615","signature":"57dc75e28e69996d20101bdf61ae2aa7771adfb25a85ee0a8131257b6ceb1ec0","impliedFormat":99},{"version":"33cd52f0de0aeaca5a2de0643e4d56c0022e92dccab73be09581740704f86108","signature":"1e366185ec0033d4b59516231f944ea0397a1e96496c7148c9d64f5e6b8d8bde","impliedFormat":99},{"version":"343400e3434e27d5171cfbc89602226b5aa789044cfb180038541cba370e2392","signature":"d9d99a790053359670923a833510fe97e1a352fc5d3ae724fdcc396a42dfbe64","impliedFormat":99},{"version":"63063bbf8fc64cd227b0c0fc21b7d9a7f10516480030ea60506698ae8d65e1d4","signature":"e695294ccccd3605bafd2278b3faee3f23f70a403e3997316bb481480635951b","impliedFormat":99},{"version":"252046cf3f91f8461a11840e21c9dcd7ec21940095497ac94eb3d81e71717476","signature":"734704815bccc38c1baa2afe14df957f766f16d6aedd85733e7f710e61c3851b","impliedFormat":99},{"version":"0040cbe99a8a702969ca7572960d9deb78776c394c81f7684392838a2c704977","signature":"332003466545f71755f0b16d3d0fcd865624c5caf3f8c1e0017af556acee3a39","impliedFormat":99},{"version":"db981f99f37a681680d954434a09525c5a8b8da8919360a49a1adc824854a4cf","signature":"cd851118fdc03884e734a41ef8bd00c9a152b5fb3e83a5b1c349014c1ef2c616","impliedFormat":99},{"version":"9b9022e1adb31560619ba7b60b32ceda8c954bdb3dcc0047360eabf2e5df2f9b","signature":"cf72bddef7cd2f5e3f3bfab906aab876886e74616fdc795215b070ad6d5a7f49","impliedFormat":99},{"version":"89a5e32f26c8caaa4c35a9e915ec6df6d70e583a45be19bc5ea42a55cd4e6392","signature":"869cd5ce81c3a503fb46afde1b57b7b999093423830a31a0ca9bd12116cdae7b","impliedFormat":99},{"version":"142faf7e85ab32d392ccf6caf349c2df17b0059ffe36c91d390a18a8287debb2","signature":"6c900d4a013cd1bbe1727a368bd48912ce004e53b25ed41206a6353144e764a3","impliedFormat":99},{"version":"3b0ec52a94fc545b1bf2dcca92a8807c9ce872400b1af95a6e7f5800515bd68e","signature":"8b6c92b00d329aab90331446bfb02eee5703356fb8a41b4ddf2c7432b5b10bb3","impliedFormat":99},{"version":"0bdba16b0573d3db26221557ebd3fa7955de43357f6e6f5b8f5d0ffaf604ffdc","signature":"e8eb8e171dfde89e8668ee99ce29bcbd1f2d9b66200039e1d8b5c6218a7c9538","impliedFormat":99},{"version":"7165682fcd216223bc581368791a54d0b45a84a7f1fd332c46fe3764b67f283f","signature":"44fd923b58c658f18a349ca58dc04ab0c48582e78259000d4a70798eea55c201","impliedFormat":99},{"version":"7b66054ed8dcbe6c1f2d1f329082eb272b2a4d1047c354aceaaf191d64d3c267","signature":"beeed395bcfc88d4d0747843ba41fc7917c744ec55db798d45a73605805846df","impliedFormat":99},{"version":"15d0033bb5c8bb1bee81bf3dbc94ca6c89e95b48e42843241a9375c4b0c247d8","signature":"19ef32328bb9ef33bc52c1e4faefdf512b2d61843c54943145c4f2ec8b8235ca","impliedFormat":99},{"version":"d0d137824aa340759702d4b652b53b020c20f966f39ee1d456dce9975204f479","signature":"7781f294f43dd7a9424005041bb96620e4f1db0dc46d2f86c055ab13bb4acb0a","impliedFormat":99},{"version":"76bf43a27265b0f91633a47637a45be1bfc1e6d3245f977fff011b9e5b03461b","signature":"794fff1e671cc4195611c60757a1f8c94166252d2c28960242e0c9347070910d","impliedFormat":99},{"version":"1d4ce280003167150bf7d807ea8b54040c97ff3940d8700e0302f158262ed93d","signature":"a7dca8b39352b5848bbe74d7d80ff54a705aa9f6963aa9ab10c5854498d51fd7","impliedFormat":99},{"version":"c061190374716b5c9eecad6ca02af3c032ff344870044d7bd65e5ab8660b5927","signature":"7bd09dbc137795f7231ed123203448aa70fde633e1fb878a3a652d4bb3c95c06","impliedFormat":99},{"version":"5e90161343a856c58f78e46c26a3823a21b538739453502573fba0abb5418697","signature":"8d36c16410fda39a93485bb1b5102a7eafb584bf4993bc8fb8c1b593ad4ea4d6","impliedFormat":99},{"version":"e56423820f8c3c1058f1be5ec0767f7c02d93668f1bc896eddad750d44ab09e4","signature":"5fc0fe556808c7234157505fe99a2b124f3f77d0588457c4c4ff3a6fc2669765","impliedFormat":99},{"version":"25004502bd030ade6ec3b21f2ca2929772908c0c5f1aec0436e1ac7b0bb4d6ef","signature":"9d023989760bf05cc9ab456d2f0c5c192a134e65a547800e81b65ea4a7e79cd7","impliedFormat":99},{"version":"cebc6f94f8156c8079b7306124ea59b88c1230302ad6ff0caf1d3902ffb02779","signature":"fcbb5f1a0bcf14fb67cf4dab2fde5bfeeedafc73bc90eb26de94c513e5ea906f","impliedFormat":99},{"version":"bc32b5d139b006fdf0df3535cfabb04b58479c14c70b537079f50952eeae1f7c","signature":"caebb4a85c86ebced3b23c18239de4ab2ad41b70c7f82daff525dbc073f6901b","impliedFormat":99},{"version":"34232d7990d74874d290db370aabc67b1a233b1c90bf3673e1e7c104ac69b06e","signature":"e2c4699dddc9033dfe43398956fcc7ac360816ffd89235964d83a151f587ea3c","impliedFormat":99},{"version":"19ce07a4da4651e6f44e69f99b6d1f6d05e66f255b7007ed5553dd2652ac6ffb","signature":"15f59f5f2cdac7afcc21bc97af2852f8db553eb5d0c1048fb665145bf97a25e9","impliedFormat":99},{"version":"c48ea3d2079e2e940389a67fc88869ea47fa0b0fa7076e1e18e2d9d84d4d55a4","signature":"5f2e3749833e8d5ed58df95c3c50837619181d78e72fc50da547d408284ed3b7","impliedFormat":99},{"version":"9eee8e3439d921475e9336277fc406608af37eb3069c5c23ce31231fa09cc33f","signature":"cb5517e60fa4df036d42457710c09b8a1641440c43ad75551c1ad5a43941c6b7","impliedFormat":99},{"version":"69db7957667fe79850bfed052f77a27c5a9577a7a9f11e7a4bbea3f1d80c56cc","signature":"da2f18bf6c3a343c17860f0b914bd2345334e33e43301a629545d3b0a3e5be2f","impliedFormat":99},{"version":"ee3251a708d2457190103fd59da29374430a16bd4d5143c03a05b6012b2b6b7e","signature":"97378325be911ed38092b6000bf28b76b33f76f25b6daa92cd5a1cd691422fc7","impliedFormat":99},{"version":"f49d2d854fb24b8649758313f99025ef81c5425e10b13b13923543580165b890","signature":"79d523464c91f1ea79fe6faf2d8804bbb7675f978274c6ce7ce77e3c5b1abc96","impliedFormat":99},{"version":"a3daf4c5696eb7ec55c0f9de83dcc8e9155fdcc0135da90a98ec1139ed644429","signature":"1aa9899ab9027236cadae0b76d2d6bf980f338c5ddecdd558b3a3a15a156def4","impliedFormat":99},{"version":"9af7b25c0ba085968b6d59a08ad07b2920c0bc57798155fe563a98277c7279ef","signature":"ba095ce85423a35815243abb2d035c4fb41861337bdbe325e0d827a72614b019","impliedFormat":99},{"version":"cc2cbfcd09eb7dd2861c838f2f6bd22abd0247d55a86a48162fca8af3976b273","signature":"78c8f157067470ab43c0d16101e710e389ae1c9ed6c1ceda3e5b78da187816eb","impliedFormat":99},{"version":"ca8618d08063f4e1d8cc1cfedfeb117bfda16285b28a7b5184ec5a05802dface","signature":"3ca43740be40eba41980ec6cf3bf60718d098da19dd3e6f40198b68c91e71ad6","impliedFormat":99},{"version":"6061a6af290d79373eae8ee2fe5ec2cf9bbfd83d868b9a54365163b2b567e17d","signature":"14857862047dd520edd8f278287a9f251679e393f55c0635641263cc17351328","impliedFormat":99},{"version":"97880a541a50834d9816343779f8d69a0a770b4828dfc71a6f97caeb18349d6c","signature":"aea28be4a41c183133559189ddd9e42482b5fdc8ad21f1e1f83fc3ad62eec5ee","impliedFormat":99},{"version":"0a91e9d0492b5e3aa90cc651ce28a8cb8d3a1989d2140f4eed6a445c2ffa6e64","signature":"06679d75be0dd692fa599227d895682237937394c7cf46eaf180c0eb9bddd9d8","impliedFormat":99},{"version":"5aaa27cb043a0fcda731c6168ac1c139af5ac444d2dc4666ea02f32463e396e9","signature":"255038f51d170ac62545fdd29a790e825ca7273a5df372efaf3e9d80a5b49daf","impliedFormat":99},{"version":"5d794808e492da408a1de07dc0e5a1c8b326eb526f566209cf66520985d24d34","signature":"a36b390ff87f1650fd5c4f64c29ff2cdcde7d26087297f3b2b4bf9afda435dce","impliedFormat":99},{"version":"b3be4c983f6b9d439136ff1065daabc5a2ba529a82d2edf3ddd254c47578efdd","signature":"fe98ca76fb99b4eab7b94ed78dcef880e430ed1333ab87346f8fd0bb9e82f8c6","impliedFormat":99},{"version":"77a684ab1fe001164ca35f3e1dc30d7531676bf79001e6439a1a70374c6030d5","signature":"df01cefb77ed5a53579dcf5f419395ab32d9020890d72bbf71cb0c2d3c85ee28","impliedFormat":99},{"version":"6c596c0cbbb7f90acd1d7fea3c012ece781d95d92e5edc01231f9ac984abb533","signature":"5c493166be404976a0a2b26e6560cbadf7534a044e6dbe13fa839a616b49fccb","impliedFormat":99},{"version":"f1dde07dd76a2cdf766ed8c35d8db484dd449b8dde7c751e4549f74aa41b5dda","signature":"931934fc349511cddd2dbf1b7fe86dbbff2fbe20e956ad486cffd8c825069f73","impliedFormat":99},{"version":"004387052fcb8e8a806b1ce9e793684e50ba974f7291ae4343e1b9f4ee560306","signature":"53ae3ede70f024344fe570463ea925d216886bd659f4bdf02435077b596c4da1","impliedFormat":99},{"version":"796300d2a75b7b2b1ad8837c7808298928c803879a64b13ce4d4db2822de66fc","impliedFormat":99},{"version":"3087d9884e878b2c6f2a0121e4b5255ac770ccda4a11bf074f597d220fcec066","signature":"a7f8303bc5308cc0353e6c05fc5b9231d666e5d716b92151bcd3198291d726cd","impliedFormat":99},{"version":"13d9e024e48ba5a4d3056ce2936d422dfe91f673f73ec8c9a622ae4c1cd8a64f","signature":"c95fed85b32e919b9dee556a8cc52e992aff8977b6a1576ac46f6d8fd940b114","impliedFormat":99},{"version":"1763a936b5eccc755a446869dc797a3fcae44fdfacf4ded36d91f7e5ebaba483","signature":"b310ecae0e53eaa3e56d52ca0751f0321cef20e501e70cde2d822ebcdc4279a2","impliedFormat":99},{"version":"c8b4522092975c466f4c2750ba39a9ad53bcb9d3378da787c2648d6c64bbac25","signature":"8c23084bd5224ddfac7e06bbfb994ab02c6247c3d5cd3a93cae5d98f66a1d590","impliedFormat":99},{"version":"738f098ff70bf841000f92b40d2860371b814d80b9baaa8fd02fa73603231e09","impliedFormat":99},{"version":"153a785e949cff2c2443e70662cfa3cccac90a16b812cdcaefcc140aacb7aa4e","signature":"9154c87ea895848ed88fcce709155b8d7b799de87b6ce3a2ff40d51ecacd1777","impliedFormat":99},{"version":"bd28ae8ca434e8d911571af5da318dfbc44eb2bcdf6a6fee0141ab14d3d89fa2","signature":"f5e80f07ca0a33fa87200e623a57bd1a169d1bdc0d4221c85a8063b9225b584a","impliedFormat":99},{"version":"4a97c9f6e9845a62926419ab1b3de277f613bc2219eff1dfa0c760584de353b7","signature":"2d6493891f834ca324029ad9d2d6fef96a1b39783449e5e5d10d15b199b268d3","impliedFormat":99},{"version":"a381760e4c9eb9efef5752147fed96ae2610490268a9eb49fe3c5fe024884e6d","signature":"f7e05642aafa933127d30fbaefe3420a2c071e235f202cfe1297e499ae1cb99d","impliedFormat":99},{"version":"85acd5eb13ea195b16a46e40edb9647185ea4cadfe920b1ce1bf3419343f8fe4","signature":"188564e2c42d91e9a58fb45337a60bd2b75ee84c44a2396ba9f6ee11492ffd76","impliedFormat":99},{"version":"3f6841354b3653693ecf146081f308d4ab8cdb2c8aa6703e068ff89434dd7337","signature":"2b251b91d2d277fa5af82d5c6d54edddb01775ca574879a25a08ad054657e023","impliedFormat":99},{"version":"1056c9a71c54a746462b6a07720c5977e24ea800fd2b214bfa4d4319b7654aa2","signature":"3636e3136cdd6e17d4eb53903f3ba3194676d60cb87471cf2f0f2fd80dcb0130","impliedFormat":99},{"version":"66a1706feeba9516be4fc9a8d0768e384eb5ad5335b8c588b8b25f48a6061773","signature":"81f2699dbf06c7f5e42143e1d130dbb09c28d6368dc40438388b6cfd64e8a1ee","impliedFormat":99},{"version":"b5e5b34c104b04696be7dde30db2c260e88379aba9c63f782683b88b110f7abf","signature":"14fe366983229fd7c58d55796c6a8430f9802de3af08cc7d25a5e413dfb68aa8","impliedFormat":99},{"version":"dff1f65533d52cc58bf30f3d4333c402919bb81fe55c67f5795727b04d4943df","signature":"e1a156cda2f6c358954db22319cbde8b0977c70151ecb3b139a91434ec097251","impliedFormat":99},{"version":"f14d2e3af5f1ea20047985d9f5b981e69a3ccf0bb4ccb1ebdfd08a4cfb152fe2","signature":"f170690311a68cb83299b9672b659493d646f167e0cb255d43a9fe6261f94809","affectsGlobalScope":true,"impliedFormat":99},{"version":"df85910d8ff37d6c434d071cb0e8c775f3a75faa794a42592bd0f6e5edcc1698","signature":"fa4029ce76cdf60886d22d9096ff5c6a948cce10efff76e25a5bbbba3f4c49d0","impliedFormat":99},{"version":"2fd4e26ad53e71404a5baa1af7eac4d6aeb30087e7ad3188da9657f215dbce88","signature":"e2dc767c6fe38a2aece9afa8fa0d2f9b63b04f3c64e1de57929c871ff84a9d5d","impliedFormat":99},{"version":"11bdada6c70784d7fa110e4d8099d146f53de101c440c82e8e45d6012b9c923e","signature":"bbf9190f8a8a15687caf18ff5e88fef4d7fa67cab7e5490a41d5353fa5dab212","impliedFormat":99},{"version":"c6b57e6fe5c155e4b5a26a523c33def1a56e71efc444f69b1d92dbdeaa5a170f","impliedFormat":99},{"version":"cb4df321b842741a6679cce5aede3e4dd578ee938a78163bcd896da0ee9d4e21","signature":"da7c2fd3f3ae9b9df1fcdd0b636f18d66c2657f06fbc6b6d83b99d8de9f35858","impliedFormat":99},{"version":"ed70ac7b8aa899570380e7f8dcf8072b7f84f3a1bfe774bdb9846144c700e5de","signature":"29c41b6a2d48ca25be344d96c6b0064f9b52a54183506049edcc0d1aa28add62","impliedFormat":99},{"version":"b1126023aaa47aace45825ae5329ffe1d55ba27cbe00168696b72e0b9db765fc","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"5f79bd78c17c0541fb0e1d3b46b77959b7fa134255d90123fc4b7e04b1596d4e","signature":"f22e24466c5d71f2c853fe81d61b1791d08f93c911e4f9b72cd5dd0331f4f3bd","impliedFormat":99},{"version":"266bf91c345e5fc075b185a3fd01aa965666b1c0d39990e2fa34c2d77c8ef194","signature":"262f210580fc33eeea270da5ec94741e2eb1f3a57b7764cfecb2d18b16456254","impliedFormat":99},{"version":"4e3a15d410184e2dba17480baaeb15e457e1b1167f062c352748d54aff9999a7","signature":"2fd5d202b9fc54aa649622b1c7df22b6dea459452a4564fe1db903da42451e9c","impliedFormat":99},{"version":"cc4385ce309ccc3a1dc4b12374b46f634364fe1d5caf0092f4ddcc66799b3d1e","signature":"bde3b0971e3875004b42dab865b448c93092d6f647852a6e80a5e88007270a25","impliedFormat":99},{"version":"2a5d233be5bb21b4a8d2da2c7f560b0ea19214fe204d120cf22a8628769c04b2","impliedFormat":99},{"version":"2d0720d5224168044de065f6421d5afa877fc9032698e8e2f78f912e238fbf1d","signature":"b6c954ce490f65f40198d1464185061444e627c6fdcc1403807fea648994eaa6","impliedFormat":99},{"version":"367880472f38e380a93bca6ef38308b96dd7958c7b6032624cdbb7cfdbe3b199","signature":"e8469985371ec33bd5d1bdd91435afba4bde38caff54050efd86cfb465f17d50","impliedFormat":99},{"version":"3e4700a1e487bf7582f7b74434efae5fb397b0a54c2892a99dc995a304086b72","signature":"19f647ae0079c61fccd680b778424e3a7db252e6e26c1f750add3cc0be4973ae","impliedFormat":99},{"version":"3f71bc6c0d98b56d5cfea896ec204735626e1955d9a7c7d94bf2de153fbe5e6d","signature":"29c7486b5e587dbb98742024c78fbbb7732e1b951573dca4b4e9ef4f741a1947","impliedFormat":99},{"version":"08bec151ea29e6b265a8ba0bc04584769b196cbee8dc7ec21dd9628ea4740305","signature":"caf11e5c4d0b1361b6a94b9a4d00675d70c8bb5cedb6dba369cb6a57c065ca43","impliedFormat":99},{"version":"1b4fd2ed22fcadbc4d80bbe62255a0be6b63ab4f1e2784718593dd72f30a7423","signature":"a2a2323c6d8ee15897321ac4255098238a343958e256d04cd959973705d76d84","impliedFormat":99},{"version":"dde1d1040fde605830c2cb7e755b1127efba6340b5abf64f758eacdef23ef51f","signature":"6d5ead5885cf79fe38d54f207f82a3d713281edc63dbcdfc1647e67961c852b4","impliedFormat":99},{"version":"870d1f501f4ec5e9ea2332c01abfb9a22142680282d2c93de80477bc5488eccc","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"2608f6e00dd656708cb83f040dd5bb591b9369782a5525f39197efa4e25ed403","signature":"44179c1bd866fc79e185b84a15eed91dbe8d989673c8e7fd37e0f339281740df","impliedFormat":99},{"version":"6b3d7e8eddf3120c9a2fa15223295f4d97b979815e3c8cdec753d3152477ed42","signature":"7f2ae7498c79bcc1f94d0cb924b1d7dcf38215c00067584559003c4c62030948","impliedFormat":99},{"version":"4b9d28adbaec9ceebd62c2400e11871f2d0ba83963221463ceb7e75ef66617aa","signature":"92a6abbfeadf0a7e84e763c66a69047e49bcbb2784f5d1485887c469cf533e47","impliedFormat":99},{"version":"af120b5ba1adc693ed283b237d5e28bfdf3dc5255a6027c0e1492f7cacd4e0bb","signature":"74a89c01b875bd26429b36e6d618671a567c2ea2a339f86a9f84f45ead879a4f","impliedFormat":99},{"version":"d091eecf646a13e1409071d4237d776902ca0ea10e97d365433c3e4ef31d9970","signature":"51149206f9e92c557574822d9d9406945ede0d386adcde87c9af6e668d87188d","impliedFormat":99},{"version":"50d251d7cd6ae2f56486226b43f12f398b61e95745371f1e77abbb52733c2be4","impliedFormat":99},{"version":"20c2d6428827a805aa446c678174644c5ef5c4c10fed12031737f1bd191b8168","signature":"1262ab6591ed9f03c13aed6ad33214e1f450808318cb0ff67d89d0be3fad6166","impliedFormat":99},{"version":"adc3703d8ad5174cff601808a93e05ab4749d3f15b9fe62b91277d5388da6358","signature":"a736481d695ceb5521ceb50eac92e3792a4c15c650817541ab4b80549144cdd3","impliedFormat":99},{"version":"936b814700f1378c999fe7226810673afa380eec0860d51d940e3e7fa4c97a56","signature":"653c25edf2805d56614406e017ce0ad340e4f9ce17baa7a54002bad57b760a3b","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"d6456a65434c2bc7313ad672cbd9b3db099cc97720c763523e27beb4983b7ced","signature":"54d4dc1c5d16be78a3629012bcd06d39ec26834fe2f475ccf15ca5f475cebeba","impliedFormat":99},{"version":"07c6cf14470fc3bcd7cb487b46664f36d3079f3912819e85a7f291b8e133c6f1","signature":"481e5dc54e1b7460b2be62b6232804653500d44389de34bfca05de772c4243cb","impliedFormat":99},{"version":"2a3e65e043b1b12b3aa7c0917012974f23ec060b82bac15d34738744afb879b2","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"708c828c7d5e764ae00cbb3f1ee14727f6872227748e26c693aa461c60416f18","signature":"76311ab631abc0c007eec50c490edb7f0481bf2ecc0f220badcec58974ecd36f","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"336af98db344d1e4ad0b9ae5c3449b9163f5d5e3bd8bb44f93f6782d8a614789","signature":"8ebe94eb782af49c27e0aca58ad3c6f18440deeb1518c8b1fd9bd5b6a453a500","impliedFormat":99},{"version":"79b546ffbe13602ed4d6396ce807f0106247fdfd29ff09bed10f185dfd41cc1d","affectsGlobalScope":true,"impliedFormat":99},{"version":"25da943184d25467f15c2c236e95c4952988a977d75f3bacd908d1e0315a9e14","affectsGlobalScope":true,"impliedFormat":99},{"version":"678bb36fc31a9b2f12386f5d549079b1d908872c3b72dc0ad366957fd16f61cd","impliedFormat":99},{"version":"14c6779c3bbde97a2bcd7fd0ef4cd79111f4be5b7471056661c24cea88d6ed4a","impliedFormat":99},{"version":"4bfd39d0cdfe9dd04d2d2591d0a5b662517108b66afbd094dacde05f8bb7df52","signature":"240aa34968c331a53db90dc69115cc64f34e7ede02640664b8aa5670b6d7a23e","impliedFormat":99},{"version":"e793564c306d0eda21dde7ceea3be4c7717c5b5ca1e7ffc3991df729e0707161","signature":"c88fde9d1b3c954c8739f899d9114c860641206751d162c160abc8b8f45ef425","impliedFormat":99},{"version":"4ea88279dee123b4ebd3d4e485ecc12704e14abf99d8c593de20c522e1bcbc9d","signature":"64cc8864b1ea2d97180232b1d80210817990701bd4deb8222b30cc1c5d79b79a","impliedFormat":99},{"version":"26005abec69a63766138934b590280ac55d8a182211ffbd47aaa2d4ff1c03b2c","signature":"49967a774900d5efb2e54c63324d87d3a87e21d85831b867371be0971a064a5f","impliedFormat":99},{"version":"e322237875b9ea1490e14a5af7f024061f0acbe428ccd4f0b6cd7d4343dc374b","signature":"adcc70e6be513d6eb2c095bf474bcc21bd56c926e7b673d3f18bab19d3aedbbe","impliedFormat":99},{"version":"2c24b818407714b7b252be4bb750c84a804a19551c79f6adeab9972590857ddd","signature":"e333ddc99377b1d52ee539700737a245cfed4efd012079a8f9a7c653af7927ef","impliedFormat":99},{"version":"0c0c4556bb1e789b845f628176d0c1de2f43323c41eca6e49c0e9c4657bebe50","signature":"3b3a330c1c4b0fac7313149d9ebbdb3e29d454d9496cc324dd2e451926e7b4d6","impliedFormat":99},{"version":"a92b10f4ca8a728c50d8b5cbf016fef30f27d1674c24caf6a96e6724e14dda18","signature":"ae45b6569b8e8c9aa9ec40a3cb876ba030d66e42fbbf8d7a989e198946d538bf","impliedFormat":99},{"version":"ca452a778322112acf74d2542d39fd7e2d2c4687aedcf0fe895d60ca1fbb536b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"5a5ccfa4bdfb11b65c2e8fdc7a4decf932b94bc278b52be2cbb9a9a9f03a1f09","signature":"2254167d50d4863715e4b65ddf565b61851428456ccbef73fa3cc0bb5cea775f","impliedFormat":99},{"version":"8980d0a4f7c16eb53482aba68fe89c7568600ad167289349b4b5f718e909572d","signature":"fe18faa65edfe9771725a590d2de31a012a8a2806f9664f53703fc3a79f7daee","impliedFormat":99},{"version":"8d27cceff306f637ddff3aa213c736ea0acb9f76ee537422bb85cedb17b18dd7","signature":"f9bd5ef547af371b4c82562ecf7ac63f1e131fdf53305e1796773bbcf8feb567","impliedFormat":99},{"version":"822d16d5fd3500cfff3ac157063335c81552c92f4cb1e8bbd99f9b03f5fc5fef","signature":"14066e22f15a42d2d2e4764306025cf6cbdd12a03fbbd0ba98dab80ebfd96521","impliedFormat":99},{"version":"f42b36d8f5d78ae776038704755771a0f43f94ead777c2efbc0ebd3d7813ec96","signature":"b291197359a4e6e72c1f80dc096109670025ece2f1b6fb870150a6b139256faf","impliedFormat":99},{"version":"68bb5811ccb769c731f87f371d1538537837ebee3c6c7c2ad57c56acff731b51","signature":"0089db34aa8ee3ea5a70e5e870cca31fcd2e78c1f1370ae7567da16f143cf54d","impliedFormat":99},{"version":"72b9c73838eebc3317e0c97b6a2081734ac3e40ed78270e76ac240ef9ad407c3","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"0c575d14238232540c906b15590ee78e95ebe95c901ff91c51fee3a3e1c2c3d4","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"6c06c0fc5a2469adb1404eba8ef3a30cc424fea70ff03924e48924b60b8803f8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"df04ae666f83c05fd637c087efa4d43029f110f0b1ed8c919cb99bf2c5443571","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"90a65ab163a6c0ec0bec6fc0b58c512be1508ec86eb27bd3265687d67d660632","signature":"0b284bb8f8da24c32f9924669dd45aabe175a0dd613f24fdd23fe9cdf28a063a","impliedFormat":99},{"version":"91088a50b9f609c033af7927eccf1b6ccd094753863ca77d9b5cc6d9ba18297e","signature":"34d19490cbc4b70ed0c135987ab493e7a5eb41e68b7f88f6bcbf30888bfb4ac3","impliedFormat":99},{"version":"9e283a34f47a67a4b2640c92aa30d8754c970ae672d8600d78380a9d36e7a79b","signature":"536f42adb64860ea9be496a8dfed81d64713e92eedfe1607c05890bb6108472d","impliedFormat":99},{"version":"bcecbfedd71cf6a3ec77bd5b2ba384c0bdf4cf9616798b8b44979248e4d9636c","signature":"75fd465af8bc2a90ab4c06c6973eb3cdee21f5160c7e50ba22e7015df70d7e9c","impliedFormat":99},{"version":"1271a7967dfe0b5332e9fd065b555a2a1aa162d122738281748520741411ceca","signature":"e16d639819c88570a550b8f132dae9c78c16a5f83e08e8094fc9046c654b9a10","impliedFormat":99},{"version":"c6ea1653c07ecbd83530e7fdee2052fd4cc1279860760e42b15d171955cefdab","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"f462b6fc33bc3f82d1551ac0678834dfff89192ce1e848eb0bb8ca5bfe8bc76f","impliedFormat":99},{"version":"eb9096c517da313cbedce8818d9cadb82bbf02cd6f4a65db4cee42ac01f4272c","impliedFormat":99},{"version":"b58404374a2136ead99a669fd46ef7badc3e5b359c863113141e2cfb3b75bea9","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"87d3f3f4a1f80a5b87450fff51b9d892e4616c4db0bc34801760e11494fc46af","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"87d3f3f4a1f80a5b87450fff51b9d892e4616c4db0bc34801760e11494fc46af","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"d77cead3c5f46ab418c725fa7f434733c4a1a067c02642921a44765c4f9d54b5","signature":"c683ae59e8697d4c2f96be1a5553375a12f4474a25c0363cdb6b81ac260c0065","impliedFormat":99},{"version":"c1c8a45ca8b21b12823644937601d83725caf77c1ab0e4a48b580c06bbf82d06","signature":"e7c12d840674d4f180fc5facc0d0896bf4554cfbcc862ddb2120eb09d6424726","impliedFormat":99},"00c4b9d31304a540473a020109881c733eaeb6fa0bd48be5935db3b5a71353e0",{"version":"19efad8495a7a6b064483fccd1d2b427403dd84e67819f86d1c6ee3d7abf749c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1eef826bc4a19de22155487984e345a34c9cd511dd1170edc7a447cb8231dd4a","affectsGlobalScope":true,"impliedFormat":99},{"version":"865a2612f5ec073dd48d454307ccabb04c48f8b96fda9940c5ebfe6b4b451f51","impliedFormat":1},{"version":"a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8","impliedFormat":1},{"version":"1be330b3a0b00590633f04c3b35db7fa618c9ee079258e2b24c137eb4ffcd728","impliedFormat":1}],"root":[64,65,[203,269],[271,274],[276,353],[356,362]],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"jsx":2,"module":199,"noFallthroughCasesInSwitch":true,"noPropertyAccessFromIndexSignature":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"strict":true,"target":9,"verbatimModuleSyntax":true},"referencedMap":[[361,1],[360,2],[66,3],[115,4],[116,4],[117,5],[76,6],[118,7],[119,8],[120,9],[71,3],[74,10],[72,3],[73,3],[121,11],[122,12],[123,13],[124,14],[125,15],[126,16],[127,16],[129,17],[128,18],[130,19],[131,20],[132,21],[114,22],[75,3],[133,23],[134,24],[135,25],[168,26],[136,27],[137,28],[138,29],[139,30],[140,31],[141,32],[142,33],[143,34],[144,35],[145,36],[146,36],[147,37],[148,3],[149,3],[150,38],[152,39],[151,40],[153,41],[154,42],[155,43],[156,44],[157,45],[158,46],[159,47],[160,48],[161,49],[162,50],[163,51],[164,52],[165,53],[166,54],[167,55],[367,56],[201,57],[366,57],[202,58],[365,57],[67,3],[69,59],[275,60],[270,3],[68,3],[175,3],[192,61],[190,62],[191,63],[179,64],[180,62],[187,65],[178,66],[183,67],[193,3],[184,68],[189,69],[195,70],[194,71],[177,72],[185,73],[186,74],[181,75],[188,61],[182,76],[169,77],[70,78],[176,3],[355,79],[354,3],[62,3],[63,3],[11,3],[12,3],[14,3],[13,3],[2,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[3,3],[23,3],[24,3],[4,3],[25,3],[29,3],[26,3],[27,3],[28,3],[30,3],[31,3],[32,3],[5,3],[33,3],[34,3],[35,3],[36,3],[6,3],[40,3],[37,3],[38,3],[39,3],[41,3],[7,3],[42,3],[47,3],[48,3],[43,3],[44,3],[45,3],[46,3],[8,3],[52,3],[49,3],[50,3],[51,3],[53,3],[9,3],[54,3],[55,3],[56,3],[58,3],[57,3],[59,3],[60,3],[10,3],[61,3],[1,3],[92,80],[102,81],[91,80],[112,82],[83,83],[82,84],[111,85],[105,86],[110,87],[85,88],[99,89],[84,90],[108,91],[80,92],[79,85],[109,93],[81,94],[86,95],[87,3],[90,95],[77,3],[113,96],[103,97],[94,98],[95,99],[97,100],[93,101],[96,102],[106,85],[88,103],[89,104],[98,105],[78,106],[101,97],[100,95],[104,3],[107,107],[364,108],[200,109],[174,110],[173,111],[171,111],[170,3],[172,112],[198,3],[363,113],[197,3],[196,3],[199,114],[362,3],[205,115],[206,116],[207,116],[287,117],[221,118],[222,119],[289,120],[223,2],[224,121],[218,122],[288,123],[208,124],[214,125],[64,3],[229,31],[290,126],[227,3],[209,3],[358,3],[242,127],[215,128],[219,2],[217,2],[216,129],[291,130],[243,131],[230,132],[292,133],[225,2],[293,3],[264,132],[280,134],[265,135],[279,2],[255,136],[254,137],[294,3],[295,2],[263,138],[236,139],[237,140],[298,141],[213,142],[249,143],[246,3],[269,3],[228,144],[296,2],[250,145],[252,146],[251,145],[226,147],[300,148],[297,3],[220,149],[65,150],[301,151],[303,152],[304,153],[305,154],[272,155],[306,150],[276,156],[307,3],[308,157],[309,150],[310,158],[277,159],[274,160],[271,60],[311,2],[312,161],[244,162],[284,163],[285,150],[313,164],[210,165],[286,3],[239,166],[233,167],[234,168],[235,169],[238,170],[314,171],[241,172],[232,173],[282,174],[281,175],[315,176],[283,177],[259,178],[260,179],[240,180],[248,181],[258,182],[316,183],[268,184],[261,185],[262,186],[256,187],[257,188],[317,3],[247,3],[318,2],[212,189],[273,3],[319,3],[320,190],[321,3],[278,191],[322,150],[323,3],[204,192],[324,3],[325,3],[326,17],[327,193],[299,132],[328,3],[330,194],[329,3],[331,195],[302,3],[267,196],[332,197],[333,198],[334,199],[266,3],[336,200],[337,3],[338,201],[253,201],[335,150],[231,202],[342,203],[345,204],[344,204],[346,205],[347,205],[343,206],[341,207],[339,208],[349,209],[351,210],[357,211],[352,212],[356,213],[353,214],[359,211],[348,215],[350,216],[340,217],[203,218],[245,219],[211,2]],"latestChangedDtsFile":"./client.d.ts","version":"5.8.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-react-server",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "description": "Vite plugin for React Server Components (RSC)",
5
5
  "type": "module",
6
6
  "main": "./dist/plugin/index.js",
@@ -567,9 +567,6 @@ export function transformModuleWithPreservedFunctions(
567
567
  // Add registrations after the source code
568
568
  let lineNum = lines.length + 1;
569
569
  for (const entry of exportedEntries) {
570
- if (entry.type === 'function') {
571
- lines.push(`if (typeof ${entry.localName} === "function") `);
572
- }
573
570
  lines.push(`registerServerReference(${entry.localName}, ${JSON.stringify(moduleId)}, ${JSON.stringify(entry.exportedName)});`);
574
571
  // Create a mapping for each registration line
575
572
  mappingInfos.push({