@kl1/contracts 1.1.24-uat → 1.1.26-uat

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.
Files changed (41) hide show
  1. package/dist/index.js +14 -3
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +14 -3
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +3341 -22
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +528 -4
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +666 -4
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/contract.d.ts +6481 -44
  12. package/dist/src/contract.d.ts.map +1 -1
  13. package/dist/src/cx-log/index.d.ts +241 -2
  14. package/dist/src/cx-log/index.d.ts.map +1 -1
  15. package/dist/src/cx-log/schema.d.ts +390 -4
  16. package/dist/src/cx-log/schema.d.ts.map +1 -1
  17. package/dist/src/instagram/index.d.ts +333 -2
  18. package/dist/src/instagram/index.d.ts.map +1 -1
  19. package/dist/src/line/index.d.ts +333 -2
  20. package/dist/src/line/index.d.ts.map +1 -1
  21. package/dist/src/mail/mail-contract.d.ts +861 -6
  22. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  23. package/dist/src/mail/room-contract.d.ts +861 -6
  24. package/dist/src/mail/room-contract.d.ts.map +1 -1
  25. package/dist/src/mail/schemas/room-validation.schema.d.ts +287 -2
  26. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  27. package/dist/src/mail/schemas/room.schema.d.ts +241 -2
  28. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  29. package/dist/src/messenger/index.d.ts +333 -2
  30. package/dist/src/messenger/index.d.ts.map +1 -1
  31. package/dist/src/viber/index.d.ts +333 -2
  32. package/dist/src/viber/index.d.ts.map +1 -1
  33. package/dist/src/webchat/index.d.ts +333 -2
  34. package/dist/src/webchat/index.d.ts.map +1 -1
  35. package/dist/src/wrap-up-form/index.d.ts +706 -6
  36. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  37. package/dist/src/wrap-up-form/schema.d.ts +149 -2
  38. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  39. package/dist/src/wrap-up-form/validation.d.ts +29 -0
  40. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  41. package/package.json +1 -1
@@ -2275,8 +2275,7 @@ export declare const MailRoomSchema: z.ZodObject<{
2275
2275
  deletedAt: z.ZodNullable<z.ZodDate>;
2276
2276
  note: z.ZodNullable<z.ZodString>;
2277
2277
  disposition: z.ZodNullable<z.ZodString>;
2278
- callFrom: z.ZodNullable<z.ZodString>;
2279
- callTo: z.ZodNullable<z.ZodString>;
2278
+ type: z.ZodString;
2280
2279
  tags: z.ZodArray<z.ZodObject<{
2281
2280
  id: z.ZodString;
2282
2281
  createdAt: z.ZodDate;
@@ -2296,12 +2295,137 @@ export declare const MailRoomSchema: z.ZodObject<{
2296
2295
  updatedAt: Date;
2297
2296
  deletedAt: Date | null;
2298
2297
  }>, "many">;
2298
+ categories: z.ZodArray<z.ZodObject<{
2299
+ id: z.ZodString;
2300
+ createdAt: z.ZodDate;
2301
+ updatedAt: z.ZodDate;
2302
+ deletedAt: z.ZodNullable<z.ZodDate>;
2303
+ value: z.ZodString;
2304
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2305
+ parentId: z.ZodNullable<z.ZodString>;
2306
+ childCategoryList: z.ZodArray<z.ZodObject<{
2307
+ id: z.ZodString;
2308
+ value: z.ZodString;
2309
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2310
+ parentId: z.ZodNullable<z.ZodString>;
2311
+ childCategoryList: z.ZodArray<z.ZodObject<{
2312
+ id: z.ZodString;
2313
+ value: z.ZodString;
2314
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2315
+ parentId: z.ZodNullable<z.ZodString>;
2316
+ childCategoryList: z.ZodArray<z.ZodAny, "many">;
2317
+ }, "strip", z.ZodTypeAny, {
2318
+ id: string;
2319
+ value: string;
2320
+ level: 2 | 1 | 3;
2321
+ parentId: string | null;
2322
+ childCategoryList: any[];
2323
+ }, {
2324
+ id: string;
2325
+ value: string;
2326
+ level: 2 | 1 | 3;
2327
+ parentId: string | null;
2328
+ childCategoryList: any[];
2329
+ }>, "many">;
2330
+ }, "strip", z.ZodTypeAny, {
2331
+ id: string;
2332
+ value: string;
2333
+ level: 2 | 1 | 3;
2334
+ parentId: string | null;
2335
+ childCategoryList: {
2336
+ id: string;
2337
+ value: string;
2338
+ level: 2 | 1 | 3;
2339
+ parentId: string | null;
2340
+ childCategoryList: any[];
2341
+ }[];
2342
+ }, {
2343
+ id: string;
2344
+ value: string;
2345
+ level: 2 | 1 | 3;
2346
+ parentId: string | null;
2347
+ childCategoryList: {
2348
+ id: string;
2349
+ value: string;
2350
+ level: 2 | 1 | 3;
2351
+ parentId: string | null;
2352
+ childCategoryList: any[];
2353
+ }[];
2354
+ }>, "many">;
2355
+ }, "strip", z.ZodTypeAny, {
2356
+ id: string;
2357
+ value: string;
2358
+ createdAt: Date;
2359
+ updatedAt: Date;
2360
+ deletedAt: Date | null;
2361
+ level: 2 | 1 | 3;
2362
+ parentId: string | null;
2363
+ childCategoryList: {
2364
+ id: string;
2365
+ value: string;
2366
+ level: 2 | 1 | 3;
2367
+ parentId: string | null;
2368
+ childCategoryList: {
2369
+ id: string;
2370
+ value: string;
2371
+ level: 2 | 1 | 3;
2372
+ parentId: string | null;
2373
+ childCategoryList: any[];
2374
+ }[];
2375
+ }[];
2376
+ }, {
2377
+ id: string;
2378
+ value: string;
2379
+ createdAt: Date;
2380
+ updatedAt: Date;
2381
+ deletedAt: Date | null;
2382
+ level: 2 | 1 | 3;
2383
+ parentId: string | null;
2384
+ childCategoryList: {
2385
+ id: string;
2386
+ value: string;
2387
+ level: 2 | 1 | 3;
2388
+ parentId: string | null;
2389
+ childCategoryList: {
2390
+ id: string;
2391
+ value: string;
2392
+ level: 2 | 1 | 3;
2393
+ parentId: string | null;
2394
+ childCategoryList: any[];
2395
+ }[];
2396
+ }[];
2397
+ }>, "many">;
2398
+ callFrom: z.ZodNullable<z.ZodString>;
2399
+ callTo: z.ZodNullable<z.ZodString>;
2299
2400
  }, "strip", z.ZodTypeAny, {
2401
+ type: string;
2300
2402
  id: string;
2301
2403
  disposition: string | null;
2302
2404
  createdAt: Date;
2303
2405
  updatedAt: Date;
2304
2406
  deletedAt: Date | null;
2407
+ categories: {
2408
+ id: string;
2409
+ value: string;
2410
+ createdAt: Date;
2411
+ updatedAt: Date;
2412
+ deletedAt: Date | null;
2413
+ level: 2 | 1 | 3;
2414
+ parentId: string | null;
2415
+ childCategoryList: {
2416
+ id: string;
2417
+ value: string;
2418
+ level: 2 | 1 | 3;
2419
+ parentId: string | null;
2420
+ childCategoryList: {
2421
+ id: string;
2422
+ value: string;
2423
+ level: 2 | 1 | 3;
2424
+ parentId: string | null;
2425
+ childCategoryList: any[];
2426
+ }[];
2427
+ }[];
2428
+ }[];
2305
2429
  tags: {
2306
2430
  id: string;
2307
2431
  name: string;
@@ -2313,11 +2437,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2313
2437
  callTo: string | null;
2314
2438
  note: string | null;
2315
2439
  }, {
2440
+ type: string;
2316
2441
  id: string;
2317
2442
  disposition: string | null;
2318
2443
  createdAt: Date;
2319
2444
  updatedAt: Date;
2320
2445
  deletedAt: Date | null;
2446
+ categories: {
2447
+ id: string;
2448
+ value: string;
2449
+ createdAt: Date;
2450
+ updatedAt: Date;
2451
+ deletedAt: Date | null;
2452
+ level: 2 | 1 | 3;
2453
+ parentId: string | null;
2454
+ childCategoryList: {
2455
+ id: string;
2456
+ value: string;
2457
+ level: 2 | 1 | 3;
2458
+ parentId: string | null;
2459
+ childCategoryList: {
2460
+ id: string;
2461
+ value: string;
2462
+ level: 2 | 1 | 3;
2463
+ parentId: string | null;
2464
+ childCategoryList: any[];
2465
+ }[];
2466
+ }[];
2467
+ }[];
2321
2468
  tags: {
2322
2469
  id: string;
2323
2470
  name: string;
@@ -2346,11 +2493,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2346
2493
  handledTime: number | null;
2347
2494
  firstResponseTime: number | null;
2348
2495
  wrapUpForm: {
2496
+ type: string;
2349
2497
  id: string;
2350
2498
  disposition: string | null;
2351
2499
  createdAt: Date;
2352
2500
  updatedAt: Date;
2353
2501
  deletedAt: Date | null;
2502
+ categories: {
2503
+ id: string;
2504
+ value: string;
2505
+ createdAt: Date;
2506
+ updatedAt: Date;
2507
+ deletedAt: Date | null;
2508
+ level: 2 | 1 | 3;
2509
+ parentId: string | null;
2510
+ childCategoryList: {
2511
+ id: string;
2512
+ value: string;
2513
+ level: 2 | 1 | 3;
2514
+ parentId: string | null;
2515
+ childCategoryList: {
2516
+ id: string;
2517
+ value: string;
2518
+ level: 2 | 1 | 3;
2519
+ parentId: string | null;
2520
+ childCategoryList: any[];
2521
+ }[];
2522
+ }[];
2523
+ }[];
2354
2524
  tags: {
2355
2525
  id: string;
2356
2526
  name: string;
@@ -2379,11 +2549,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2379
2549
  handledTime: number | null;
2380
2550
  firstResponseTime: number | null;
2381
2551
  wrapUpForm: {
2552
+ type: string;
2382
2553
  id: string;
2383
2554
  disposition: string | null;
2384
2555
  createdAt: Date;
2385
2556
  updatedAt: Date;
2386
2557
  deletedAt: Date | null;
2558
+ categories: {
2559
+ id: string;
2560
+ value: string;
2561
+ createdAt: Date;
2562
+ updatedAt: Date;
2563
+ deletedAt: Date | null;
2564
+ level: 2 | 1 | 3;
2565
+ parentId: string | null;
2566
+ childCategoryList: {
2567
+ id: string;
2568
+ value: string;
2569
+ level: 2 | 1 | 3;
2570
+ parentId: string | null;
2571
+ childCategoryList: {
2572
+ id: string;
2573
+ value: string;
2574
+ level: 2 | 1 | 3;
2575
+ parentId: string | null;
2576
+ childCategoryList: any[];
2577
+ }[];
2578
+ }[];
2579
+ }[];
2387
2580
  tags: {
2388
2581
  id: string;
2389
2582
  name: string;
@@ -2517,11 +2710,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2517
2710
  handledTime: number | null;
2518
2711
  firstResponseTime: number | null;
2519
2712
  wrapUpForm: {
2713
+ type: string;
2520
2714
  id: string;
2521
2715
  disposition: string | null;
2522
2716
  createdAt: Date;
2523
2717
  updatedAt: Date;
2524
2718
  deletedAt: Date | null;
2719
+ categories: {
2720
+ id: string;
2721
+ value: string;
2722
+ createdAt: Date;
2723
+ updatedAt: Date;
2724
+ deletedAt: Date | null;
2725
+ level: 2 | 1 | 3;
2726
+ parentId: string | null;
2727
+ childCategoryList: {
2728
+ id: string;
2729
+ value: string;
2730
+ level: 2 | 1 | 3;
2731
+ parentId: string | null;
2732
+ childCategoryList: {
2733
+ id: string;
2734
+ value: string;
2735
+ level: 2 | 1 | 3;
2736
+ parentId: string | null;
2737
+ childCategoryList: any[];
2738
+ }[];
2739
+ }[];
2740
+ }[];
2525
2741
  tags: {
2526
2742
  id: string;
2527
2743
  name: string;
@@ -2969,11 +3185,34 @@ export declare const MailRoomSchema: z.ZodObject<{
2969
3185
  handledTime: number | null;
2970
3186
  firstResponseTime: number | null;
2971
3187
  wrapUpForm: {
3188
+ type: string;
2972
3189
  id: string;
2973
3190
  disposition: string | null;
2974
3191
  createdAt: Date;
2975
3192
  updatedAt: Date;
2976
3193
  deletedAt: Date | null;
3194
+ categories: {
3195
+ id: string;
3196
+ value: string;
3197
+ createdAt: Date;
3198
+ updatedAt: Date;
3199
+ deletedAt: Date | null;
3200
+ level: 2 | 1 | 3;
3201
+ parentId: string | null;
3202
+ childCategoryList: {
3203
+ id: string;
3204
+ value: string;
3205
+ level: 2 | 1 | 3;
3206
+ parentId: string | null;
3207
+ childCategoryList: {
3208
+ id: string;
3209
+ value: string;
3210
+ level: 2 | 1 | 3;
3211
+ parentId: string | null;
3212
+ childCategoryList: any[];
3213
+ }[];
3214
+ }[];
3215
+ }[];
2977
3216
  tags: {
2978
3217
  id: string;
2979
3218
  name: string;
@@ -1 +1 @@
1
- {"version":3,"file":"room.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/room.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;EAOpB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpB,CAAC;AAaH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAEjC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BzB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC"}
1
+ {"version":3,"file":"room.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/room.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;EAOpB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpB,CAAC;AAaH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAEjC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BzB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC"}