@kl1/contracts 1.0.97 → 1.0.99-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 +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +162 -54
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +24 -8
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +68 -7
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +434 -82
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +68 -7
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +68 -7
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +68 -7
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +68 -7
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -14,6 +14,7 @@ export declare const instagramContract: {
|
|
14
14
|
createdAt: z.ZodString;
|
15
15
|
updatedAt: z.ZodString;
|
16
16
|
platformContact: z.ZodObject<{
|
17
|
+
id: z.ZodString;
|
17
18
|
channelId: z.ZodString;
|
18
19
|
socialPlatformId: z.ZodNullable<z.ZodString>;
|
19
20
|
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
|
@@ -57,6 +58,7 @@ export declare const instagramContract: {
|
|
57
58
|
}>;
|
58
59
|
}, "strip", z.ZodTypeAny, {
|
59
60
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
61
|
+
id: string;
|
60
62
|
metadata: {
|
61
63
|
id: string;
|
62
64
|
name: string;
|
@@ -75,6 +77,7 @@ export declare const instagramContract: {
|
|
75
77
|
socialPlatformId: string | null;
|
76
78
|
}, {
|
77
79
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
80
|
+
id: string;
|
78
81
|
metadata: {
|
79
82
|
id: string;
|
80
83
|
name: string;
|
@@ -93,21 +96,37 @@ export declare const instagramContract: {
|
|
93
96
|
socialPlatformId: string | null;
|
94
97
|
}>;
|
95
98
|
actor: z.ZodNullable<z.ZodObject<{
|
99
|
+
id: z.ZodString;
|
96
100
|
name: z.ZodString;
|
97
101
|
email: z.ZodString;
|
98
102
|
address: z.ZodNullable<z.ZodString>;
|
99
103
|
phone: z.ZodNullable<z.ZodString>;
|
100
104
|
}, "strip", z.ZodTypeAny, {
|
105
|
+
id: string;
|
101
106
|
address: string | null;
|
102
107
|
name: string;
|
103
108
|
email: string;
|
104
109
|
phone: string | null;
|
105
110
|
}, {
|
111
|
+
id: string;
|
106
112
|
address: string | null;
|
107
113
|
name: string;
|
108
114
|
email: string;
|
109
115
|
phone: string | null;
|
110
116
|
}>>;
|
117
|
+
assignee: z.ZodNullable<z.ZodObject<{
|
118
|
+
id: z.ZodString;
|
119
|
+
name: z.ZodString;
|
120
|
+
email: z.ZodString;
|
121
|
+
}, "strip", z.ZodTypeAny, {
|
122
|
+
id: string;
|
123
|
+
name: string;
|
124
|
+
email: string;
|
125
|
+
}, {
|
126
|
+
id: string;
|
127
|
+
name: string;
|
128
|
+
email: string;
|
129
|
+
}>>;
|
111
130
|
channel: z.ZodObject<{
|
112
131
|
id: z.ZodString;
|
113
132
|
name: z.ZodString;
|
@@ -233,6 +252,7 @@ export declare const instagramContract: {
|
|
233
252
|
createdAt: string;
|
234
253
|
updatedAt: string;
|
235
254
|
actor: {
|
255
|
+
id: string;
|
236
256
|
address: string | null;
|
237
257
|
name: string;
|
238
258
|
email: string;
|
@@ -241,6 +261,7 @@ export declare const instagramContract: {
|
|
241
261
|
isLatest: boolean;
|
242
262
|
platformContact: {
|
243
263
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
264
|
+
id: string;
|
244
265
|
metadata: {
|
245
266
|
id: string;
|
246
267
|
name: string;
|
@@ -258,6 +279,11 @@ export declare const instagramContract: {
|
|
258
279
|
channelId: string;
|
259
280
|
socialPlatformId: string | null;
|
260
281
|
};
|
282
|
+
assignee: {
|
283
|
+
id: string;
|
284
|
+
name: string;
|
285
|
+
email: string;
|
286
|
+
} | null;
|
261
287
|
lastMessage?: string | undefined;
|
262
288
|
handleTime?: number | undefined;
|
263
289
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -291,6 +317,7 @@ export declare const instagramContract: {
|
|
291
317
|
createdAt: string;
|
292
318
|
updatedAt: string;
|
293
319
|
actor: {
|
320
|
+
id: string;
|
294
321
|
address: string | null;
|
295
322
|
name: string;
|
296
323
|
email: string;
|
@@ -299,6 +326,7 @@ export declare const instagramContract: {
|
|
299
326
|
isLatest: boolean;
|
300
327
|
platformContact: {
|
301
328
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
329
|
+
id: string;
|
302
330
|
metadata: {
|
303
331
|
id: string;
|
304
332
|
name: string;
|
@@ -316,6 +344,11 @@ export declare const instagramContract: {
|
|
316
344
|
channelId: string;
|
317
345
|
socialPlatformId: string | null;
|
318
346
|
};
|
347
|
+
assignee: {
|
348
|
+
id: string;
|
349
|
+
name: string;
|
350
|
+
email: string;
|
351
|
+
} | null;
|
319
352
|
lastMessage?: string | undefined;
|
320
353
|
handleTime?: number | undefined;
|
321
354
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -483,6 +516,7 @@ export declare const instagramContract: {
|
|
483
516
|
createdAt: string;
|
484
517
|
updatedAt: string;
|
485
518
|
actor: {
|
519
|
+
id: string;
|
486
520
|
address: string | null;
|
487
521
|
name: string;
|
488
522
|
email: string;
|
@@ -491,6 +525,7 @@ export declare const instagramContract: {
|
|
491
525
|
isLatest: boolean;
|
492
526
|
platformContact: {
|
493
527
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
528
|
+
id: string;
|
494
529
|
metadata: {
|
495
530
|
id: string;
|
496
531
|
name: string;
|
@@ -508,6 +543,11 @@ export declare const instagramContract: {
|
|
508
543
|
channelId: string;
|
509
544
|
socialPlatformId: string | null;
|
510
545
|
};
|
546
|
+
assignee: {
|
547
|
+
id: string;
|
548
|
+
name: string;
|
549
|
+
email: string;
|
550
|
+
} | null;
|
511
551
|
lastMessage?: string | undefined;
|
512
552
|
handleTime?: number | undefined;
|
513
553
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -571,6 +611,7 @@ export declare const instagramContract: {
|
|
571
611
|
createdAt: string;
|
572
612
|
updatedAt: string;
|
573
613
|
actor: {
|
614
|
+
id: string;
|
574
615
|
address: string | null;
|
575
616
|
name: string;
|
576
617
|
email: string;
|
@@ -579,6 +620,7 @@ export declare const instagramContract: {
|
|
579
620
|
isLatest: boolean;
|
580
621
|
platformContact: {
|
581
622
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
623
|
+
id: string;
|
582
624
|
metadata: {
|
583
625
|
id: string;
|
584
626
|
name: string;
|
@@ -596,6 +638,11 @@ export declare const instagramContract: {
|
|
596
638
|
channelId: string;
|
597
639
|
socialPlatformId: string | null;
|
598
640
|
};
|
641
|
+
assignee: {
|
642
|
+
id: string;
|
643
|
+
name: string;
|
644
|
+
email: string;
|
645
|
+
} | null;
|
599
646
|
lastMessage?: string | undefined;
|
600
647
|
handleTime?: number | undefined;
|
601
648
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -630,7 +677,9 @@ export declare const instagramContract: {
|
|
630
677
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
631
678
|
lastMessage: z.ZodString;
|
632
679
|
handleTime: z.ZodNumber;
|
633
|
-
|
680
|
+
closedAt: z.ZodDate;
|
681
|
+
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
682
|
+
status: z.ZodNumber;
|
634
683
|
unreadCount: z.ZodNumber;
|
635
684
|
firstResponseAt: z.ZodDate;
|
636
685
|
firstResponseTime: z.ZodNumber;
|
@@ -2555,6 +2604,7 @@ export declare const instagramContract: {
|
|
2555
2604
|
connectedUserId: string;
|
2556
2605
|
};
|
2557
2606
|
direction: "incoming" | "outgoing" | "system";
|
2607
|
+
status: number;
|
2558
2608
|
createdAt: Date;
|
2559
2609
|
updatedAt: Date;
|
2560
2610
|
deletedAt: Date | null;
|
@@ -2605,7 +2655,6 @@ export declare const instagramContract: {
|
|
2605
2655
|
firstResponseTime: number;
|
2606
2656
|
lastMessage: string;
|
2607
2657
|
handleTime: number;
|
2608
|
-
closeAt: Date;
|
2609
2658
|
unreadCount: number;
|
2610
2659
|
firstResponseAt: Date;
|
2611
2660
|
isLatest: boolean;
|
@@ -2765,6 +2814,8 @@ export declare const instagramContract: {
|
|
2765
2814
|
telephonySignature: string | null;
|
2766
2815
|
};
|
2767
2816
|
};
|
2817
|
+
closedAt: Date;
|
2818
|
+
lastMessageAt: Date | null;
|
2768
2819
|
cxlog: {
|
2769
2820
|
id: string;
|
2770
2821
|
channel: string | null;
|
@@ -2867,6 +2918,7 @@ export declare const instagramContract: {
|
|
2867
2918
|
connectedUserId: string;
|
2868
2919
|
};
|
2869
2920
|
direction: "incoming" | "outgoing" | "system";
|
2921
|
+
status: number;
|
2870
2922
|
createdAt: Date;
|
2871
2923
|
updatedAt: Date;
|
2872
2924
|
deletedAt: Date | null;
|
@@ -2917,7 +2969,6 @@ export declare const instagramContract: {
|
|
2917
2969
|
firstResponseTime: number;
|
2918
2970
|
lastMessage: string;
|
2919
2971
|
handleTime: number;
|
2920
|
-
closeAt: Date;
|
2921
2972
|
unreadCount: number;
|
2922
2973
|
firstResponseAt: Date;
|
2923
2974
|
isLatest: boolean;
|
@@ -3077,6 +3128,8 @@ export declare const instagramContract: {
|
|
3077
3128
|
telephonySignature: string | null;
|
3078
3129
|
};
|
3079
3130
|
};
|
3131
|
+
closedAt: Date;
|
3132
|
+
lastMessageAt: Date | null;
|
3080
3133
|
cxlog: {
|
3081
3134
|
id: string;
|
3082
3135
|
channel: string | null;
|
@@ -4925,6 +4978,7 @@ export declare const instagramContract: {
|
|
4925
4978
|
connectedUserId: string;
|
4926
4979
|
};
|
4927
4980
|
direction: "incoming" | "outgoing" | "system";
|
4981
|
+
status: number;
|
4928
4982
|
createdAt: Date;
|
4929
4983
|
updatedAt: Date;
|
4930
4984
|
deletedAt: Date | null;
|
@@ -4975,7 +5029,6 @@ export declare const instagramContract: {
|
|
4975
5029
|
firstResponseTime: number;
|
4976
5030
|
lastMessage: string;
|
4977
5031
|
handleTime: number;
|
4978
|
-
closeAt: Date;
|
4979
5032
|
unreadCount: number;
|
4980
5033
|
firstResponseAt: Date;
|
4981
5034
|
isLatest: boolean;
|
@@ -5135,6 +5188,8 @@ export declare const instagramContract: {
|
|
5135
5188
|
telephonySignature: string | null;
|
5136
5189
|
};
|
5137
5190
|
};
|
5191
|
+
closedAt: Date;
|
5192
|
+
lastMessageAt: Date | null;
|
5138
5193
|
cxlog: {
|
5139
5194
|
id: string;
|
5140
5195
|
channel: string | null;
|
@@ -5563,6 +5618,7 @@ export declare const instagramContract: {
|
|
5563
5618
|
connectedUserId: string;
|
5564
5619
|
};
|
5565
5620
|
direction: "incoming" | "outgoing" | "system";
|
5621
|
+
status: number;
|
5566
5622
|
createdAt: Date;
|
5567
5623
|
updatedAt: Date;
|
5568
5624
|
deletedAt: Date | null;
|
@@ -5613,7 +5669,6 @@ export declare const instagramContract: {
|
|
5613
5669
|
firstResponseTime: number;
|
5614
5670
|
lastMessage: string;
|
5615
5671
|
handleTime: number;
|
5616
|
-
closeAt: Date;
|
5617
5672
|
unreadCount: number;
|
5618
5673
|
firstResponseAt: Date;
|
5619
5674
|
isLatest: boolean;
|
@@ -5773,6 +5828,8 @@ export declare const instagramContract: {
|
|
5773
5828
|
telephonySignature: string | null;
|
5774
5829
|
};
|
5775
5830
|
};
|
5831
|
+
closedAt: Date;
|
5832
|
+
lastMessageAt: Date | null;
|
5776
5833
|
cxlog: {
|
5777
5834
|
id: string;
|
5778
5835
|
channel: string | null;
|
@@ -6203,6 +6260,7 @@ export declare const instagramContract: {
|
|
6203
6260
|
connectedUserId: string;
|
6204
6261
|
};
|
6205
6262
|
direction: "incoming" | "outgoing" | "system";
|
6263
|
+
status: number;
|
6206
6264
|
createdAt: Date;
|
6207
6265
|
updatedAt: Date;
|
6208
6266
|
deletedAt: Date | null;
|
@@ -6253,7 +6311,6 @@ export declare const instagramContract: {
|
|
6253
6311
|
firstResponseTime: number;
|
6254
6312
|
lastMessage: string;
|
6255
6313
|
handleTime: number;
|
6256
|
-
closeAt: Date;
|
6257
6314
|
unreadCount: number;
|
6258
6315
|
firstResponseAt: Date;
|
6259
6316
|
isLatest: boolean;
|
@@ -6413,6 +6470,8 @@ export declare const instagramContract: {
|
|
6413
6470
|
telephonySignature: string | null;
|
6414
6471
|
};
|
6415
6472
|
};
|
6473
|
+
closedAt: Date;
|
6474
|
+
lastMessageAt: Date | null;
|
6416
6475
|
cxlog: {
|
6417
6476
|
id: string;
|
6418
6477
|
channel: string | null;
|
@@ -6844,6 +6903,7 @@ export declare const instagramContract: {
|
|
6844
6903
|
connectedUserId: string;
|
6845
6904
|
};
|
6846
6905
|
direction: "incoming" | "outgoing" | "system";
|
6906
|
+
status: number;
|
6847
6907
|
createdAt: Date;
|
6848
6908
|
updatedAt: Date;
|
6849
6909
|
deletedAt: Date | null;
|
@@ -6894,7 +6954,6 @@ export declare const instagramContract: {
|
|
6894
6954
|
firstResponseTime: number;
|
6895
6955
|
lastMessage: string;
|
6896
6956
|
handleTime: number;
|
6897
|
-
closeAt: Date;
|
6898
6957
|
unreadCount: number;
|
6899
6958
|
firstResponseAt: Date;
|
6900
6959
|
isLatest: boolean;
|
@@ -7054,6 +7113,8 @@ export declare const instagramContract: {
|
|
7054
7113
|
telephonySignature: string | null;
|
7055
7114
|
};
|
7056
7115
|
};
|
7116
|
+
closedAt: Date;
|
7117
|
+
lastMessageAt: Date | null;
|
7057
7118
|
cxlog: {
|
7058
7119
|
id: string;
|
7059
7120
|
channel: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/instagram/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EACL,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAChF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAC1C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,iBAAiB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/instagram/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EACL,4BAA4B,EAC5B,uBAAuB,EACxB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAChF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAC1C,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiF5B,CAAC"}
|