@kl1/contracts 1.1.27-uat → 1.1.27
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 +1781 -1887
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1780 -1887
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +474 -68
- package/dist/src/business-calendar/index.d.ts.map +1 -1
- package/dist/src/business-calendar/schema.d.ts +122 -41
- package/dist/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/src/business-calendar/validation.d.ts +62 -112
- package/dist/src/business-calendar/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +914 -118
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +213 -39
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +164 -24
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +11636 -4802
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +13 -8
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +15 -12
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +152 -12
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +152 -12
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +33 -2243
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +1 -2045
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +32 -200
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +0 -3
- package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +0 -6
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +12 -68
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +8 -54
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +152 -12
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/call-report.schema.d.ts +62 -62
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +1 -622
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +152 -12
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +152 -12
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +7305 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -0
- package/dist/src/workflow-rule/schema.d.ts +27 -0
- package/dist/src/workflow-rule/schema.d.ts.map +1 -0
- package/dist/src/wrap-up-form/index.d.ts +475 -22
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +4 -4
- package/dist/src/wrap-up-form/validation.d.ts +6 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +4 -10
package/dist/src/line/index.d.ts
CHANGED
@@ -3377,7 +3377,7 @@ export declare const lineContract: {
|
|
3377
3377
|
}>, "many">;
|
3378
3378
|
callFrom: z.ZodNullable<z.ZodString>;
|
3379
3379
|
callTo: z.ZodNullable<z.ZodString>;
|
3380
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3380
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3381
3381
|
id: z.ZodString;
|
3382
3382
|
createdAt: z.ZodDate;
|
3383
3383
|
updatedAt: z.ZodDate;
|
@@ -3410,7 +3410,7 @@ export declare const lineContract: {
|
|
3410
3410
|
booleanValue: boolean | null;
|
3411
3411
|
numberValue: number | null;
|
3412
3412
|
dateValue: Date | null;
|
3413
|
-
}>, "many"
|
3413
|
+
}>, "many">>>;
|
3414
3414
|
}, "strip", z.ZodTypeAny, {
|
3415
3415
|
type: string;
|
3416
3416
|
id: string;
|
@@ -3461,7 +3461,7 @@ export declare const lineContract: {
|
|
3461
3461
|
booleanValue: boolean | null;
|
3462
3462
|
numberValue: number | null;
|
3463
3463
|
dateValue: Date | null;
|
3464
|
-
}[] | undefined;
|
3464
|
+
}[] | null | undefined;
|
3465
3465
|
}, {
|
3466
3466
|
type: string;
|
3467
3467
|
id: string;
|
@@ -3512,7 +3512,7 @@ export declare const lineContract: {
|
|
3512
3512
|
booleanValue: boolean | null;
|
3513
3513
|
numberValue: number | null;
|
3514
3514
|
dateValue: Date | null;
|
3515
|
-
}[] | undefined;
|
3515
|
+
}[] | null | undefined;
|
3516
3516
|
}>>;
|
3517
3517
|
}, "strip", z.ZodTypeAny, {
|
3518
3518
|
id: string;
|
@@ -3580,7 +3580,7 @@ export declare const lineContract: {
|
|
3580
3580
|
booleanValue: boolean | null;
|
3581
3581
|
numberValue: number | null;
|
3582
3582
|
dateValue: Date | null;
|
3583
|
-
}[] | undefined;
|
3583
|
+
}[] | null | undefined;
|
3584
3584
|
} | null;
|
3585
3585
|
}, {
|
3586
3586
|
id: string;
|
@@ -3648,9 +3648,34 @@ export declare const lineContract: {
|
|
3648
3648
|
booleanValue: boolean | null;
|
3649
3649
|
numberValue: number | null;
|
3650
3650
|
dateValue: Date | null;
|
3651
|
-
}[] | undefined;
|
3651
|
+
}[] | null | undefined;
|
3652
3652
|
} | null;
|
3653
3653
|
}>;
|
3654
|
+
workflowRule: z.ZodObject<{
|
3655
|
+
id: z.ZodString;
|
3656
|
+
createdAt: z.ZodDate;
|
3657
|
+
updatedAt: z.ZodDate;
|
3658
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3659
|
+
name: z.ZodString;
|
3660
|
+
isActive: z.ZodBoolean;
|
3661
|
+
type: z.ZodString;
|
3662
|
+
}, "strip", z.ZodTypeAny, {
|
3663
|
+
type: string;
|
3664
|
+
id: string;
|
3665
|
+
name: string;
|
3666
|
+
createdAt: Date;
|
3667
|
+
updatedAt: Date;
|
3668
|
+
deletedAt: Date | null;
|
3669
|
+
isActive: boolean;
|
3670
|
+
}, {
|
3671
|
+
type: string;
|
3672
|
+
id: string;
|
3673
|
+
name: string;
|
3674
|
+
createdAt: Date;
|
3675
|
+
updatedAt: Date;
|
3676
|
+
deletedAt: Date | null;
|
3677
|
+
isActive: boolean;
|
3678
|
+
}>;
|
3654
3679
|
}, "strip", z.ZodTypeAny, {
|
3655
3680
|
id: string;
|
3656
3681
|
channel: {
|
@@ -3997,9 +4022,18 @@ export declare const lineContract: {
|
|
3997
4022
|
booleanValue: boolean | null;
|
3998
4023
|
numberValue: number | null;
|
3999
4024
|
dateValue: Date | null;
|
4000
|
-
}[] | undefined;
|
4025
|
+
}[] | null | undefined;
|
4001
4026
|
} | null;
|
4002
4027
|
};
|
4028
|
+
workflowRule: {
|
4029
|
+
type: string;
|
4030
|
+
id: string;
|
4031
|
+
name: string;
|
4032
|
+
createdAt: Date;
|
4033
|
+
updatedAt: Date;
|
4034
|
+
deletedAt: Date | null;
|
4035
|
+
isActive: boolean;
|
4036
|
+
};
|
4003
4037
|
}, {
|
4004
4038
|
id: string;
|
4005
4039
|
channel: {
|
@@ -4346,9 +4380,18 @@ export declare const lineContract: {
|
|
4346
4380
|
booleanValue: boolean | null;
|
4347
4381
|
numberValue: number | null;
|
4348
4382
|
dateValue: Date | null;
|
4349
|
-
}[] | undefined;
|
4383
|
+
}[] | null | undefined;
|
4350
4384
|
} | null;
|
4351
4385
|
};
|
4386
|
+
workflowRule: {
|
4387
|
+
type: string;
|
4388
|
+
id: string;
|
4389
|
+
name: string;
|
4390
|
+
createdAt: Date;
|
4391
|
+
updatedAt: Date;
|
4392
|
+
deletedAt: Date | null;
|
4393
|
+
isActive: boolean;
|
4394
|
+
};
|
4352
4395
|
}>;
|
4353
4396
|
upload: z.ZodObject<{
|
4354
4397
|
id: z.ZodString;
|
@@ -5985,6 +6028,31 @@ export declare const lineContract: {
|
|
5985
6028
|
telephonySignature: string | null;
|
5986
6029
|
};
|
5987
6030
|
}>;
|
6031
|
+
workflowRule: z.ZodObject<{
|
6032
|
+
id: z.ZodString;
|
6033
|
+
createdAt: z.ZodDate;
|
6034
|
+
updatedAt: z.ZodDate;
|
6035
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
6036
|
+
name: z.ZodString;
|
6037
|
+
isActive: z.ZodBoolean;
|
6038
|
+
type: z.ZodString;
|
6039
|
+
}, "strip", z.ZodTypeAny, {
|
6040
|
+
type: string;
|
6041
|
+
id: string;
|
6042
|
+
name: string;
|
6043
|
+
createdAt: Date;
|
6044
|
+
updatedAt: Date;
|
6045
|
+
deletedAt: Date | null;
|
6046
|
+
isActive: boolean;
|
6047
|
+
}, {
|
6048
|
+
type: string;
|
6049
|
+
id: string;
|
6050
|
+
name: string;
|
6051
|
+
createdAt: Date;
|
6052
|
+
updatedAt: Date;
|
6053
|
+
deletedAt: Date | null;
|
6054
|
+
isActive: boolean;
|
6055
|
+
}>;
|
5988
6056
|
}, "strip", z.ZodTypeAny, {
|
5989
6057
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
5990
6058
|
message: string;
|
@@ -6441,9 +6509,27 @@ export declare const lineContract: {
|
|
6441
6509
|
booleanValue: boolean | null;
|
6442
6510
|
numberValue: number | null;
|
6443
6511
|
dateValue: Date | null;
|
6444
|
-
}[] | undefined;
|
6512
|
+
}[] | null | undefined;
|
6445
6513
|
} | null;
|
6446
6514
|
};
|
6515
|
+
workflowRule: {
|
6516
|
+
type: string;
|
6517
|
+
id: string;
|
6518
|
+
name: string;
|
6519
|
+
createdAt: Date;
|
6520
|
+
updatedAt: Date;
|
6521
|
+
deletedAt: Date | null;
|
6522
|
+
isActive: boolean;
|
6523
|
+
};
|
6524
|
+
};
|
6525
|
+
workflowRule: {
|
6526
|
+
type: string;
|
6527
|
+
id: string;
|
6528
|
+
name: string;
|
6529
|
+
createdAt: Date;
|
6530
|
+
updatedAt: Date;
|
6531
|
+
deletedAt: Date | null;
|
6532
|
+
isActive: boolean;
|
6447
6533
|
};
|
6448
6534
|
readAt: Date;
|
6449
6535
|
platformMessageId: string;
|
@@ -7116,9 +7202,27 @@ export declare const lineContract: {
|
|
7116
7202
|
booleanValue: boolean | null;
|
7117
7203
|
numberValue: number | null;
|
7118
7204
|
dateValue: Date | null;
|
7119
|
-
}[] | undefined;
|
7205
|
+
}[] | null | undefined;
|
7120
7206
|
} | null;
|
7121
7207
|
};
|
7208
|
+
workflowRule: {
|
7209
|
+
type: string;
|
7210
|
+
id: string;
|
7211
|
+
name: string;
|
7212
|
+
createdAt: Date;
|
7213
|
+
updatedAt: Date;
|
7214
|
+
deletedAt: Date | null;
|
7215
|
+
isActive: boolean;
|
7216
|
+
};
|
7217
|
+
};
|
7218
|
+
workflowRule: {
|
7219
|
+
type: string;
|
7220
|
+
id: string;
|
7221
|
+
name: string;
|
7222
|
+
createdAt: Date;
|
7223
|
+
updatedAt: Date;
|
7224
|
+
deletedAt: Date | null;
|
7225
|
+
isActive: boolean;
|
7122
7226
|
};
|
7123
7227
|
readAt: Date;
|
7124
7228
|
platformMessageId: string;
|
@@ -7793,9 +7897,27 @@ export declare const lineContract: {
|
|
7793
7897
|
booleanValue: boolean | null;
|
7794
7898
|
numberValue: number | null;
|
7795
7899
|
dateValue: Date | null;
|
7796
|
-
}[] | undefined;
|
7900
|
+
}[] | null | undefined;
|
7797
7901
|
} | null;
|
7798
7902
|
};
|
7903
|
+
workflowRule: {
|
7904
|
+
type: string;
|
7905
|
+
id: string;
|
7906
|
+
name: string;
|
7907
|
+
createdAt: Date;
|
7908
|
+
updatedAt: Date;
|
7909
|
+
deletedAt: Date | null;
|
7910
|
+
isActive: boolean;
|
7911
|
+
};
|
7912
|
+
};
|
7913
|
+
workflowRule: {
|
7914
|
+
type: string;
|
7915
|
+
id: string;
|
7916
|
+
name: string;
|
7917
|
+
createdAt: Date;
|
7918
|
+
updatedAt: Date;
|
7919
|
+
deletedAt: Date | null;
|
7920
|
+
isActive: boolean;
|
7799
7921
|
};
|
7800
7922
|
readAt: Date;
|
7801
7923
|
platformMessageId: string;
|
@@ -8471,9 +8593,27 @@ export declare const lineContract: {
|
|
8471
8593
|
booleanValue: boolean | null;
|
8472
8594
|
numberValue: number | null;
|
8473
8595
|
dateValue: Date | null;
|
8474
|
-
}[] | undefined;
|
8596
|
+
}[] | null | undefined;
|
8475
8597
|
} | null;
|
8476
8598
|
};
|
8599
|
+
workflowRule: {
|
8600
|
+
type: string;
|
8601
|
+
id: string;
|
8602
|
+
name: string;
|
8603
|
+
createdAt: Date;
|
8604
|
+
updatedAt: Date;
|
8605
|
+
deletedAt: Date | null;
|
8606
|
+
isActive: boolean;
|
8607
|
+
};
|
8608
|
+
};
|
8609
|
+
workflowRule: {
|
8610
|
+
type: string;
|
8611
|
+
id: string;
|
8612
|
+
name: string;
|
8613
|
+
createdAt: Date;
|
8614
|
+
updatedAt: Date;
|
8615
|
+
deletedAt: Date | null;
|
8616
|
+
isActive: boolean;
|
8477
8617
|
};
|
8478
8618
|
readAt: Date;
|
8479
8619
|
platformMessageId: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAQrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAQrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EvB,CAAC"}
|