@kl1/contracts 1.0.98 → 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 +768 -856
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +768 -855
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +165 -57
- 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 +76 -15
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +1453 -1941
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +73 -12
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +73 -12
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +132 -132
- package/dist/src/mail/mail-contract.d.ts +258 -715
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +18 -477
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +108 -108
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/room-validation.schema.d.ts +36 -36
- package/dist/src/mail/schemas/room.schema.d.ts +28 -28
- package/dist/src/messenger/index.d.ts +73 -12
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +4 -388
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/validation.d.ts +0 -7
- package/dist/src/user/validation.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +73 -12
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC"}
|
@@ -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;
|
@@ -202,7 +221,7 @@ export declare const instagramContract: {
|
|
202
221
|
phone: string | null;
|
203
222
|
} | undefined;
|
204
223
|
}>;
|
205
|
-
|
224
|
+
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
206
225
|
}, "strip", z.ZodTypeAny, {
|
207
226
|
id: string;
|
208
227
|
channel: {
|
@@ -230,10 +249,10 @@ export declare const instagramContract: {
|
|
230
249
|
} | undefined;
|
231
250
|
};
|
232
251
|
direction: "incoming" | "outgoing" | "system";
|
233
|
-
status: number;
|
234
252
|
createdAt: string;
|
235
253
|
updatedAt: string;
|
236
254
|
actor: {
|
255
|
+
id: string;
|
237
256
|
address: string | null;
|
238
257
|
name: string;
|
239
258
|
email: string;
|
@@ -242,6 +261,7 @@ export declare const instagramContract: {
|
|
242
261
|
isLatest: boolean;
|
243
262
|
platformContact: {
|
244
263
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
264
|
+
id: string;
|
245
265
|
metadata: {
|
246
266
|
id: string;
|
247
267
|
name: string;
|
@@ -259,8 +279,14 @@ export declare const instagramContract: {
|
|
259
279
|
channelId: string;
|
260
280
|
socialPlatformId: string | null;
|
261
281
|
};
|
282
|
+
assignee: {
|
283
|
+
id: string;
|
284
|
+
name: string;
|
285
|
+
email: string;
|
286
|
+
} | null;
|
262
287
|
lastMessage?: string | undefined;
|
263
288
|
handleTime?: number | undefined;
|
289
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
264
290
|
}, {
|
265
291
|
id: string;
|
266
292
|
channel: {
|
@@ -288,10 +314,10 @@ export declare const instagramContract: {
|
|
288
314
|
} | undefined;
|
289
315
|
};
|
290
316
|
direction: "incoming" | "outgoing" | "system";
|
291
|
-
status: number;
|
292
317
|
createdAt: string;
|
293
318
|
updatedAt: string;
|
294
319
|
actor: {
|
320
|
+
id: string;
|
295
321
|
address: string | null;
|
296
322
|
name: string;
|
297
323
|
email: string;
|
@@ -300,6 +326,7 @@ export declare const instagramContract: {
|
|
300
326
|
isLatest: boolean;
|
301
327
|
platformContact: {
|
302
328
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
329
|
+
id: string;
|
303
330
|
metadata: {
|
304
331
|
id: string;
|
305
332
|
name: string;
|
@@ -317,8 +344,14 @@ export declare const instagramContract: {
|
|
317
344
|
channelId: string;
|
318
345
|
socialPlatformId: string | null;
|
319
346
|
};
|
347
|
+
assignee: {
|
348
|
+
id: string;
|
349
|
+
name: string;
|
350
|
+
email: string;
|
351
|
+
} | null;
|
320
352
|
lastMessage?: string | undefined;
|
321
353
|
handleTime?: number | undefined;
|
354
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
322
355
|
}>;
|
323
356
|
message: z.ZodObject<{
|
324
357
|
message: z.ZodOptional<z.ZodString>;
|
@@ -480,10 +513,10 @@ export declare const instagramContract: {
|
|
480
513
|
} | undefined;
|
481
514
|
};
|
482
515
|
direction: "incoming" | "outgoing" | "system";
|
483
|
-
status: number;
|
484
516
|
createdAt: string;
|
485
517
|
updatedAt: string;
|
486
518
|
actor: {
|
519
|
+
id: string;
|
487
520
|
address: string | null;
|
488
521
|
name: string;
|
489
522
|
email: string;
|
@@ -492,6 +525,7 @@ export declare const instagramContract: {
|
|
492
525
|
isLatest: boolean;
|
493
526
|
platformContact: {
|
494
527
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
528
|
+
id: string;
|
495
529
|
metadata: {
|
496
530
|
id: string;
|
497
531
|
name: string;
|
@@ -509,8 +543,14 @@ export declare const instagramContract: {
|
|
509
543
|
channelId: string;
|
510
544
|
socialPlatformId: string | null;
|
511
545
|
};
|
546
|
+
assignee: {
|
547
|
+
id: string;
|
548
|
+
name: string;
|
549
|
+
email: string;
|
550
|
+
} | null;
|
512
551
|
lastMessage?: string | undefined;
|
513
552
|
handleTime?: number | undefined;
|
553
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
514
554
|
};
|
515
555
|
}, {
|
516
556
|
message: {
|
@@ -568,10 +608,10 @@ export declare const instagramContract: {
|
|
568
608
|
} | undefined;
|
569
609
|
};
|
570
610
|
direction: "incoming" | "outgoing" | "system";
|
571
|
-
status: number;
|
572
611
|
createdAt: string;
|
573
612
|
updatedAt: string;
|
574
613
|
actor: {
|
614
|
+
id: string;
|
575
615
|
address: string | null;
|
576
616
|
name: string;
|
577
617
|
email: string;
|
@@ -580,6 +620,7 @@ export declare const instagramContract: {
|
|
580
620
|
isLatest: boolean;
|
581
621
|
platformContact: {
|
582
622
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
623
|
+
id: string;
|
583
624
|
metadata: {
|
584
625
|
id: string;
|
585
626
|
name: string;
|
@@ -597,8 +638,14 @@ export declare const instagramContract: {
|
|
597
638
|
channelId: string;
|
598
639
|
socialPlatformId: string | null;
|
599
640
|
};
|
641
|
+
assignee: {
|
642
|
+
id: string;
|
643
|
+
name: string;
|
644
|
+
email: string;
|
645
|
+
} | null;
|
600
646
|
lastMessage?: string | undefined;
|
601
647
|
handleTime?: number | undefined;
|
648
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
602
649
|
};
|
603
650
|
}>;
|
604
651
|
method: "POST";
|
@@ -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"}
|