elit 3.5.1 → 3.5.2

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/README.md CHANGED
@@ -255,14 +255,14 @@ Useful flags:
255
255
  - `elit native generate android ./src/native-screen.ts --name HomeScreen --package com.example.app`
256
256
  - `elit native generate ios ./src/native-screen.ts --out ./ios/HomeScreen.swift --no-preview`
257
257
  - `elit native generate ir ./src/native-screen.ts --platform android --export screen`
258
- - `elit wapk pack . --password-env WAPK_PASSWORD`
258
+ - `elit wapk pack . --password secret-123`
259
259
  - `elit wapk ./app.wapk --runtime node|bun|deno`
260
- - `elit wapk run ./app.wapk --password-env WAPK_PASSWORD --sync-interval 100 --watcher`
260
+ - `elit wapk run ./app.wapk --password secret-123 --sync-interval 100 --watcher`
261
261
  - `elit wapk pack . --include-deps`
262
- - `elit wapk inspect ./app.wapk --password-env WAPK_PASSWORD`
262
+ - `elit wapk inspect ./app.wapk --password secret-123`
263
263
  - `elit wapk extract ./app.wapk`
264
264
  - `elit desktop wapk ./app.wapk --runtime node|bun|deno --watcher`
265
- - `elit desktop wapk run ./app.wapk --runtime bun --password-env WAPK_PASSWORD`
265
+ - `elit desktop wapk run ./app.wapk --runtime bun --password secret-123`
266
266
 
267
267
  Desktop mode notes:
268
268
 
@@ -308,11 +308,11 @@ WAPK mode notes:
308
308
  - `elit desktop wapk <file.wapk>` and `elit desktop wapk run <file.wapk>` run packaged apps in desktop mode.
309
309
  - During run, the archive is expanded into a temporary work directory and changes are synced back to the same `.wapk` file.
310
310
  - Use `--sync-interval <ms>` for polling mode, or `--watcher` / `--use-watcher` for event-driven sync.
311
- - Use `--password` or, preferably, `--password-env` when packing, inspecting, extracting, or running a locked archive.
311
+ - Use `--password` when packing, inspecting, extracting, or running a locked archive.
312
312
  - `inspect` without credentials still reports whether the archive is locked, but it does not print the archive contents.
313
313
  - Locked archives stay encrypted when live sync writes changes back into the same `.wapk` file.
314
314
  - Configure package metadata in `elit.config.*` under `wapk`, and use `wapk.lock` when you want password-protected archives by default.
315
- - WAPK stays unlocked by default unless `wapk.lock.password`, `wapk.lock.passwordEnv`, `--password`, or `--password-env` is provided.
315
+ - WAPK stays unlocked by default unless `wapk.lock.password` or `--password` is provided.
316
316
  - See [docs/wapk.md](docs/wapk.md) for the full archive guide and `examples/wapk-example` for an end-to-end sample.
317
317
 
318
318
  ## Config File
@@ -388,7 +388,6 @@ The config shape is:
388
388
  desktop?: Record<string, unknown>;
389
389
  lock?: {
390
390
  password?: string;
391
- passwordEnv?: string;
392
391
  };
393
392
  };
394
393
  }
@@ -490,7 +489,7 @@ export default {
490
489
  NODE_ENV: 'production',
491
490
  },
492
491
  lock: {
493
- passwordEnv: 'WAPK_PASSWORD',
492
+ password: 'secret-123',
494
493
  },
495
494
  },
496
495
  };
@@ -511,7 +510,7 @@ Important details:
511
510
  - `desktop` config provides defaults for `elit desktop`, `elit desktop run`, `elit desktop build`, and `elit desktop wapk`. Use `desktop.entry` for hybrid defaults, `desktop.native.entry` for native defaults, and `desktop.mode` to choose which one runs by default.
512
511
  - `mobile` config provides defaults for `elit mobile init|sync|open|run|build`.
513
512
  - `wapk` config is loaded from `elit.config.*`, then package metadata is used as fallback.
514
- - `wapk.lock.passwordEnv` is the safest reusable way to protect archives without putting the password directly into shell history or committed config.
513
+ - `wapk.lock.password` is the config-level default for locked archives. Use `--password` when you want to supply unlock credentials at command time instead of writing them into config.
515
514
  - `wapk run` and `desktop wapk run` sync runtime file changes back into the same `.wapk` archive.
516
515
 
517
516
  ## Browser Patterns
@@ -873,11 +872,11 @@ The package also exports `elit/test`, `elit/test-runtime`, and `elit/test-report
873
872
 
874
873
  Latest release notes live in [CHANGELOG.md](CHANGELOG.md).
875
874
 
876
- Highlights in `v3.5.1`:
875
+ Highlights in `v3.5.2`:
877
876
 
878
- - Added first-class custom WebSocket endpoints for `dev`, `preview`, and `clients[]` config.
879
- - Moved internal HMR and shared-state traffic to `/__elit_ws` so custom endpoints do not collide with Elit internals.
880
- - Tightened cross-runtime WebSocket path matching so root endpoints no longer swallow every upgrade request.
877
+ - Simplified WAPK locking to password-only credentials across config, CLI, and helper APIs.
878
+ - `wapk.lock` now accepts only `password` in `elit.config.*`.
879
+ - `elit wapk` and `elit desktop wapk` now accept only `--password` when opening locked archives.
881
880
 
882
881
  ## Good Defaults For Generated Code
883
882
 
package/dist/cli.d.ts CHANGED
@@ -2,5 +2,12 @@
2
2
  /**
3
3
  * Main CLI for Elit
4
4
  */
5
- export {};
5
+ export declare function runDev(args: string[]): Promise<void>;
6
+ export declare function runBuild(args: string[]): Promise<void>;
7
+ export declare function runPreview(args: string[]): Promise<void>;
8
+ export declare function runTest(args: string[]): Promise<void>;
9
+ export declare function runDesktop(args: string[]): Promise<void>;
10
+ export declare function runMobile(args: string[]): Promise<void>;
11
+ export declare function runNative(args: string[]): Promise<void>;
12
+ export declare function runWapk(args: string[]): Promise<void>;
6
13
  //# sourceMappingURL=cli.d.ts.map
package/dist/cli.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA;;GAEG"}
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA;;GAEG;AA6HH,wBAAsB,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,iBAqD1C;AAED,wBAAsB,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,iBA2D5C;AAED,wBAAsB,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,iBAoF9C;AAED,wBAAsB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,iBA8C3C;AAED,wBAAsB,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,iBAO9C;AAED,wBAAsB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,iBAO7C;AAED,wBAAsB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,iBAO7C;AAED,wBAAsB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,iBAOzC"}
package/dist/cli.js CHANGED
@@ -59400,7 +59400,7 @@ var require_package3 = __commonJS({
59400
59400
  "package.json"(exports2, module2) {
59401
59401
  module2.exports = {
59402
59402
  name: "elit",
59403
- version: "3.5.1",
59403
+ version: "3.5.2",
59404
59404
  description: "Optimized lightweight library for creating DOM elements with reactive state",
59405
59405
  main: "dist/index.js",
59406
59406
  module: "dist/index.mjs",
@@ -59626,6 +59626,20 @@ var require_package3 = __commonJS({
59626
59626
  }
59627
59627
  });
59628
59628
 
59629
+ // src/cli.ts
59630
+ var cli_exports = {};
59631
+ __export(cli_exports, {
59632
+ runBuild: () => runBuild,
59633
+ runDesktop: () => runDesktop,
59634
+ runDev: () => runDev,
59635
+ runMobile: () => runMobile,
59636
+ runNative: () => runNative,
59637
+ runPreview: () => runPreview,
59638
+ runTest: () => runTest,
59639
+ runWapk: () => runWapk
59640
+ });
59641
+ module.exports = __toCommonJS(cli_exports);
59642
+
59629
59643
  // src/config.ts
59630
59644
  init_fs();
59631
59645
  init_path();
@@ -74483,14 +74497,12 @@ function normalizeWapkLockConfig(value) {
74483
74497
  if (!isRecord(value)) {
74484
74498
  return void 0;
74485
74499
  }
74486
- const password = typeof value.password === "string" && value.password.length > 0 ? value.password : void 0;
74487
- const passwordEnv = normalizeNonEmptyString(value.passwordEnv);
74488
- if (!password && !passwordEnv) {
74500
+ const password = normalizeNonEmptyString(value.password);
74501
+ if (!password) {
74489
74502
  return void 0;
74490
74503
  }
74491
74504
  return {
74492
- password,
74493
- passwordEnv
74505
+ password
74494
74506
  };
74495
74507
  }
74496
74508
  function normalizeWapkConfig(value) {
@@ -74576,35 +74588,26 @@ function readJsonFile(filePath) {
74576
74588
  return parsed;
74577
74589
  }
74578
74590
  function hasCredentialInput(value) {
74579
- return Boolean(
74580
- typeof value?.password === "string" && value.password.length > 0 || normalizeNonEmptyString(value?.passwordEnv)
74581
- );
74591
+ return Boolean(typeof value?.password === "string" && value.password.length > 0);
74582
74592
  }
74583
- function resolvePasswordFromInput(value, context) {
74593
+ function resolvePasswordFromInput(value) {
74584
74594
  if (!value) {
74585
74595
  return void 0;
74586
74596
  }
74587
74597
  if (typeof value.password === "string" && value.password.length > 0) {
74588
74598
  return value.password;
74589
74599
  }
74590
- const passwordEnv = normalizeNonEmptyString(value.passwordEnv);
74591
- if (!passwordEnv) {
74592
- return void 0;
74593
- }
74594
- const password = process.env[passwordEnv];
74595
- if (typeof password !== "string" || password.length === 0) {
74596
- throw new Error(`${context} requires environment variable "${passwordEnv}" to be set.`);
74597
- }
74598
- return password;
74600
+ return void 0;
74599
74601
  }
74600
74602
  function resolvePackLockCredentials(configLock, overrideLock) {
74601
- const password = resolvePasswordFromInput(overrideLock, "WAPK lock") ?? resolvePasswordFromInput(configLock, "WAPK lock");
74602
- const shouldLock = hasCredentialInput(configLock) || hasCredentialInput(overrideLock);
74603
+ const configPassword = normalizeNonEmptyString(configLock?.password);
74604
+ const password = resolvePasswordFromInput(overrideLock) ?? configPassword;
74605
+ const shouldLock = Boolean(configPassword) || hasCredentialInput(overrideLock);
74603
74606
  if (!shouldLock) {
74604
74607
  return void 0;
74605
74608
  }
74606
74609
  if (!password) {
74607
- throw new Error("WAPK lock requires a password. Provide --password, --password-env, or config.wapk.lock.password/passwordEnv.");
74610
+ throw new Error("WAPK lock requires a password. Provide --password or config.wapk.lock.password.");
74608
74611
  }
74609
74612
  return { password };
74610
74613
  }
@@ -74612,9 +74615,9 @@ function resolveArchiveCredentials(value) {
74612
74615
  if (!hasCredentialInput(value)) {
74613
74616
  return void 0;
74614
74617
  }
74615
- const password = resolvePasswordFromInput(value, "WAPK archive");
74618
+ const password = resolvePasswordFromInput(value);
74616
74619
  if (!password) {
74617
- throw new Error("WAPK archive is password-protected. Provide --password or --password-env to unlock it.");
74620
+ throw new Error("WAPK archive is password-protected. Provide --password to unlock it.");
74618
74621
  }
74619
74622
  return { password };
74620
74623
  }
@@ -74916,7 +74919,7 @@ function decodeWapk(buffer, options = {}) {
74916
74919
  }
74917
74920
  const credentials = resolveArchiveCredentials(options);
74918
74921
  if (!credentials) {
74919
- throw new Error("WAPK archive is password-protected. Provide --password or --password-env to unlock it.");
74922
+ throw new Error("WAPK archive is password-protected. Provide --password to unlock it.");
74920
74923
  }
74921
74924
  return {
74922
74925
  version: envelope.version,
@@ -75261,7 +75264,7 @@ function printWapkHelp() {
75261
75264
  " elit wapk run <file.wapk> --sync-interval 100",
75262
75265
  " elit wapk run <file.wapk> --watcher",
75263
75266
  " elit wapk pack [directory]",
75264
- " elit wapk pack [directory] --password-env WAPK_PASSWORD",
75267
+ " elit wapk pack [directory] --password secret-123",
75265
75268
  " elit wapk pack [directory] --include-deps",
75266
75269
  " elit wapk inspect <file.wapk>",
75267
75270
  " elit wapk extract <file.wapk>",
@@ -75272,7 +75275,6 @@ function printWapkHelp() {
75272
75275
  " --watcher, --use-watcher Use event-driven file watcher instead of polling",
75273
75276
  " --include-deps Include node_modules in the archive",
75274
75277
  " --password <value> Password for locking or unlocking the archive",
75275
- " --password-env <name> Read the password from an environment variable",
75276
75278
  " -h, --help Show this help",
75277
75279
  "",
75278
75280
  "Notes:",
@@ -75294,16 +75296,12 @@ function readRequiredOptionValue(args, index, option) {
75294
75296
  function parseArchiveAccessArgs(args, usage) {
75295
75297
  let file;
75296
75298
  let password;
75297
- let passwordEnv;
75298
75299
  for (let index = 0; index < args.length; index++) {
75299
75300
  const arg = args[index];
75300
75301
  switch (arg) {
75301
75302
  case "--password":
75302
75303
  password = readRequiredOptionValue(args, ++index, "--password");
75303
75304
  break;
75304
- case "--password-env":
75305
- passwordEnv = readRequiredOptionValue(args, ++index, "--password-env");
75306
- break;
75307
75305
  default:
75308
75306
  if (arg.startsWith("-")) {
75309
75307
  throw new Error(`Unknown WAPK option: ${arg}`);
@@ -75318,7 +75316,7 @@ function parseArchiveAccessArgs(args, usage) {
75318
75316
  if (!file) {
75319
75317
  throw new Error(usage);
75320
75318
  }
75321
- return { file, password, passwordEnv };
75319
+ return { file, password };
75322
75320
  }
75323
75321
  function parseRunArgs(args) {
75324
75322
  let file;
@@ -75326,7 +75324,6 @@ function parseRunArgs(args) {
75326
75324
  let syncInterval;
75327
75325
  let useWatcher = false;
75328
75326
  let password;
75329
- let passwordEnv;
75330
75327
  for (let index = 0; index < args.length; index++) {
75331
75328
  const arg = args[index];
75332
75329
  switch (arg) {
@@ -75355,9 +75352,6 @@ function parseRunArgs(args) {
75355
75352
  case "--password":
75356
75353
  password = readRequiredOptionValue(args, ++index, "--password");
75357
75354
  break;
75358
- case "--password-env":
75359
- passwordEnv = readRequiredOptionValue(args, ++index, "--password-env");
75360
- break;
75361
75355
  default:
75362
75356
  if (arg.startsWith("-")) {
75363
75357
  throw new Error(`Unknown WAPK option: ${arg}`);
@@ -75372,13 +75366,12 @@ function parseRunArgs(args) {
75372
75366
  if (!file) {
75373
75367
  throw new Error("Usage: elit wapk run <file.wapk>");
75374
75368
  }
75375
- return { file, runtime: runtime2, syncInterval, useWatcher, password, passwordEnv };
75369
+ return { file, runtime: runtime2, syncInterval, useWatcher, password };
75376
75370
  }
75377
75371
  function parsePackArgs(args) {
75378
75372
  let directory = ".";
75379
75373
  let includeDeps = false;
75380
75374
  let password;
75381
- let passwordEnv;
75382
75375
  for (let index = 0; index < args.length; index++) {
75383
75376
  const arg = args[index];
75384
75377
  if (arg === "--include-deps") {
@@ -75389,10 +75382,6 @@ function parsePackArgs(args) {
75389
75382
  password = readRequiredOptionValue(args, ++index, "--password");
75390
75383
  continue;
75391
75384
  }
75392
- if (arg === "--password-env") {
75393
- passwordEnv = readRequiredOptionValue(args, ++index, "--password-env");
75394
- continue;
75395
- }
75396
75385
  if (arg.startsWith("-")) {
75397
75386
  throw new Error(`Unknown WAPK option: ${arg}`);
75398
75387
  }
@@ -75401,7 +75390,7 @@ function parsePackArgs(args) {
75401
75390
  }
75402
75391
  directory = arg;
75403
75392
  }
75404
- return { directory, includeDeps, password, passwordEnv };
75393
+ return { directory, includeDeps, password };
75405
75394
  }
75406
75395
  async function runWapkCommand(args) {
75407
75396
  if (args.length === 0 || args.includes("--help") || args.includes("-h")) {
@@ -75412,8 +75401,7 @@ async function runWapkCommand(args) {
75412
75401
  const options = parsePackArgs(args.slice(1));
75413
75402
  await packWapkDirectory(options.directory, {
75414
75403
  includeDeps: options.includeDeps,
75415
- password: options.password,
75416
- passwordEnv: options.passwordEnv
75404
+ password: options.password
75417
75405
  });
75418
75406
  return;
75419
75407
  }
@@ -75432,8 +75420,7 @@ async function runWapkCommand(args) {
75432
75420
  runtime: runOptions.runtime,
75433
75421
  syncInterval: runOptions.syncInterval,
75434
75422
  useWatcher: runOptions.useWatcher,
75435
- password: runOptions.password,
75436
- passwordEnv: runOptions.passwordEnv
75423
+ password: runOptions.password
75437
75424
  });
75438
75425
  const exitCode = await runPreparedWapkApp(prepared);
75439
75426
  if (exitCode !== 0) {
@@ -75825,7 +75812,6 @@ function printDesktopHelp() {
75825
75812
  " --sync-interval <ms> Polling interval for live sync (ms, default 300)",
75826
75813
  " --watcher, --use-watcher Use event-driven file watcher instead of polling",
75827
75814
  " --password <value> Password used to unlock a protected archive",
75828
- " --password-env <name> Read the unlock password from an environment variable",
75829
75815
  " --release Use the release desktop runtime binary",
75830
75816
  "",
75831
75817
  "Examples:",
@@ -75864,8 +75850,7 @@ async function runDesktopWapkCommand(args, config) {
75864
75850
  runtime: options.runtime,
75865
75851
  syncInterval: options.syncInterval,
75866
75852
  useWatcher: options.useWatcher,
75867
- password: options.password,
75868
- passwordEnv: options.passwordEnv
75853
+ password: options.password
75869
75854
  });
75870
75855
  const preparedEntry = await createDesktopWapkEntry(preparedApp);
75871
75856
  const liveSync = createWapkLiveSync(preparedApp);
@@ -75928,12 +75913,6 @@ function parseDesktopWapkRunArgs(args, config) {
75928
75913
  throw new Error("--password requires a value.");
75929
75914
  }
75930
75915
  break;
75931
- case "--password-env":
75932
- options.passwordEnv = normalizedArgs[++i];
75933
- if (!options.passwordEnv) {
75934
- throw new Error("--password-env requires a value.");
75935
- }
75936
- break;
75937
75916
  default:
75938
75917
  if (arg.startsWith("-")) {
75939
75918
  throw new Error(`Unknown desktop WAPK option: ${arg}`);
@@ -79428,6 +79407,17 @@ main().catch((error) => {
79428
79407
  console.error("Fatal error:", error);
79429
79408
  process.exit(1);
79430
79409
  });
79410
+ // Annotate the CommonJS export names for ESM import in node:
79411
+ 0 && (module.exports = {
79412
+ runBuild,
79413
+ runDesktop,
79414
+ runDev,
79415
+ runMobile,
79416
+ runNative,
79417
+ runPreview,
79418
+ runTest,
79419
+ runWapk
79420
+ });
79431
79421
  /*! Bundled license information:
79432
79422
 
79433
79423
  reflect-metadata/Reflect.js:
package/dist/config.d.mts CHANGED
@@ -118,10 +118,8 @@ interface DesktopNativeConfig {
118
118
  exportName?: string;
119
119
  }
120
120
  interface WapkLockConfig {
121
- /** Plain-text password used to encrypt the archive (prefer passwordEnv for real projects) */
121
+ /** Plain-text password used to encrypt the archive */
122
122
  password?: string;
123
- /** Environment variable name that contains the archive password */
124
- passwordEnv?: string;
125
123
  }
126
124
  interface WapkConfig {
127
125
  name?: string;
package/dist/config.d.ts CHANGED
@@ -110,10 +110,8 @@ export interface DesktopNativeConfig {
110
110
  exportName?: string;
111
111
  }
112
112
  export interface WapkLockConfig {
113
- /** Plain-text password used to encrypt the archive (prefer passwordEnv for real projects) */
113
+ /** Plain-text password used to encrypt the archive */
114
114
  password?: string;
115
- /** Environment variable name that contains the archive password */
116
- passwordEnv?: string;
117
115
  }
118
116
  export interface WapkConfig {
119
117
  name?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,gBAAgB,EAAE,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AA2C3F,MAAM,WAAW,UAAU;IACvB,uCAAuC;IACvC,GAAG,CAAC,EAAE,gBAAgB,CAAC;IACvB,qEAAqE;IACrE,KAAK,CAAC,EAAE,YAAY,GAAG,YAAY,EAAE,CAAC;IACtC,mCAAmC;IACnC,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,yBAAyB;IACzB,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,oCAAoC;IACpC,OAAO,CAAC,EAAE,aAAa,CAAC;IACxB,mCAAmC;IACnC,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,mCAAmC;IACnC,IAAI,CAAC,EAAE,UAAU,CAAC;CACrB;AAED,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAC7C,MAAM,MAAM,WAAW,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAE9C,MAAM,WAAW,YAAY;IACzB,oDAAoD;IACpD,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,mCAAmC;IACnC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,8BAA8B;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,6DAA6D;IAC7D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,2FAA2F;IAC3F,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,8DAA8D;IAC9D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,0EAA0E;IAC1E,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,6CAA6C;IAC7C,OAAO,CAAC,EAAE,mBAAmB,CAAC;IAC9B,yCAAyC;IACzC,GAAG,CAAC,EAAE,eAAe,CAAC;IACtB,uEAAuE;IACvE,MAAM,CAAC,EAAE,kBAAkB,CAAC;CAC/B;AAED,MAAM,WAAW,mBAAmB;IAChC,uEAAuE;IACvE,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,eAAe;IAC5B,qFAAqF;IACrF,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IAC/B,yEAAyE;IACzE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,gEAAgE;IAChE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iDAAiD;IACjD,OAAO,CAAC,EAAE,yBAAyB,CAAC;IACpC,6CAA6C;IAC7C,GAAG,CAAC,EAAE,qBAAqB,CAAC;CAC/B;AAED,MAAM,WAAW,yBAAyB;IACtC,uEAAuE;IACvE,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,4DAA4D;IAC5D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,4EAA4E;IAC5E,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,qBAAqB;IAClC,uEAAuE;IACvE,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,aAAa;IAC1B,iGAAiG;IACjG,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,gFAAgF;IAChF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,6CAA6C;IAC7C,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,uDAAuD;IACvD,OAAO,CAAC,EAAE,SAAS,GAAG,KAAK,GAAG,MAAM,GAAG,MAAM,CAAC;IAC9C,6DAA6D;IAC7D,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,GAAG,KAAK,GAAG,MAAM,CAAC;IACxD,gDAAgD;IAChD,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,qCAAqC;IACrC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,oCAAoC;IACpC,QAAQ,CAAC,EACH,SAAS,GACT,KAAK,GACL,aAAa,GACb,SAAS,GACT,OAAO,GACP,YAAY,GACZ,WAAW,GACX,OAAO,GACP,KAAK,GACL,QAAQ,GACR,WAAW,GACX,SAAS,CAAC;IAChB,iCAAiC;IACjC,IAAI,CAAC,EAAE;QACH,sDAAsD;QACtD,OAAO,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,MAAM,CAAC;QAClC,0CAA0C;QAC1C,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,uDAAuD;QACvD,UAAU,CAAC,EAAE,OAAO,CAAC;QACrB,yCAAyC;QACzC,OAAO,CAAC,EAAE,OAAO,CAAC;KACrB,CAAC;CACL;AAED,MAAM,WAAW,mBAAmB;IAChC,kFAAkF;IAClF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,wEAAwE;IACxE,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,cAAc;IAC3B,sDAAsD;IACtD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,UAAU;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC;IAChD,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAClC,IAAI,CAAC,EAAE,cAAc,CAAC;CACzB;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CAE3D;AAED,eAAO,MAAM,iBAAiB,4HAOpB,CAAC;AAEX;;GAEG;AACH,wBAAgB,OAAO,CAAC,IAAI,GAAE,MAAsB,EAAE,GAAG,GAAE,MAAsB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAoCzG;AAED;;GAEG;AACH,wBAAsB,UAAU,CAAC,GAAG,GAAE,MAAsB,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAgBxF;AAwFD;;GAEG;AACH,wBAAgB,WAAW,CAAC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EACrD,MAAM,EAAE,CAAC,GAAG,SAAS,EACrB,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,GACpB,CAAC,CAWH"}