@kl1/contracts 1.1.25-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.
- package/dist/index.js +13 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -3
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3341 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +528 -4
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +666 -4
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +6478 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +241 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +390 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +333 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +333 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +861 -6
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +861 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +287 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +241 -2
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +333 -2
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +333 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +333 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +703 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +149 -2
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +26 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -2419,8 +2419,7 @@ export declare const webchatContract: {
|
|
2419
2419
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
2420
2420
|
note: z.ZodNullable<z.ZodString>;
|
2421
2421
|
disposition: z.ZodNullable<z.ZodString>;
|
2422
|
-
|
2423
|
-
callTo: z.ZodNullable<z.ZodString>;
|
2422
|
+
type: z.ZodString;
|
2424
2423
|
tags: z.ZodArray<z.ZodObject<{
|
2425
2424
|
id: z.ZodString;
|
2426
2425
|
createdAt: z.ZodDate;
|
@@ -2440,12 +2439,137 @@ export declare const webchatContract: {
|
|
2440
2439
|
updatedAt: Date;
|
2441
2440
|
deletedAt: Date | null;
|
2442
2441
|
}>, "many">;
|
2442
|
+
categories: z.ZodArray<z.ZodObject<{
|
2443
|
+
id: z.ZodString;
|
2444
|
+
createdAt: z.ZodDate;
|
2445
|
+
updatedAt: z.ZodDate;
|
2446
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2447
|
+
value: z.ZodString;
|
2448
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2449
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2450
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2451
|
+
id: z.ZodString;
|
2452
|
+
value: z.ZodString;
|
2453
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2454
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2455
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2456
|
+
id: z.ZodString;
|
2457
|
+
value: z.ZodString;
|
2458
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2459
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2460
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
2461
|
+
}, "strip", z.ZodTypeAny, {
|
2462
|
+
id: string;
|
2463
|
+
value: string;
|
2464
|
+
level: 2 | 1 | 3;
|
2465
|
+
parentId: string | null;
|
2466
|
+
childCategoryList: any[];
|
2467
|
+
}, {
|
2468
|
+
id: string;
|
2469
|
+
value: string;
|
2470
|
+
level: 2 | 1 | 3;
|
2471
|
+
parentId: string | null;
|
2472
|
+
childCategoryList: any[];
|
2473
|
+
}>, "many">;
|
2474
|
+
}, "strip", z.ZodTypeAny, {
|
2475
|
+
id: string;
|
2476
|
+
value: string;
|
2477
|
+
level: 2 | 1 | 3;
|
2478
|
+
parentId: string | null;
|
2479
|
+
childCategoryList: {
|
2480
|
+
id: string;
|
2481
|
+
value: string;
|
2482
|
+
level: 2 | 1 | 3;
|
2483
|
+
parentId: string | null;
|
2484
|
+
childCategoryList: any[];
|
2485
|
+
}[];
|
2486
|
+
}, {
|
2487
|
+
id: string;
|
2488
|
+
value: string;
|
2489
|
+
level: 2 | 1 | 3;
|
2490
|
+
parentId: string | null;
|
2491
|
+
childCategoryList: {
|
2492
|
+
id: string;
|
2493
|
+
value: string;
|
2494
|
+
level: 2 | 1 | 3;
|
2495
|
+
parentId: string | null;
|
2496
|
+
childCategoryList: any[];
|
2497
|
+
}[];
|
2498
|
+
}>, "many">;
|
2499
|
+
}, "strip", z.ZodTypeAny, {
|
2500
|
+
id: string;
|
2501
|
+
value: string;
|
2502
|
+
createdAt: Date;
|
2503
|
+
updatedAt: Date;
|
2504
|
+
deletedAt: Date | null;
|
2505
|
+
level: 2 | 1 | 3;
|
2506
|
+
parentId: string | null;
|
2507
|
+
childCategoryList: {
|
2508
|
+
id: string;
|
2509
|
+
value: string;
|
2510
|
+
level: 2 | 1 | 3;
|
2511
|
+
parentId: string | null;
|
2512
|
+
childCategoryList: {
|
2513
|
+
id: string;
|
2514
|
+
value: string;
|
2515
|
+
level: 2 | 1 | 3;
|
2516
|
+
parentId: string | null;
|
2517
|
+
childCategoryList: any[];
|
2518
|
+
}[];
|
2519
|
+
}[];
|
2520
|
+
}, {
|
2521
|
+
id: string;
|
2522
|
+
value: string;
|
2523
|
+
createdAt: Date;
|
2524
|
+
updatedAt: Date;
|
2525
|
+
deletedAt: Date | null;
|
2526
|
+
level: 2 | 1 | 3;
|
2527
|
+
parentId: string | null;
|
2528
|
+
childCategoryList: {
|
2529
|
+
id: string;
|
2530
|
+
value: string;
|
2531
|
+
level: 2 | 1 | 3;
|
2532
|
+
parentId: string | null;
|
2533
|
+
childCategoryList: {
|
2534
|
+
id: string;
|
2535
|
+
value: string;
|
2536
|
+
level: 2 | 1 | 3;
|
2537
|
+
parentId: string | null;
|
2538
|
+
childCategoryList: any[];
|
2539
|
+
}[];
|
2540
|
+
}[];
|
2541
|
+
}>, "many">;
|
2542
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
2543
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2443
2544
|
}, "strip", z.ZodTypeAny, {
|
2545
|
+
type: string;
|
2444
2546
|
id: string;
|
2445
2547
|
disposition: string | null;
|
2446
2548
|
createdAt: Date;
|
2447
2549
|
updatedAt: Date;
|
2448
2550
|
deletedAt: Date | null;
|
2551
|
+
categories: {
|
2552
|
+
id: string;
|
2553
|
+
value: string;
|
2554
|
+
createdAt: Date;
|
2555
|
+
updatedAt: Date;
|
2556
|
+
deletedAt: Date | null;
|
2557
|
+
level: 2 | 1 | 3;
|
2558
|
+
parentId: string | null;
|
2559
|
+
childCategoryList: {
|
2560
|
+
id: string;
|
2561
|
+
value: string;
|
2562
|
+
level: 2 | 1 | 3;
|
2563
|
+
parentId: string | null;
|
2564
|
+
childCategoryList: {
|
2565
|
+
id: string;
|
2566
|
+
value: string;
|
2567
|
+
level: 2 | 1 | 3;
|
2568
|
+
parentId: string | null;
|
2569
|
+
childCategoryList: any[];
|
2570
|
+
}[];
|
2571
|
+
}[];
|
2572
|
+
}[];
|
2449
2573
|
tags: {
|
2450
2574
|
id: string;
|
2451
2575
|
name: string;
|
@@ -2457,11 +2581,34 @@ export declare const webchatContract: {
|
|
2457
2581
|
callTo: string | null;
|
2458
2582
|
note: string | null;
|
2459
2583
|
}, {
|
2584
|
+
type: string;
|
2460
2585
|
id: string;
|
2461
2586
|
disposition: string | null;
|
2462
2587
|
createdAt: Date;
|
2463
2588
|
updatedAt: Date;
|
2464
2589
|
deletedAt: Date | null;
|
2590
|
+
categories: {
|
2591
|
+
id: string;
|
2592
|
+
value: string;
|
2593
|
+
createdAt: Date;
|
2594
|
+
updatedAt: Date;
|
2595
|
+
deletedAt: Date | null;
|
2596
|
+
level: 2 | 1 | 3;
|
2597
|
+
parentId: string | null;
|
2598
|
+
childCategoryList: {
|
2599
|
+
id: string;
|
2600
|
+
value: string;
|
2601
|
+
level: 2 | 1 | 3;
|
2602
|
+
parentId: string | null;
|
2603
|
+
childCategoryList: {
|
2604
|
+
id: string;
|
2605
|
+
value: string;
|
2606
|
+
level: 2 | 1 | 3;
|
2607
|
+
parentId: string | null;
|
2608
|
+
childCategoryList: any[];
|
2609
|
+
}[];
|
2610
|
+
}[];
|
2611
|
+
}[];
|
2465
2612
|
tags: {
|
2466
2613
|
id: string;
|
2467
2614
|
name: string;
|
@@ -2490,11 +2637,34 @@ export declare const webchatContract: {
|
|
2490
2637
|
handledTime: number | null;
|
2491
2638
|
firstResponseTime: number | null;
|
2492
2639
|
wrapUpForm: {
|
2640
|
+
type: string;
|
2493
2641
|
id: string;
|
2494
2642
|
disposition: string | null;
|
2495
2643
|
createdAt: Date;
|
2496
2644
|
updatedAt: Date;
|
2497
2645
|
deletedAt: Date | null;
|
2646
|
+
categories: {
|
2647
|
+
id: string;
|
2648
|
+
value: string;
|
2649
|
+
createdAt: Date;
|
2650
|
+
updatedAt: Date;
|
2651
|
+
deletedAt: Date | null;
|
2652
|
+
level: 2 | 1 | 3;
|
2653
|
+
parentId: string | null;
|
2654
|
+
childCategoryList: {
|
2655
|
+
id: string;
|
2656
|
+
value: string;
|
2657
|
+
level: 2 | 1 | 3;
|
2658
|
+
parentId: string | null;
|
2659
|
+
childCategoryList: {
|
2660
|
+
id: string;
|
2661
|
+
value: string;
|
2662
|
+
level: 2 | 1 | 3;
|
2663
|
+
parentId: string | null;
|
2664
|
+
childCategoryList: any[];
|
2665
|
+
}[];
|
2666
|
+
}[];
|
2667
|
+
}[];
|
2498
2668
|
tags: {
|
2499
2669
|
id: string;
|
2500
2670
|
name: string;
|
@@ -2523,11 +2693,34 @@ export declare const webchatContract: {
|
|
2523
2693
|
handledTime: number | null;
|
2524
2694
|
firstResponseTime: number | null;
|
2525
2695
|
wrapUpForm: {
|
2696
|
+
type: string;
|
2526
2697
|
id: string;
|
2527
2698
|
disposition: string | null;
|
2528
2699
|
createdAt: Date;
|
2529
2700
|
updatedAt: Date;
|
2530
2701
|
deletedAt: Date | null;
|
2702
|
+
categories: {
|
2703
|
+
id: string;
|
2704
|
+
value: string;
|
2705
|
+
createdAt: Date;
|
2706
|
+
updatedAt: Date;
|
2707
|
+
deletedAt: Date | null;
|
2708
|
+
level: 2 | 1 | 3;
|
2709
|
+
parentId: string | null;
|
2710
|
+
childCategoryList: {
|
2711
|
+
id: string;
|
2712
|
+
value: string;
|
2713
|
+
level: 2 | 1 | 3;
|
2714
|
+
parentId: string | null;
|
2715
|
+
childCategoryList: {
|
2716
|
+
id: string;
|
2717
|
+
value: string;
|
2718
|
+
level: 2 | 1 | 3;
|
2719
|
+
parentId: string | null;
|
2720
|
+
childCategoryList: any[];
|
2721
|
+
}[];
|
2722
|
+
}[];
|
2723
|
+
}[];
|
2531
2724
|
tags: {
|
2532
2725
|
id: string;
|
2533
2726
|
name: string;
|
@@ -2837,11 +3030,34 @@ export declare const webchatContract: {
|
|
2837
3030
|
handledTime: number | null;
|
2838
3031
|
firstResponseTime: number | null;
|
2839
3032
|
wrapUpForm: {
|
3033
|
+
type: string;
|
2840
3034
|
id: string;
|
2841
3035
|
disposition: string | null;
|
2842
3036
|
createdAt: Date;
|
2843
3037
|
updatedAt: Date;
|
2844
3038
|
deletedAt: Date | null;
|
3039
|
+
categories: {
|
3040
|
+
id: string;
|
3041
|
+
value: string;
|
3042
|
+
createdAt: Date;
|
3043
|
+
updatedAt: Date;
|
3044
|
+
deletedAt: Date | null;
|
3045
|
+
level: 2 | 1 | 3;
|
3046
|
+
parentId: string | null;
|
3047
|
+
childCategoryList: {
|
3048
|
+
id: string;
|
3049
|
+
value: string;
|
3050
|
+
level: 2 | 1 | 3;
|
3051
|
+
parentId: string | null;
|
3052
|
+
childCategoryList: {
|
3053
|
+
id: string;
|
3054
|
+
value: string;
|
3055
|
+
level: 2 | 1 | 3;
|
3056
|
+
parentId: string | null;
|
3057
|
+
childCategoryList: any[];
|
3058
|
+
}[];
|
3059
|
+
}[];
|
3060
|
+
}[];
|
2845
3061
|
tags: {
|
2846
3062
|
id: string;
|
2847
3063
|
name: string;
|
@@ -3151,11 +3367,34 @@ export declare const webchatContract: {
|
|
3151
3367
|
handledTime: number | null;
|
3152
3368
|
firstResponseTime: number | null;
|
3153
3369
|
wrapUpForm: {
|
3370
|
+
type: string;
|
3154
3371
|
id: string;
|
3155
3372
|
disposition: string | null;
|
3156
3373
|
createdAt: Date;
|
3157
3374
|
updatedAt: Date;
|
3158
3375
|
deletedAt: Date | null;
|
3376
|
+
categories: {
|
3377
|
+
id: string;
|
3378
|
+
value: string;
|
3379
|
+
createdAt: Date;
|
3380
|
+
updatedAt: Date;
|
3381
|
+
deletedAt: Date | null;
|
3382
|
+
level: 2 | 1 | 3;
|
3383
|
+
parentId: string | null;
|
3384
|
+
childCategoryList: {
|
3385
|
+
id: string;
|
3386
|
+
value: string;
|
3387
|
+
level: 2 | 1 | 3;
|
3388
|
+
parentId: string | null;
|
3389
|
+
childCategoryList: {
|
3390
|
+
id: string;
|
3391
|
+
value: string;
|
3392
|
+
level: 2 | 1 | 3;
|
3393
|
+
parentId: string | null;
|
3394
|
+
childCategoryList: any[];
|
3395
|
+
}[];
|
3396
|
+
}[];
|
3397
|
+
}[];
|
3159
3398
|
tags: {
|
3160
3399
|
id: string;
|
3161
3400
|
name: string;
|
@@ -5211,11 +5450,34 @@ export declare const webchatContract: {
|
|
5211
5450
|
handledTime: number | null;
|
5212
5451
|
firstResponseTime: number | null;
|
5213
5452
|
wrapUpForm: {
|
5453
|
+
type: string;
|
5214
5454
|
id: string;
|
5215
5455
|
disposition: string | null;
|
5216
5456
|
createdAt: Date;
|
5217
5457
|
updatedAt: Date;
|
5218
5458
|
deletedAt: Date | null;
|
5459
|
+
categories: {
|
5460
|
+
id: string;
|
5461
|
+
value: string;
|
5462
|
+
createdAt: Date;
|
5463
|
+
updatedAt: Date;
|
5464
|
+
deletedAt: Date | null;
|
5465
|
+
level: 2 | 1 | 3;
|
5466
|
+
parentId: string | null;
|
5467
|
+
childCategoryList: {
|
5468
|
+
id: string;
|
5469
|
+
value: string;
|
5470
|
+
level: 2 | 1 | 3;
|
5471
|
+
parentId: string | null;
|
5472
|
+
childCategoryList: {
|
5473
|
+
id: string;
|
5474
|
+
value: string;
|
5475
|
+
level: 2 | 1 | 3;
|
5476
|
+
parentId: string | null;
|
5477
|
+
childCategoryList: any[];
|
5478
|
+
}[];
|
5479
|
+
}[];
|
5480
|
+
}[];
|
5219
5481
|
tags: {
|
5220
5482
|
id: string;
|
5221
5483
|
name: string;
|
@@ -5851,11 +6113,34 @@ export declare const webchatContract: {
|
|
5851
6113
|
handledTime: number | null;
|
5852
6114
|
firstResponseTime: number | null;
|
5853
6115
|
wrapUpForm: {
|
6116
|
+
type: string;
|
5854
6117
|
id: string;
|
5855
6118
|
disposition: string | null;
|
5856
6119
|
createdAt: Date;
|
5857
6120
|
updatedAt: Date;
|
5858
6121
|
deletedAt: Date | null;
|
6122
|
+
categories: {
|
6123
|
+
id: string;
|
6124
|
+
value: string;
|
6125
|
+
createdAt: Date;
|
6126
|
+
updatedAt: Date;
|
6127
|
+
deletedAt: Date | null;
|
6128
|
+
level: 2 | 1 | 3;
|
6129
|
+
parentId: string | null;
|
6130
|
+
childCategoryList: {
|
6131
|
+
id: string;
|
6132
|
+
value: string;
|
6133
|
+
level: 2 | 1 | 3;
|
6134
|
+
parentId: string | null;
|
6135
|
+
childCategoryList: {
|
6136
|
+
id: string;
|
6137
|
+
value: string;
|
6138
|
+
level: 2 | 1 | 3;
|
6139
|
+
parentId: string | null;
|
6140
|
+
childCategoryList: any[];
|
6141
|
+
}[];
|
6142
|
+
}[];
|
6143
|
+
}[];
|
5859
6144
|
tags: {
|
5860
6145
|
id: string;
|
5861
6146
|
name: string;
|
@@ -6493,11 +6778,34 @@ export declare const webchatContract: {
|
|
6493
6778
|
handledTime: number | null;
|
6494
6779
|
firstResponseTime: number | null;
|
6495
6780
|
wrapUpForm: {
|
6781
|
+
type: string;
|
6496
6782
|
id: string;
|
6497
6783
|
disposition: string | null;
|
6498
6784
|
createdAt: Date;
|
6499
6785
|
updatedAt: Date;
|
6500
6786
|
deletedAt: Date | null;
|
6787
|
+
categories: {
|
6788
|
+
id: string;
|
6789
|
+
value: string;
|
6790
|
+
createdAt: Date;
|
6791
|
+
updatedAt: Date;
|
6792
|
+
deletedAt: Date | null;
|
6793
|
+
level: 2 | 1 | 3;
|
6794
|
+
parentId: string | null;
|
6795
|
+
childCategoryList: {
|
6796
|
+
id: string;
|
6797
|
+
value: string;
|
6798
|
+
level: 2 | 1 | 3;
|
6799
|
+
parentId: string | null;
|
6800
|
+
childCategoryList: {
|
6801
|
+
id: string;
|
6802
|
+
value: string;
|
6803
|
+
level: 2 | 1 | 3;
|
6804
|
+
parentId: string | null;
|
6805
|
+
childCategoryList: any[];
|
6806
|
+
}[];
|
6807
|
+
}[];
|
6808
|
+
}[];
|
6501
6809
|
tags: {
|
6502
6810
|
id: string;
|
6503
6811
|
name: string;
|
@@ -7136,11 +7444,34 @@ export declare const webchatContract: {
|
|
7136
7444
|
handledTime: number | null;
|
7137
7445
|
firstResponseTime: number | null;
|
7138
7446
|
wrapUpForm: {
|
7447
|
+
type: string;
|
7139
7448
|
id: string;
|
7140
7449
|
disposition: string | null;
|
7141
7450
|
createdAt: Date;
|
7142
7451
|
updatedAt: Date;
|
7143
7452
|
deletedAt: Date | null;
|
7453
|
+
categories: {
|
7454
|
+
id: string;
|
7455
|
+
value: string;
|
7456
|
+
createdAt: Date;
|
7457
|
+
updatedAt: Date;
|
7458
|
+
deletedAt: Date | null;
|
7459
|
+
level: 2 | 1 | 3;
|
7460
|
+
parentId: string | null;
|
7461
|
+
childCategoryList: {
|
7462
|
+
id: string;
|
7463
|
+
value: string;
|
7464
|
+
level: 2 | 1 | 3;
|
7465
|
+
parentId: string | null;
|
7466
|
+
childCategoryList: {
|
7467
|
+
id: string;
|
7468
|
+
value: string;
|
7469
|
+
level: 2 | 1 | 3;
|
7470
|
+
parentId: string | null;
|
7471
|
+
childCategoryList: any[];
|
7472
|
+
}[];
|
7473
|
+
}[];
|
7474
|
+
}[];
|
7144
7475
|
tags: {
|
7145
7476
|
id: string;
|
7146
7477
|
name: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/webchat/index.ts"],"names":[],"mappings":"AAKA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AAOvD,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,eAAe
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/webchat/index.ts"],"names":[],"mappings":"AAKA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AAOvD,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,2BAA2B,CACnC,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyB1B,CAAC"}
|