@goldstack/template-ssr-server 0.1.6 → 0.1.9

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.
@@ -1,5 +1,7 @@
1
1
  import React from 'react';
2
2
  import type { APIGatewayProxyEventV2, APIGatewayProxyResultV2 } from 'aws-lambda';
3
+ import type { ESBuildConfiguration } from '@goldstack/template-ssr-server-compile-bundle';
4
+ export type { ESBuildConfiguration };
3
5
  export declare const clientBundleFileName = "client.bundle.js";
4
6
  export declare const clientCSSFileName = "client.bundle.css";
5
7
  export interface RenderDocumentProps {
@@ -13,6 +15,7 @@ export interface RenderPageProps<PropType> {
13
15
  renderDocument: (props: RenderDocumentProps) => string;
14
16
  component: React.FunctionComponent<PropType>;
15
17
  properties: PropType;
18
+ esbuildConfig: () => ESBuildConfiguration;
16
19
  }
17
- export declare const renderPage: <PropType>({ entryPoint, event, renderDocument, component, properties, }: RenderPageProps<PropType>) => Promise<APIGatewayProxyResultV2>;
20
+ export declare const renderPage: <PropType>({ entryPoint, event, renderDocument, component, properties, esbuildConfig, }: RenderPageProps<PropType>) => Promise<APIGatewayProxyResultV2>;
18
21
  //# sourceMappingURL=templateSSRServer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"templateSSRServer.d.ts","sourceRoot":"","sources":["../../src/templateSSRServer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EACV,sBAAsB,EACtB,uBAAuB,EACxB,MAAM,YAAY,CAAC;AAQpB,eAAO,MAAM,oBAAoB,qBAAqB,CAAC;AACvD,eAAO,MAAM,iBAAiB,sBAAsB,CAAC;AAErD,MAAM,WAAW,mBAAmB;IAClC,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,eAAe,CAAC,QAAQ;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,sBAAsB,CAAC;IAC9B,cAAc,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,MAAM,CAAC;IACvD,SAAS,EAAE,KAAK,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC;IAC7C,UAAU,EAAE,QAAQ,CAAC;CACtB;AAED,eAAO,MAAM,UAAU,0GAMQ,QAAQ,uBAAuB,CAwE7D,CAAC"}
1
+ {"version":3,"file":"templateSSRServer.d.ts","sourceRoot":"","sources":["../../src/templateSSRServer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EACV,sBAAsB,EACtB,uBAAuB,EACxB,MAAM,YAAY,CAAC;AAQpB,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,+CAA+C,CAAC;AAE1F,YAAY,EAAE,oBAAoB,EAAE,CAAC;AAErC,eAAO,MAAM,oBAAoB,qBAAqB,CAAC;AACvD,eAAO,MAAM,iBAAiB,sBAAsB,CAAC;AAErD,MAAM,WAAW,mBAAmB;IAClC,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,eAAe,CAAC,QAAQ;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,sBAAsB,CAAC;IAC9B,cAAc,EAAE,CAAC,KAAK,EAAE,mBAAmB,KAAK,MAAM,CAAC;IACvD,SAAS,EAAE,KAAK,CAAC,iBAAiB,CAAC,QAAQ,CAAC,CAAC;IAC7C,UAAU,EAAE,QAAQ,CAAC;IACrB,aAAa,EAAE,MAAM,oBAAoB,CAAC;CAC3C;AAED,eAAO,MAAM,UAAU,yHAOQ,QAAQ,uBAAuB,CA8E7D,CAAC"}
@@ -11,7 +11,7 @@ const utils_esbuild_1 = require("@goldstack/utils-esbuild");
11
11
  const fs_1 = require("fs");
12
12
  exports.clientBundleFileName = 'client.bundle.js';
13
13
  exports.clientCSSFileName = 'client.bundle.css';
14
- const renderPage = async ({ entryPoint, event, renderDocument, component, properties, }) => {
14
+ const renderPage = async ({ entryPoint, event, renderDocument, component, properties, esbuildConfig, }) => {
15
15
  if (event.queryStringParameters && event.queryStringParameters['resource']) {
16
16
  if (event.queryStringParameters['resource'].indexOf('js') > -1) {
17
17
  if (process.env.AWS_LAMBDA_FUNCTION_NAME) {
@@ -29,9 +29,10 @@ const renderPage = async ({ entryPoint, event, renderDocument, component, proper
29
29
  // if not running in Lambda build bundle dynamically
30
30
  return (0, lambda_compression_1.compress)(event,
31
31
  // eslint-disable-next-line @typescript-eslint/no-var-requires
32
- require((0, utils_esbuild_1.excludeInBundle)('./compileBundle')).bundleResponse({
32
+ require((0, utils_esbuild_1.excludeInBundle)('@goldstack/template-ssr-server-compile-bundle')).bundleResponse({
33
33
  entryPoint,
34
34
  initialProperties: properties,
35
+ esbuildConfig: esbuildConfig(),
35
36
  }));
36
37
  }
37
38
  }
@@ -49,8 +50,9 @@ const renderPage = async ({ entryPoint, event, renderDocument, component, proper
49
50
  else {
50
51
  return (0, lambda_compression_1.compress)(event,
51
52
  // eslint-disable-next-line @typescript-eslint/no-var-requires
52
- require((0, utils_esbuild_1.excludeInBundle)('./compileBundle')).sourceMapResponse({
53
+ require((0, utils_esbuild_1.excludeInBundle)('@goldstack/template-ssr-server-compile-bundle')).sourceMapResponse({
53
54
  entryPoint,
55
+ esbuildConfig: esbuildConfig(),
54
56
  }));
55
57
  }
56
58
  }
@@ -1 +1 @@
1
- {"version":3,"file":"templateSSRServer.js","sourceRoot":"","sources":["../../src/templateSSRServer.ts"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAO1B,2DAA8C;AAE9C,6CAAkD;AAClD,4DAA2D;AAC3D,2BAAkC;AAErB,QAAA,oBAAoB,GAAG,kBAAkB,CAAC;AAC1C,QAAA,iBAAiB,GAAG,mBAAmB,CAAC;AAgB9C,MAAM,UAAU,GAAG,KAAK,EAAY,EACzC,UAAU,EACV,KAAK,EACL,cAAc,EACd,SAAS,EACT,UAAU,GACgB,EAAoC,EAAE;IAChE,IAAI,KAAK,CAAC,qBAAqB,IAAI,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,EAAE;QAC1E,IAAI,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE;YAC9D,IAAI,OAAO,CAAC,GAAG,CAAC,wBAAwB,EAAE;gBACxC,0DAA0D;gBAC1D,OAAO,IAAA,6BAAQ,EAAC,KAAK,EAAE;oBACrB,UAAU,EAAE,GAAG;oBACf,OAAO,EAAE;wBACP,cAAc,EAAE,wBAAwB;wBACxC,SAAS,EAAE,qBAAqB;qBACjC;oBACD,IAAI,EAAE,4BAA4B,IAAI,CAAC,SAAS,CAC9C,UAAU,CACX,IAAI,IAAA,iBAAY,EAAC,4BAAoB,EAAE,OAAO,CAAC,EAAE;iBACnD,CAAC,CAAC;aACJ;iBAAM;gBACL,oDAAoD;gBACpD,OAAO,IAAA,6BAAQ,EACb,KAAK;gBACL,8DAA8D;gBAC9D,OAAO,CAAC,IAAA,+BAAe,EAAC,iBAAiB,CAAC,CAAC,CAAC,cAAc,CAAC;oBACzD,UAAU;oBACV,iBAAiB,EAAE,UAAU;iBAC9B,CAAC,CACH,CAAC;aACH;SACF;QAED,IAAI,KAAK,CAAC,qBAAqB,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,EAAE;YACrE,IAAI,OAAO,CAAC,GAAG,CAAC,wBAAwB,EAAE;gBACxC,6DAA6D;gBAC7D,OAAO,IAAA,6BAAQ,EAAC,KAAK,EAAE;oBACrB,UAAU,EAAE,GAAG;oBACf,OAAO,EAAE;wBACP,cAAc,EAAE,kBAAkB;qBACnC;oBACD,IAAI,EAAE,IAAA,iBAAY,EAAC,4BAAoB,GAAG,MAAM,EAAE,OAAO,CAAC;iBAC3D,CAAC,CAAC;aACJ;iBAAM;gBACL,OAAO,IAAA,6BAAQ,EACb,KAAK;gBACL,8DAA8D;gBAC9D,OAAO,CAAC,IAAA,+BAAe,EAAC,iBAAiB,CAAC,CAAC,CAAC,iBAAiB,CAAC;oBAC5D,UAAU;iBACX,CAAC,CACH,CAAC;aACH;SACF;KACF;IAED,MAAM,IAAI,GAAG,IAAA,uBAAc,EAAC,eAAK,CAAC,aAAa,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC;IAExE,IAAI,MAA0B,CAAC;IAC/B,4EAA4E;IAC5E,IAAI,OAAO,CAAC,GAAG,CAAC,wBAAwB,EAAE;QACxC,MAAM,GAAG,IAAA,iBAAY,EAAC,yBAAiB,EAAE,OAAO,CAAC,CAAC;KACnD;SAAM;QACL,MAAM,GAAG,SAAS,CAAC;KACpB;IAED,MAAM,QAAQ,GAAG,cAAc,CAAC;QAC9B,aAAa,EAAE,cAAc;QAC7B,MAAM;QACN,YAAY,EAAE,IAAI;KACnB,CAAC,CAAC;IACH,OAAO,IAAA,6BAAQ,EAAC,KAAK,EAAE;QACrB,UAAU,EAAE,GAAG;QACf,OAAO,EAAE;YACP,cAAc,EAAE,WAAW;SAC5B;QACD,IAAI,EAAE,QAAQ;KACf,CAAC,CAAC;AACL,CAAC,CAAC;AA9EW,QAAA,UAAU,cA8ErB"}
1
+ {"version":3,"file":"templateSSRServer.js","sourceRoot":"","sources":["../../src/templateSSRServer.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goldstack/template-ssr-server",
3
- "version": "0.1.6",
3
+ "version": "0.1.9",
4
4
  "description": "Building blocks for implementing server-side rendered pages.",
5
5
  "keywords": [
6
6
  "goldstack",
@@ -38,30 +38,28 @@
38
38
  "version:apply:force": "yarn version $@ && yarn version apply"
39
39
  },
40
40
  "dependencies": {
41
- "@goldstack/infra": "0.3.38",
42
- "@goldstack/infra-aws": "0.3.47",
43
- "@goldstack/utils-aws-lambda": "0.1.36",
44
- "@goldstack/utils-esbuild": "0.4.3",
45
- "@goldstack/utils-package": "0.3.41",
46
- "@goldstack/utils-package-config-embedded": "0.4.5",
47
- "@goldstack/utils-sh": "0.4.33",
48
- "@goldstack/utils-template": "0.3.37",
49
- "@goldstack/utils-terraform": "0.3.71",
50
- "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.11",
51
- "esbuild": "^0.14.48",
52
- "esbuild-css-modules-client-plugin": "0.1.4",
53
- "lambda-compression": "0.1.2",
41
+ "@goldstack/infra": "0.3.39",
42
+ "@goldstack/infra-aws": "0.3.48",
43
+ "@goldstack/template-ssr-server-compile-bundle": "0.1.2",
44
+ "@goldstack/utils-aws-lambda": "0.1.38",
45
+ "@goldstack/utils-esbuild": "0.4.4",
46
+ "@goldstack/utils-package": "0.3.42",
47
+ "@goldstack/utils-package-config-embedded": "0.4.6",
48
+ "@goldstack/utils-sh": "0.4.34",
49
+ "@goldstack/utils-template": "0.3.38",
50
+ "@goldstack/utils-terraform": "0.3.72",
51
+ "lambda-compression": "0.1.3",
54
52
  "react": "^18.2.0",
55
53
  "react-dom": "^18.2.0",
56
54
  "source-map-support": "^0.5.21"
57
55
  },
58
56
  "devDependencies": {
59
57
  "@goldstack/utils-docs-cli": "0.3.11",
60
- "@goldstack/utils-git": "0.1.36",
61
- "@goldstack/utils-package-config-generate": "0.2.17",
58
+ "@goldstack/utils-git": "0.1.37",
59
+ "@goldstack/utils-package-config-generate": "0.2.18",
62
60
  "@types/aws-lambda": "^8.10.88",
63
- "@types/jest": "^27.5.1",
64
- "@types/node": "^17.0.33",
61
+ "@types/jest": "^28.1.8",
62
+ "@types/node": "^18.7.13",
65
63
  "@types/react": "^18.0.15",
66
64
  "@types/sha256": "^0",
67
65
  "@types/yargs": "^17.0.10",
@@ -1,21 +0,0 @@
1
- import { APIGatewayProxyResultV2 } from 'aws-lambda';
2
- export interface CompileBundleResponse {
3
- bundle: string;
4
- sourceMap?: string;
5
- metaFile?: string;
6
- }
7
- export declare const compileBundle: ({ entryPoint, metaFile, sourceMap, initialProperties, includeCss, }: {
8
- entryPoint: string;
9
- metaFile?: boolean | undefined;
10
- sourceMap?: boolean | undefined;
11
- initialProperties?: any;
12
- includeCss: boolean;
13
- }) => Promise<CompileBundleResponse>;
14
- export declare const bundleResponse: ({ entryPoint, initialProperties, }: {
15
- entryPoint: string;
16
- initialProperties?: any;
17
- }) => Promise<APIGatewayProxyResultV2>;
18
- export declare const sourceMapResponse: ({ entryPoint, }: {
19
- entryPoint: string;
20
- }) => Promise<APIGatewayProxyResultV2>;
21
- //# sourceMappingURL=compileBundle.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"compileBundle.d.ts","sourceRoot":"","sources":["../../src/compileBundle.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,uBAAuB,EAAE,MAAM,YAAY,CAAC;AAoCrD,MAAM,WAAW,qBAAqB;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAsBD,eAAO,MAAM,aAAa;gBAOZ,MAAM;;;wBAGE,GAAG;gBACX,OAAO;MACjB,QAAQ,qBAAqB,CAyChC,CAAC;AAEF,eAAO,MAAM,cAAc;gBAIb,MAAM;wBACE,GAAG;MACrB,QAAQ,uBAAuB,CAkBlC,CAAC;AAoBF,eAAO,MAAM,iBAAiB;gBAGhB,MAAM;MAChB,QAAQ,uBAAuB,CAsBlC,CAAC"}
@@ -1,138 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.sourceMapResponse = exports.bundleResponse = exports.compileBundle = void 0;
7
- const esbuild_1 = require("esbuild");
8
- const esbuild_plugin_pnp_1 = require("@yarnpkg/esbuild-plugin-pnp");
9
- const esbuild_css_modules_client_plugin_1 = __importDefault(require("esbuild-css-modules-client-plugin"));
10
- const utils_sh_1 = require("@goldstack/utils-sh");
11
- const path_1 = require("path");
12
- const sharedConfig = (includeCss) => {
13
- return {
14
- plugins: [
15
- (0, esbuild_css_modules_client_plugin_1.default)({
16
- excludeCSSInject: !includeCss,
17
- }),
18
- (0, esbuild_plugin_pnp_1.pnpPlugin)(),
19
- ],
20
- bundle: true,
21
- outfile: '/dist/tmp/bundle.js',
22
- external: [
23
- 'esbuild',
24
- '@yarnpkg/esbuild-plugin-pnp',
25
- '@goldstack/template-ssr-server', // this is only required on the server side
26
- ],
27
- minify: true,
28
- platform: 'browser',
29
- format: 'iife',
30
- treeShaking: true,
31
- };
32
- };
33
- const getEsBuildConfig = (entryPoint) => {
34
- const esbuildConfig = (0, utils_sh_1.readToType)('./esbuild.config.json');
35
- const esbuildLocalPath = (0, utils_sh_1.changeExtension)((0, path_1.dirname)(entryPoint), '.esbuild.config.json');
36
- const localEsbuildConfig = (0, utils_sh_1.readToType)(esbuildLocalPath);
37
- return { ...esbuildConfig, ...localEsbuildConfig };
38
- };
39
- const getOutput = (extension, result) => {
40
- const matchedFiles = result.outputFiles.filter((file) => file.path.endsWith(extension));
41
- if (matchedFiles.length !== 1) {
42
- throw new Error(`Invalid output from esbuild. Expected only one '${extension}' file but found ${matchedFiles.length}`);
43
- }
44
- const output = Buffer.from(matchedFiles[0].contents).toString('utf-8');
45
- return output;
46
- };
47
- const compileBundle = async ({ entryPoint, metaFile, sourceMap, initialProperties, includeCss, }) => {
48
- const res = await (0, esbuild_1.build)({
49
- ...sharedConfig(includeCss),
50
- entryPoints: [entryPoint],
51
- metafile: metaFile,
52
- sourcemap: sourceMap ? 'inline' : undefined,
53
- ...getEsBuildConfig(entryPoint),
54
- write: false,
55
- });
56
- const output = getOutput('.js', res);
57
- let result = {
58
- bundle: '',
59
- };
60
- if (!sourceMap) {
61
- result.bundle = output;
62
- }
63
- else {
64
- result.bundle = removeSourceMap(output);
65
- }
66
- if (initialProperties) {
67
- result.bundle = `window.initialProperties = ${JSON.stringify(initialProperties)};${result.bundle}`;
68
- }
69
- if (metaFile) {
70
- result = {
71
- ...result,
72
- metaFile: JSON.stringify(res.metafile),
73
- };
74
- }
75
- if (sourceMap) {
76
- result = {
77
- ...result,
78
- sourceMap: extractSourceMap(output),
79
- };
80
- }
81
- return result;
82
- };
83
- exports.compileBundle = compileBundle;
84
- const bundleResponse = async ({ entryPoint, initialProperties, }) => {
85
- const res = await (0, exports.compileBundle)({
86
- entryPoint,
87
- initialProperties,
88
- includeCss: true,
89
- });
90
- return {
91
- statusCode: 201,
92
- headers: {
93
- 'Content-Type': 'application/javascript',
94
- 'Cache-Control': 'no-cache, no-store, must-revalidate',
95
- Pragma: 'no-cache',
96
- Expire: '0',
97
- SourceMap: '?resource=sourcemap',
98
- },
99
- body: res.bundle,
100
- };
101
- };
102
- exports.bundleResponse = bundleResponse;
103
- const extractSourceMap = (output) => {
104
- const marker = '//# sourceMappingURL=data:application/json;base64,';
105
- const startContent = output.indexOf(marker) + marker.length;
106
- const sourceMapBase64Data = output.substring(startContent);
107
- const sourceMapData = Buffer.from(sourceMapBase64Data, 'base64').toString('utf-8');
108
- return sourceMapData;
109
- };
110
- const removeSourceMap = (output) => {
111
- const marker = '//# sourceMappingURL=data:application/json;base64,';
112
- const startContent = output.indexOf(marker);
113
- const withoutSourceMap = output.substring(0, startContent);
114
- return withoutSourceMap;
115
- };
116
- const sourceMapResponse = async ({ entryPoint, }) => {
117
- const res = await (0, esbuild_1.build)({
118
- ...sharedConfig(false),
119
- entryPoints: [entryPoint],
120
- sourcemap: 'inline',
121
- ...getEsBuildConfig(entryPoint),
122
- write: false,
123
- });
124
- const output = Buffer.from(res.outputFiles[0].contents).toString('utf-8');
125
- const sourceMapData = extractSourceMap(output);
126
- return {
127
- statusCode: 201,
128
- headers: {
129
- 'Content-Type': 'application/json',
130
- 'Cache-Control': 'no-cache, no-store, must-revalidate',
131
- Pragma: 'no-cache',
132
- Expire: '0',
133
- },
134
- body: sourceMapData,
135
- };
136
- };
137
- exports.sourceMapResponse = sourceMapResponse;
138
- //# sourceMappingURL=compileBundle.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"compileBundle.js","sourceRoot":"","sources":["../../src/compileBundle.ts"],"names":[],"mappings":";;;;;;AAAA,qCAAuE;AACvE,oEAAwD;AAExD,0GAA0D;AAG1D,kDAAkE;AAClE,+BAA+B;AAE/B,MAAM,YAAY,GAAG,CAAC,UAAmB,EAAgB,EAAE;IACzD,OAAO;QACL,OAAO,EAAE;YACP,IAAA,2CAAS,EAAC;gBACR,gBAAgB,EAAE,CAAC,UAAU;aAC9B,CAAC;YACF,IAAA,8BAAS,GAAE;SACZ;QACD,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,qBAAqB;QAC9B,QAAQ,EAAE;YACR,SAAS;YACT,6BAA6B;YAC7B,gCAAgC,EAAE,2CAA2C;SAC9E;QACD,MAAM,EAAE,IAAI;QACZ,QAAQ,EAAE,SAAS;QACnB,MAAM,EAAE,MAAM;QACd,WAAW,EAAE,IAAI;KAClB,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,gBAAgB,GAAG,CAAC,UAAkB,EAAgB,EAAE;IAC5D,MAAM,aAAa,GAAG,IAAA,qBAAU,EAAe,uBAAuB,CAAC,CAAC;IACxE,MAAM,gBAAgB,GAAG,IAAA,0BAAe,EACtC,IAAA,cAAO,EAAC,UAAU,CAAC,EACnB,sBAAsB,CACvB,CAAC;IACF,MAAM,kBAAkB,GAAG,IAAA,qBAAU,EAAe,gBAAgB,CAAC,CAAC;IACtE,OAAO,EAAE,GAAG,aAAa,EAAE,GAAG,kBAAkB,EAAE,CAAC;AACrD,CAAC,CAAC;AAQF,MAAM,SAAS,GAAG,CAChB,SAAiB,EACjB,MAEC,EACO,EAAE;IACV,MAAM,YAAY,GAAG,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CACtD,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAC9B,CAAC;IAEF,IAAI,YAAY,CAAC,MAAM,KAAK,CAAC,EAAE;QAC7B,MAAM,IAAI,KAAK,CACb,mDAAmD,SAAS,oBAAoB,YAAY,CAAC,MAAM,EAAE,CACtG,CAAC;KACH;IAED,MAAM,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;IACvE,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AAEK,MAAM,aAAa,GAAG,KAAK,EAAE,EAClC,UAAU,EACV,QAAQ,EACR,SAAS,EACT,iBAAiB,EACjB,UAAU,GAOX,EAAkC,EAAE;IACnC,MAAM,GAAG,GAAG,MAAM,IAAA,eAAK,EAAC;QACtB,GAAG,YAAY,CAAC,UAAU,CAAC;QAC3B,WAAW,EAAE,CAAC,UAAU,CAAC;QACzB,QAAQ,EAAE,QAAQ;QAClB,SAAS,EAAE,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS;QAC3C,GAAG,gBAAgB,CAAC,UAAU,CAAC;QAC/B,KAAK,EAAE,KAAK;KACb,CAAC,CAAC;IAEH,MAAM,MAAM,GAAG,SAAS,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;IACrC,IAAI,MAAM,GAA0B;QAClC,MAAM,EAAE,EAAE;KACX,CAAC;IACF,IAAI,CAAC,SAAS,EAAE;QACd,MAAM,CAAC,MAAM,GAAG,MAAM,CAAC;KACxB;SAAM;QACL,MAAM,CAAC,MAAM,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC;KACzC;IAED,IAAI,iBAAiB,EAAE;QACrB,MAAM,CAAC,MAAM,GAAG,8BAA8B,IAAI,CAAC,SAAS,CAC1D,iBAAiB,CAClB,IAAI,MAAM,CAAC,MAAM,EAAE,CAAC;KACtB;IAED,IAAI,QAAQ,EAAE;QACZ,MAAM,GAAG;YACP,GAAG,MAAM;YACT,QAAQ,EAAE,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,QAAQ,CAAC;SACvC,CAAC;KACH;IAED,IAAI,SAAS,EAAE;QACb,MAAM,GAAG;YACP,GAAG,MAAM;YACT,SAAS,EAAE,gBAAgB,CAAC,MAAM,CAAC;SACpC,CAAC;KACH;IAED,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AArDW,QAAA,aAAa,iBAqDxB;AAEK,MAAM,cAAc,GAAG,KAAK,EAAE,EACnC,UAAU,EACV,iBAAiB,GAIlB,EAAoC,EAAE;IACrC,MAAM,GAAG,GAAG,MAAM,IAAA,qBAAa,EAAC;QAC9B,UAAU;QACV,iBAAiB;QACjB,UAAU,EAAE,IAAI;KACjB,CAAC,CAAC;IAEH,OAAO;QACL,UAAU,EAAE,GAAG;QACf,OAAO,EAAE;YACP,cAAc,EAAE,wBAAwB;YACxC,eAAe,EAAE,qCAAqC;YACtD,MAAM,EAAE,UAAU;YAClB,MAAM,EAAE,GAAG;YACX,SAAS,EAAE,qBAAqB;SACjC;QACD,IAAI,EAAE,GAAG,CAAC,MAAM;KACjB,CAAC;AACJ,CAAC,CAAC;AAxBW,QAAA,cAAc,kBAwBzB;AAEF,MAAM,gBAAgB,GAAG,CAAC,MAAc,EAAU,EAAE;IAClD,MAAM,MAAM,GAAG,oDAAoD,CAAC;IACpE,MAAM,YAAY,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,MAAM,CAAC;IAC5D,MAAM,mBAAmB,GAAG,MAAM,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC;IAE3D,MAAM,aAAa,GAAG,MAAM,CAAC,IAAI,CAAC,mBAAmB,EAAE,QAAQ,CAAC,CAAC,QAAQ,CACvE,OAAO,CACR,CAAC;IACF,OAAO,aAAa,CAAC;AACvB,CAAC,CAAC;AAEF,MAAM,eAAe,GAAG,CAAC,MAAc,EAAU,EAAE;IACjD,MAAM,MAAM,GAAG,oDAAoD,CAAC;IACpE,MAAM,YAAY,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IAC5C,MAAM,gBAAgB,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC;IAE3D,OAAO,gBAAgB,CAAC;AAC1B,CAAC,CAAC;AACK,MAAM,iBAAiB,GAAG,KAAK,EAAE,EACtC,UAAU,GAGX,EAAoC,EAAE;IACrC,MAAM,GAAG,GAAG,MAAM,IAAA,eAAK,EAAC;QACtB,GAAG,YAAY,CAAC,KAAK,CAAC;QACtB,WAAW,EAAE,CAAC,UAAU,CAAC;QACzB,SAAS,EAAE,QAAQ;QACnB,GAAG,gBAAgB,CAAC,UAAU,CAAC;QAC/B,KAAK,EAAE,KAAK;KACb,CAAC,CAAC;IAEH,MAAM,MAAM,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;IAC1E,MAAM,aAAa,GAAG,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAE/C,OAAO;QACL,UAAU,EAAE,GAAG;QACf,OAAO,EAAE;YACP,cAAc,EAAE,kBAAkB;YAClC,eAAe,EAAE,qCAAqC;YACtD,MAAM,EAAE,UAAU;YAClB,MAAM,EAAE,GAAG;SACZ;QACD,IAAI,EAAE,aAAa;KACpB,CAAC;AACJ,CAAC,CAAC;AA1BW,QAAA,iBAAiB,qBA0B5B"}