@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.
- package/dist/index.js +14 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -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 +6481 -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 +706 -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 +29 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -3517,8 +3517,7 @@ export declare const viberContract: {
|
|
3517
3517
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
3518
3518
|
note: z.ZodNullable<z.ZodString>;
|
3519
3519
|
disposition: z.ZodNullable<z.ZodString>;
|
3520
|
-
|
3521
|
-
callTo: z.ZodNullable<z.ZodString>;
|
3520
|
+
type: z.ZodString;
|
3522
3521
|
tags: z.ZodArray<z.ZodObject<{
|
3523
3522
|
id: z.ZodString;
|
3524
3523
|
createdAt: z.ZodDate;
|
@@ -3538,12 +3537,137 @@ export declare const viberContract: {
|
|
3538
3537
|
updatedAt: Date;
|
3539
3538
|
deletedAt: Date | null;
|
3540
3539
|
}>, "many">;
|
3540
|
+
categories: z.ZodArray<z.ZodObject<{
|
3541
|
+
id: z.ZodString;
|
3542
|
+
createdAt: z.ZodDate;
|
3543
|
+
updatedAt: z.ZodDate;
|
3544
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3545
|
+
value: z.ZodString;
|
3546
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3547
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3548
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
3549
|
+
id: z.ZodString;
|
3550
|
+
value: z.ZodString;
|
3551
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3552
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3553
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
3554
|
+
id: z.ZodString;
|
3555
|
+
value: z.ZodString;
|
3556
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3557
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3558
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
3559
|
+
}, "strip", z.ZodTypeAny, {
|
3560
|
+
id: string;
|
3561
|
+
value: string;
|
3562
|
+
level: 2 | 1 | 3;
|
3563
|
+
parentId: string | null;
|
3564
|
+
childCategoryList: any[];
|
3565
|
+
}, {
|
3566
|
+
id: string;
|
3567
|
+
value: string;
|
3568
|
+
level: 2 | 1 | 3;
|
3569
|
+
parentId: string | null;
|
3570
|
+
childCategoryList: any[];
|
3571
|
+
}>, "many">;
|
3572
|
+
}, "strip", z.ZodTypeAny, {
|
3573
|
+
id: string;
|
3574
|
+
value: string;
|
3575
|
+
level: 2 | 1 | 3;
|
3576
|
+
parentId: string | null;
|
3577
|
+
childCategoryList: {
|
3578
|
+
id: string;
|
3579
|
+
value: string;
|
3580
|
+
level: 2 | 1 | 3;
|
3581
|
+
parentId: string | null;
|
3582
|
+
childCategoryList: any[];
|
3583
|
+
}[];
|
3584
|
+
}, {
|
3585
|
+
id: string;
|
3586
|
+
value: string;
|
3587
|
+
level: 2 | 1 | 3;
|
3588
|
+
parentId: string | null;
|
3589
|
+
childCategoryList: {
|
3590
|
+
id: string;
|
3591
|
+
value: string;
|
3592
|
+
level: 2 | 1 | 3;
|
3593
|
+
parentId: string | null;
|
3594
|
+
childCategoryList: any[];
|
3595
|
+
}[];
|
3596
|
+
}>, "many">;
|
3597
|
+
}, "strip", z.ZodTypeAny, {
|
3598
|
+
id: string;
|
3599
|
+
value: string;
|
3600
|
+
createdAt: Date;
|
3601
|
+
updatedAt: Date;
|
3602
|
+
deletedAt: Date | null;
|
3603
|
+
level: 2 | 1 | 3;
|
3604
|
+
parentId: string | null;
|
3605
|
+
childCategoryList: {
|
3606
|
+
id: string;
|
3607
|
+
value: string;
|
3608
|
+
level: 2 | 1 | 3;
|
3609
|
+
parentId: string | null;
|
3610
|
+
childCategoryList: {
|
3611
|
+
id: string;
|
3612
|
+
value: string;
|
3613
|
+
level: 2 | 1 | 3;
|
3614
|
+
parentId: string | null;
|
3615
|
+
childCategoryList: any[];
|
3616
|
+
}[];
|
3617
|
+
}[];
|
3618
|
+
}, {
|
3619
|
+
id: string;
|
3620
|
+
value: string;
|
3621
|
+
createdAt: Date;
|
3622
|
+
updatedAt: Date;
|
3623
|
+
deletedAt: Date | null;
|
3624
|
+
level: 2 | 1 | 3;
|
3625
|
+
parentId: string | null;
|
3626
|
+
childCategoryList: {
|
3627
|
+
id: string;
|
3628
|
+
value: string;
|
3629
|
+
level: 2 | 1 | 3;
|
3630
|
+
parentId: string | null;
|
3631
|
+
childCategoryList: {
|
3632
|
+
id: string;
|
3633
|
+
value: string;
|
3634
|
+
level: 2 | 1 | 3;
|
3635
|
+
parentId: string | null;
|
3636
|
+
childCategoryList: any[];
|
3637
|
+
}[];
|
3638
|
+
}[];
|
3639
|
+
}>, "many">;
|
3640
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
3641
|
+
callTo: z.ZodNullable<z.ZodString>;
|
3541
3642
|
}, "strip", z.ZodTypeAny, {
|
3643
|
+
type: string;
|
3542
3644
|
id: string;
|
3543
3645
|
disposition: string | null;
|
3544
3646
|
createdAt: Date;
|
3545
3647
|
updatedAt: Date;
|
3546
3648
|
deletedAt: Date | null;
|
3649
|
+
categories: {
|
3650
|
+
id: string;
|
3651
|
+
value: string;
|
3652
|
+
createdAt: Date;
|
3653
|
+
updatedAt: Date;
|
3654
|
+
deletedAt: Date | null;
|
3655
|
+
level: 2 | 1 | 3;
|
3656
|
+
parentId: string | null;
|
3657
|
+
childCategoryList: {
|
3658
|
+
id: string;
|
3659
|
+
value: string;
|
3660
|
+
level: 2 | 1 | 3;
|
3661
|
+
parentId: string | null;
|
3662
|
+
childCategoryList: {
|
3663
|
+
id: string;
|
3664
|
+
value: string;
|
3665
|
+
level: 2 | 1 | 3;
|
3666
|
+
parentId: string | null;
|
3667
|
+
childCategoryList: any[];
|
3668
|
+
}[];
|
3669
|
+
}[];
|
3670
|
+
}[];
|
3547
3671
|
tags: {
|
3548
3672
|
id: string;
|
3549
3673
|
name: string;
|
@@ -3555,11 +3679,34 @@ export declare const viberContract: {
|
|
3555
3679
|
callTo: string | null;
|
3556
3680
|
note: string | null;
|
3557
3681
|
}, {
|
3682
|
+
type: string;
|
3558
3683
|
id: string;
|
3559
3684
|
disposition: string | null;
|
3560
3685
|
createdAt: Date;
|
3561
3686
|
updatedAt: Date;
|
3562
3687
|
deletedAt: Date | null;
|
3688
|
+
categories: {
|
3689
|
+
id: string;
|
3690
|
+
value: string;
|
3691
|
+
createdAt: Date;
|
3692
|
+
updatedAt: Date;
|
3693
|
+
deletedAt: Date | null;
|
3694
|
+
level: 2 | 1 | 3;
|
3695
|
+
parentId: string | null;
|
3696
|
+
childCategoryList: {
|
3697
|
+
id: string;
|
3698
|
+
value: string;
|
3699
|
+
level: 2 | 1 | 3;
|
3700
|
+
parentId: string | null;
|
3701
|
+
childCategoryList: {
|
3702
|
+
id: string;
|
3703
|
+
value: string;
|
3704
|
+
level: 2 | 1 | 3;
|
3705
|
+
parentId: string | null;
|
3706
|
+
childCategoryList: any[];
|
3707
|
+
}[];
|
3708
|
+
}[];
|
3709
|
+
}[];
|
3563
3710
|
tags: {
|
3564
3711
|
id: string;
|
3565
3712
|
name: string;
|
@@ -3588,11 +3735,34 @@ export declare const viberContract: {
|
|
3588
3735
|
handledTime: number | null;
|
3589
3736
|
firstResponseTime: number | null;
|
3590
3737
|
wrapUpForm: {
|
3738
|
+
type: string;
|
3591
3739
|
id: string;
|
3592
3740
|
disposition: string | null;
|
3593
3741
|
createdAt: Date;
|
3594
3742
|
updatedAt: Date;
|
3595
3743
|
deletedAt: Date | null;
|
3744
|
+
categories: {
|
3745
|
+
id: string;
|
3746
|
+
value: string;
|
3747
|
+
createdAt: Date;
|
3748
|
+
updatedAt: Date;
|
3749
|
+
deletedAt: Date | null;
|
3750
|
+
level: 2 | 1 | 3;
|
3751
|
+
parentId: string | null;
|
3752
|
+
childCategoryList: {
|
3753
|
+
id: string;
|
3754
|
+
value: string;
|
3755
|
+
level: 2 | 1 | 3;
|
3756
|
+
parentId: string | null;
|
3757
|
+
childCategoryList: {
|
3758
|
+
id: string;
|
3759
|
+
value: string;
|
3760
|
+
level: 2 | 1 | 3;
|
3761
|
+
parentId: string | null;
|
3762
|
+
childCategoryList: any[];
|
3763
|
+
}[];
|
3764
|
+
}[];
|
3765
|
+
}[];
|
3596
3766
|
tags: {
|
3597
3767
|
id: string;
|
3598
3768
|
name: string;
|
@@ -3621,11 +3791,34 @@ export declare const viberContract: {
|
|
3621
3791
|
handledTime: number | null;
|
3622
3792
|
firstResponseTime: number | null;
|
3623
3793
|
wrapUpForm: {
|
3794
|
+
type: string;
|
3624
3795
|
id: string;
|
3625
3796
|
disposition: string | null;
|
3626
3797
|
createdAt: Date;
|
3627
3798
|
updatedAt: Date;
|
3628
3799
|
deletedAt: Date | null;
|
3800
|
+
categories: {
|
3801
|
+
id: string;
|
3802
|
+
value: string;
|
3803
|
+
createdAt: Date;
|
3804
|
+
updatedAt: Date;
|
3805
|
+
deletedAt: Date | null;
|
3806
|
+
level: 2 | 1 | 3;
|
3807
|
+
parentId: string | null;
|
3808
|
+
childCategoryList: {
|
3809
|
+
id: string;
|
3810
|
+
value: string;
|
3811
|
+
level: 2 | 1 | 3;
|
3812
|
+
parentId: string | null;
|
3813
|
+
childCategoryList: {
|
3814
|
+
id: string;
|
3815
|
+
value: string;
|
3816
|
+
level: 2 | 1 | 3;
|
3817
|
+
parentId: string | null;
|
3818
|
+
childCategoryList: any[];
|
3819
|
+
}[];
|
3820
|
+
}[];
|
3821
|
+
}[];
|
3629
3822
|
tags: {
|
3630
3823
|
id: string;
|
3631
3824
|
name: string;
|
@@ -3935,11 +4128,34 @@ export declare const viberContract: {
|
|
3935
4128
|
handledTime: number | null;
|
3936
4129
|
firstResponseTime: number | null;
|
3937
4130
|
wrapUpForm: {
|
4131
|
+
type: string;
|
3938
4132
|
id: string;
|
3939
4133
|
disposition: string | null;
|
3940
4134
|
createdAt: Date;
|
3941
4135
|
updatedAt: Date;
|
3942
4136
|
deletedAt: Date | null;
|
4137
|
+
categories: {
|
4138
|
+
id: string;
|
4139
|
+
value: string;
|
4140
|
+
createdAt: Date;
|
4141
|
+
updatedAt: Date;
|
4142
|
+
deletedAt: Date | null;
|
4143
|
+
level: 2 | 1 | 3;
|
4144
|
+
parentId: string | null;
|
4145
|
+
childCategoryList: {
|
4146
|
+
id: string;
|
4147
|
+
value: string;
|
4148
|
+
level: 2 | 1 | 3;
|
4149
|
+
parentId: string | null;
|
4150
|
+
childCategoryList: {
|
4151
|
+
id: string;
|
4152
|
+
value: string;
|
4153
|
+
level: 2 | 1 | 3;
|
4154
|
+
parentId: string | null;
|
4155
|
+
childCategoryList: any[];
|
4156
|
+
}[];
|
4157
|
+
}[];
|
4158
|
+
}[];
|
3943
4159
|
tags: {
|
3944
4160
|
id: string;
|
3945
4161
|
name: string;
|
@@ -4249,11 +4465,34 @@ export declare const viberContract: {
|
|
4249
4465
|
handledTime: number | null;
|
4250
4466
|
firstResponseTime: number | null;
|
4251
4467
|
wrapUpForm: {
|
4468
|
+
type: string;
|
4252
4469
|
id: string;
|
4253
4470
|
disposition: string | null;
|
4254
4471
|
createdAt: Date;
|
4255
4472
|
updatedAt: Date;
|
4256
4473
|
deletedAt: Date | null;
|
4474
|
+
categories: {
|
4475
|
+
id: string;
|
4476
|
+
value: string;
|
4477
|
+
createdAt: Date;
|
4478
|
+
updatedAt: Date;
|
4479
|
+
deletedAt: Date | null;
|
4480
|
+
level: 2 | 1 | 3;
|
4481
|
+
parentId: string | null;
|
4482
|
+
childCategoryList: {
|
4483
|
+
id: string;
|
4484
|
+
value: string;
|
4485
|
+
level: 2 | 1 | 3;
|
4486
|
+
parentId: string | null;
|
4487
|
+
childCategoryList: {
|
4488
|
+
id: string;
|
4489
|
+
value: string;
|
4490
|
+
level: 2 | 1 | 3;
|
4491
|
+
parentId: string | null;
|
4492
|
+
childCategoryList: any[];
|
4493
|
+
}[];
|
4494
|
+
}[];
|
4495
|
+
}[];
|
4257
4496
|
tags: {
|
4258
4497
|
id: string;
|
4259
4498
|
name: string;
|
@@ -6309,11 +6548,34 @@ export declare const viberContract: {
|
|
6309
6548
|
handledTime: number | null;
|
6310
6549
|
firstResponseTime: number | null;
|
6311
6550
|
wrapUpForm: {
|
6551
|
+
type: string;
|
6312
6552
|
id: string;
|
6313
6553
|
disposition: string | null;
|
6314
6554
|
createdAt: Date;
|
6315
6555
|
updatedAt: Date;
|
6316
6556
|
deletedAt: Date | null;
|
6557
|
+
categories: {
|
6558
|
+
id: string;
|
6559
|
+
value: string;
|
6560
|
+
createdAt: Date;
|
6561
|
+
updatedAt: Date;
|
6562
|
+
deletedAt: Date | null;
|
6563
|
+
level: 2 | 1 | 3;
|
6564
|
+
parentId: string | null;
|
6565
|
+
childCategoryList: {
|
6566
|
+
id: string;
|
6567
|
+
value: string;
|
6568
|
+
level: 2 | 1 | 3;
|
6569
|
+
parentId: string | null;
|
6570
|
+
childCategoryList: {
|
6571
|
+
id: string;
|
6572
|
+
value: string;
|
6573
|
+
level: 2 | 1 | 3;
|
6574
|
+
parentId: string | null;
|
6575
|
+
childCategoryList: any[];
|
6576
|
+
}[];
|
6577
|
+
}[];
|
6578
|
+
}[];
|
6317
6579
|
tags: {
|
6318
6580
|
id: string;
|
6319
6581
|
name: string;
|
@@ -6949,11 +7211,34 @@ export declare const viberContract: {
|
|
6949
7211
|
handledTime: number | null;
|
6950
7212
|
firstResponseTime: number | null;
|
6951
7213
|
wrapUpForm: {
|
7214
|
+
type: string;
|
6952
7215
|
id: string;
|
6953
7216
|
disposition: string | null;
|
6954
7217
|
createdAt: Date;
|
6955
7218
|
updatedAt: Date;
|
6956
7219
|
deletedAt: Date | null;
|
7220
|
+
categories: {
|
7221
|
+
id: string;
|
7222
|
+
value: string;
|
7223
|
+
createdAt: Date;
|
7224
|
+
updatedAt: Date;
|
7225
|
+
deletedAt: Date | null;
|
7226
|
+
level: 2 | 1 | 3;
|
7227
|
+
parentId: string | null;
|
7228
|
+
childCategoryList: {
|
7229
|
+
id: string;
|
7230
|
+
value: string;
|
7231
|
+
level: 2 | 1 | 3;
|
7232
|
+
parentId: string | null;
|
7233
|
+
childCategoryList: {
|
7234
|
+
id: string;
|
7235
|
+
value: string;
|
7236
|
+
level: 2 | 1 | 3;
|
7237
|
+
parentId: string | null;
|
7238
|
+
childCategoryList: any[];
|
7239
|
+
}[];
|
7240
|
+
}[];
|
7241
|
+
}[];
|
6957
7242
|
tags: {
|
6958
7243
|
id: string;
|
6959
7244
|
name: string;
|
@@ -7591,11 +7876,34 @@ export declare const viberContract: {
|
|
7591
7876
|
handledTime: number | null;
|
7592
7877
|
firstResponseTime: number | null;
|
7593
7878
|
wrapUpForm: {
|
7879
|
+
type: string;
|
7594
7880
|
id: string;
|
7595
7881
|
disposition: string | null;
|
7596
7882
|
createdAt: Date;
|
7597
7883
|
updatedAt: Date;
|
7598
7884
|
deletedAt: Date | null;
|
7885
|
+
categories: {
|
7886
|
+
id: string;
|
7887
|
+
value: string;
|
7888
|
+
createdAt: Date;
|
7889
|
+
updatedAt: Date;
|
7890
|
+
deletedAt: Date | null;
|
7891
|
+
level: 2 | 1 | 3;
|
7892
|
+
parentId: string | null;
|
7893
|
+
childCategoryList: {
|
7894
|
+
id: string;
|
7895
|
+
value: string;
|
7896
|
+
level: 2 | 1 | 3;
|
7897
|
+
parentId: string | null;
|
7898
|
+
childCategoryList: {
|
7899
|
+
id: string;
|
7900
|
+
value: string;
|
7901
|
+
level: 2 | 1 | 3;
|
7902
|
+
parentId: string | null;
|
7903
|
+
childCategoryList: any[];
|
7904
|
+
}[];
|
7905
|
+
}[];
|
7906
|
+
}[];
|
7599
7907
|
tags: {
|
7600
7908
|
id: string;
|
7601
7909
|
name: string;
|
@@ -8234,11 +8542,34 @@ export declare const viberContract: {
|
|
8234
8542
|
handledTime: number | null;
|
8235
8543
|
firstResponseTime: number | null;
|
8236
8544
|
wrapUpForm: {
|
8545
|
+
type: string;
|
8237
8546
|
id: string;
|
8238
8547
|
disposition: string | null;
|
8239
8548
|
createdAt: Date;
|
8240
8549
|
updatedAt: Date;
|
8241
8550
|
deletedAt: Date | null;
|
8551
|
+
categories: {
|
8552
|
+
id: string;
|
8553
|
+
value: string;
|
8554
|
+
createdAt: Date;
|
8555
|
+
updatedAt: Date;
|
8556
|
+
deletedAt: Date | null;
|
8557
|
+
level: 2 | 1 | 3;
|
8558
|
+
parentId: string | null;
|
8559
|
+
childCategoryList: {
|
8560
|
+
id: string;
|
8561
|
+
value: string;
|
8562
|
+
level: 2 | 1 | 3;
|
8563
|
+
parentId: string | null;
|
8564
|
+
childCategoryList: {
|
8565
|
+
id: string;
|
8566
|
+
value: string;
|
8567
|
+
level: 2 | 1 | 3;
|
8568
|
+
parentId: string | null;
|
8569
|
+
childCategoryList: any[];
|
8570
|
+
}[];
|
8571
|
+
}[];
|
8572
|
+
}[];
|
8242
8573
|
tags: {
|
8243
8574
|
id: string;
|
8244
8575
|
name: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAalD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAalD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmExB,CAAC"}
|