@kl1/contracts 1.1.4 → 1.1.5
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 +933 -886
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +932 -886
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +2985 -2123
- 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 -7
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/chatwoot/index.d.ts +7527 -0
- package/dist/src/chatwoot/index.d.ts.map +1 -0
- package/dist/src/chatwoot/schema.d.ts +79 -0
- package/dist/src/chatwoot/schema.d.ts.map +1 -0
- package/dist/src/chatwoot/validation.d.ts +53 -0
- package/dist/src/chatwoot/validation.d.ts.map +1 -0
- package/dist/src/contract.d.ts +5238 -3489
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +73 -7
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +73 -7
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +289 -136
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/index.d.ts +10 -0
- package/dist/src/mail/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1775 -1162
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +477 -18
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/mail/message-contract.d.ts +54 -54
- package/dist/src/mail/room-contract.d.ts +957 -954
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/message.schema.d.ts +42 -42
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +325 -322
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +683 -259
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +83 -7
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/viber/index.d.ts +73 -7
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/line/index.d.ts
CHANGED
@@ -849,6 +849,7 @@ export declare const lineContract: {
|
|
849
849
|
createdAt: z.ZodString;
|
850
850
|
updatedAt: z.ZodString;
|
851
851
|
platformContact: z.ZodObject<{
|
852
|
+
id: z.ZodString;
|
852
853
|
channelId: z.ZodString;
|
853
854
|
socialPlatformId: z.ZodNullable<z.ZodString>;
|
854
855
|
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
|
@@ -892,6 +893,7 @@ export declare const lineContract: {
|
|
892
893
|
}>;
|
893
894
|
}, "strip", z.ZodTypeAny, {
|
894
895
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
896
|
+
id: string;
|
895
897
|
metadata: {
|
896
898
|
id: string;
|
897
899
|
name: string;
|
@@ -910,6 +912,7 @@ export declare const lineContract: {
|
|
910
912
|
socialPlatformId: string | null;
|
911
913
|
}, {
|
912
914
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
915
|
+
id: string;
|
913
916
|
metadata: {
|
914
917
|
id: string;
|
915
918
|
name: string;
|
@@ -928,21 +931,37 @@ export declare const lineContract: {
|
|
928
931
|
socialPlatformId: string | null;
|
929
932
|
}>;
|
930
933
|
actor: z.ZodNullable<z.ZodObject<{
|
934
|
+
id: z.ZodString;
|
931
935
|
name: z.ZodString;
|
932
936
|
email: z.ZodString;
|
933
937
|
address: z.ZodNullable<z.ZodString>;
|
934
938
|
phone: z.ZodNullable<z.ZodString>;
|
935
939
|
}, "strip", z.ZodTypeAny, {
|
940
|
+
id: string;
|
936
941
|
address: string | null;
|
937
942
|
name: string;
|
938
943
|
email: string;
|
939
944
|
phone: string | null;
|
940
945
|
}, {
|
946
|
+
id: string;
|
941
947
|
address: string | null;
|
942
948
|
name: string;
|
943
949
|
email: string;
|
944
950
|
phone: string | null;
|
945
951
|
}>>;
|
952
|
+
assignee: z.ZodNullable<z.ZodObject<{
|
953
|
+
id: z.ZodString;
|
954
|
+
name: z.ZodString;
|
955
|
+
email: z.ZodString;
|
956
|
+
}, "strip", z.ZodTypeAny, {
|
957
|
+
id: string;
|
958
|
+
name: string;
|
959
|
+
email: string;
|
960
|
+
}, {
|
961
|
+
id: string;
|
962
|
+
name: string;
|
963
|
+
email: string;
|
964
|
+
}>>;
|
946
965
|
channel: z.ZodObject<{
|
947
966
|
id: z.ZodString;
|
948
967
|
name: z.ZodString;
|
@@ -1037,6 +1056,7 @@ export declare const lineContract: {
|
|
1037
1056
|
phone: string | null;
|
1038
1057
|
} | undefined;
|
1039
1058
|
}>;
|
1059
|
+
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
1040
1060
|
}, "strip", z.ZodTypeAny, {
|
1041
1061
|
id: string;
|
1042
1062
|
channel: {
|
@@ -1067,6 +1087,7 @@ export declare const lineContract: {
|
|
1067
1087
|
createdAt: string;
|
1068
1088
|
updatedAt: string;
|
1069
1089
|
actor: {
|
1090
|
+
id: string;
|
1070
1091
|
address: string | null;
|
1071
1092
|
name: string;
|
1072
1093
|
email: string;
|
@@ -1075,6 +1096,7 @@ export declare const lineContract: {
|
|
1075
1096
|
isLatest: boolean;
|
1076
1097
|
platformContact: {
|
1077
1098
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1099
|
+
id: string;
|
1078
1100
|
metadata: {
|
1079
1101
|
id: string;
|
1080
1102
|
name: string;
|
@@ -1092,8 +1114,14 @@ export declare const lineContract: {
|
|
1092
1114
|
channelId: string;
|
1093
1115
|
socialPlatformId: string | null;
|
1094
1116
|
};
|
1117
|
+
assignee: {
|
1118
|
+
id: string;
|
1119
|
+
name: string;
|
1120
|
+
email: string;
|
1121
|
+
} | null;
|
1095
1122
|
lastMessage?: string | undefined;
|
1096
1123
|
handleTime?: number | undefined;
|
1124
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1097
1125
|
}, {
|
1098
1126
|
id: string;
|
1099
1127
|
channel: {
|
@@ -1124,6 +1152,7 @@ export declare const lineContract: {
|
|
1124
1152
|
createdAt: string;
|
1125
1153
|
updatedAt: string;
|
1126
1154
|
actor: {
|
1155
|
+
id: string;
|
1127
1156
|
address: string | null;
|
1128
1157
|
name: string;
|
1129
1158
|
email: string;
|
@@ -1132,6 +1161,7 @@ export declare const lineContract: {
|
|
1132
1161
|
isLatest: boolean;
|
1133
1162
|
platformContact: {
|
1134
1163
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1164
|
+
id: string;
|
1135
1165
|
metadata: {
|
1136
1166
|
id: string;
|
1137
1167
|
name: string;
|
@@ -1149,8 +1179,14 @@ export declare const lineContract: {
|
|
1149
1179
|
channelId: string;
|
1150
1180
|
socialPlatformId: string | null;
|
1151
1181
|
};
|
1182
|
+
assignee: {
|
1183
|
+
id: string;
|
1184
|
+
name: string;
|
1185
|
+
email: string;
|
1186
|
+
} | null;
|
1152
1187
|
lastMessage?: string | undefined;
|
1153
1188
|
handleTime?: number | undefined;
|
1189
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1154
1190
|
}>;
|
1155
1191
|
message: z.ZodObject<{
|
1156
1192
|
message: z.ZodOptional<z.ZodString>;
|
@@ -1315,6 +1351,7 @@ export declare const lineContract: {
|
|
1315
1351
|
createdAt: string;
|
1316
1352
|
updatedAt: string;
|
1317
1353
|
actor: {
|
1354
|
+
id: string;
|
1318
1355
|
address: string | null;
|
1319
1356
|
name: string;
|
1320
1357
|
email: string;
|
@@ -1323,6 +1360,7 @@ export declare const lineContract: {
|
|
1323
1360
|
isLatest: boolean;
|
1324
1361
|
platformContact: {
|
1325
1362
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1363
|
+
id: string;
|
1326
1364
|
metadata: {
|
1327
1365
|
id: string;
|
1328
1366
|
name: string;
|
@@ -1340,8 +1378,14 @@ export declare const lineContract: {
|
|
1340
1378
|
channelId: string;
|
1341
1379
|
socialPlatformId: string | null;
|
1342
1380
|
};
|
1381
|
+
assignee: {
|
1382
|
+
id: string;
|
1383
|
+
name: string;
|
1384
|
+
email: string;
|
1385
|
+
} | null;
|
1343
1386
|
lastMessage?: string | undefined;
|
1344
1387
|
handleTime?: number | undefined;
|
1388
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1345
1389
|
};
|
1346
1390
|
}, {
|
1347
1391
|
message: {
|
@@ -1402,6 +1446,7 @@ export declare const lineContract: {
|
|
1402
1446
|
createdAt: string;
|
1403
1447
|
updatedAt: string;
|
1404
1448
|
actor: {
|
1449
|
+
id: string;
|
1405
1450
|
address: string | null;
|
1406
1451
|
name: string;
|
1407
1452
|
email: string;
|
@@ -1410,6 +1455,7 @@ export declare const lineContract: {
|
|
1410
1455
|
isLatest: boolean;
|
1411
1456
|
platformContact: {
|
1412
1457
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1458
|
+
id: string;
|
1413
1459
|
metadata: {
|
1414
1460
|
id: string;
|
1415
1461
|
name: string;
|
@@ -1427,8 +1473,14 @@ export declare const lineContract: {
|
|
1427
1473
|
channelId: string;
|
1428
1474
|
socialPlatformId: string | null;
|
1429
1475
|
};
|
1476
|
+
assignee: {
|
1477
|
+
id: string;
|
1478
|
+
name: string;
|
1479
|
+
email: string;
|
1480
|
+
} | null;
|
1430
1481
|
lastMessage?: string | undefined;
|
1431
1482
|
handleTime?: number | undefined;
|
1483
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1432
1484
|
};
|
1433
1485
|
}>;
|
1434
1486
|
method: "POST";
|
@@ -1460,7 +1512,9 @@ export declare const lineContract: {
|
|
1460
1512
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1461
1513
|
lastMessage: z.ZodString;
|
1462
1514
|
handleTime: z.ZodNumber;
|
1463
|
-
|
1515
|
+
closedAt: z.ZodDate;
|
1516
|
+
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
1517
|
+
status: z.ZodNumber;
|
1464
1518
|
unreadCount: z.ZodNumber;
|
1465
1519
|
firstResponseAt: z.ZodDate;
|
1466
1520
|
firstResponseTime: z.ZodNumber;
|
@@ -3385,6 +3439,7 @@ export declare const lineContract: {
|
|
3385
3439
|
connectedUserId: string;
|
3386
3440
|
};
|
3387
3441
|
direction: "incoming" | "outgoing" | "system";
|
3442
|
+
status: number;
|
3388
3443
|
createdAt: Date;
|
3389
3444
|
updatedAt: Date;
|
3390
3445
|
deletedAt: Date | null;
|
@@ -3435,7 +3490,6 @@ export declare const lineContract: {
|
|
3435
3490
|
firstResponseTime: number;
|
3436
3491
|
lastMessage: string;
|
3437
3492
|
handleTime: number;
|
3438
|
-
closeAt: Date;
|
3439
3493
|
unreadCount: number;
|
3440
3494
|
firstResponseAt: Date;
|
3441
3495
|
isLatest: boolean;
|
@@ -3595,6 +3649,8 @@ export declare const lineContract: {
|
|
3595
3649
|
telephonySignature: string | null;
|
3596
3650
|
};
|
3597
3651
|
};
|
3652
|
+
closedAt: Date;
|
3653
|
+
lastMessageAt: Date | null;
|
3598
3654
|
cxlog: {
|
3599
3655
|
id: string;
|
3600
3656
|
channel: string | null;
|
@@ -3697,6 +3753,7 @@ export declare const lineContract: {
|
|
3697
3753
|
connectedUserId: string;
|
3698
3754
|
};
|
3699
3755
|
direction: "incoming" | "outgoing" | "system";
|
3756
|
+
status: number;
|
3700
3757
|
createdAt: Date;
|
3701
3758
|
updatedAt: Date;
|
3702
3759
|
deletedAt: Date | null;
|
@@ -3747,7 +3804,6 @@ export declare const lineContract: {
|
|
3747
3804
|
firstResponseTime: number;
|
3748
3805
|
lastMessage: string;
|
3749
3806
|
handleTime: number;
|
3750
|
-
closeAt: Date;
|
3751
3807
|
unreadCount: number;
|
3752
3808
|
firstResponseAt: Date;
|
3753
3809
|
isLatest: boolean;
|
@@ -3907,6 +3963,8 @@ export declare const lineContract: {
|
|
3907
3963
|
telephonySignature: string | null;
|
3908
3964
|
};
|
3909
3965
|
};
|
3966
|
+
closedAt: Date;
|
3967
|
+
lastMessageAt: Date | null;
|
3910
3968
|
cxlog: {
|
3911
3969
|
id: string;
|
3912
3970
|
channel: string | null;
|
@@ -5755,6 +5813,7 @@ export declare const lineContract: {
|
|
5755
5813
|
connectedUserId: string;
|
5756
5814
|
};
|
5757
5815
|
direction: "incoming" | "outgoing" | "system";
|
5816
|
+
status: number;
|
5758
5817
|
createdAt: Date;
|
5759
5818
|
updatedAt: Date;
|
5760
5819
|
deletedAt: Date | null;
|
@@ -5805,7 +5864,6 @@ export declare const lineContract: {
|
|
5805
5864
|
firstResponseTime: number;
|
5806
5865
|
lastMessage: string;
|
5807
5866
|
handleTime: number;
|
5808
|
-
closeAt: Date;
|
5809
5867
|
unreadCount: number;
|
5810
5868
|
firstResponseAt: Date;
|
5811
5869
|
isLatest: boolean;
|
@@ -5965,6 +6023,8 @@ export declare const lineContract: {
|
|
5965
6023
|
telephonySignature: string | null;
|
5966
6024
|
};
|
5967
6025
|
};
|
6026
|
+
closedAt: Date;
|
6027
|
+
lastMessageAt: Date | null;
|
5968
6028
|
cxlog: {
|
5969
6029
|
id: string;
|
5970
6030
|
channel: string | null;
|
@@ -6393,6 +6453,7 @@ export declare const lineContract: {
|
|
6393
6453
|
connectedUserId: string;
|
6394
6454
|
};
|
6395
6455
|
direction: "incoming" | "outgoing" | "system";
|
6456
|
+
status: number;
|
6396
6457
|
createdAt: Date;
|
6397
6458
|
updatedAt: Date;
|
6398
6459
|
deletedAt: Date | null;
|
@@ -6443,7 +6504,6 @@ export declare const lineContract: {
|
|
6443
6504
|
firstResponseTime: number;
|
6444
6505
|
lastMessage: string;
|
6445
6506
|
handleTime: number;
|
6446
|
-
closeAt: Date;
|
6447
6507
|
unreadCount: number;
|
6448
6508
|
firstResponseAt: Date;
|
6449
6509
|
isLatest: boolean;
|
@@ -6603,6 +6663,8 @@ export declare const lineContract: {
|
|
6603
6663
|
telephonySignature: string | null;
|
6604
6664
|
};
|
6605
6665
|
};
|
6666
|
+
closedAt: Date;
|
6667
|
+
lastMessageAt: Date | null;
|
6606
6668
|
cxlog: {
|
6607
6669
|
id: string;
|
6608
6670
|
channel: string | null;
|
@@ -7033,6 +7095,7 @@ export declare const lineContract: {
|
|
7033
7095
|
connectedUserId: string;
|
7034
7096
|
};
|
7035
7097
|
direction: "incoming" | "outgoing" | "system";
|
7098
|
+
status: number;
|
7036
7099
|
createdAt: Date;
|
7037
7100
|
updatedAt: Date;
|
7038
7101
|
deletedAt: Date | null;
|
@@ -7083,7 +7146,6 @@ export declare const lineContract: {
|
|
7083
7146
|
firstResponseTime: number;
|
7084
7147
|
lastMessage: string;
|
7085
7148
|
handleTime: number;
|
7086
|
-
closeAt: Date;
|
7087
7149
|
unreadCount: number;
|
7088
7150
|
firstResponseAt: Date;
|
7089
7151
|
isLatest: boolean;
|
@@ -7243,6 +7305,8 @@ export declare const lineContract: {
|
|
7243
7305
|
telephonySignature: string | null;
|
7244
7306
|
};
|
7245
7307
|
};
|
7308
|
+
closedAt: Date;
|
7309
|
+
lastMessageAt: Date | null;
|
7246
7310
|
cxlog: {
|
7247
7311
|
id: string;
|
7248
7312
|
channel: string | null;
|
@@ -7674,6 +7738,7 @@ export declare const lineContract: {
|
|
7674
7738
|
connectedUserId: string;
|
7675
7739
|
};
|
7676
7740
|
direction: "incoming" | "outgoing" | "system";
|
7741
|
+
status: number;
|
7677
7742
|
createdAt: Date;
|
7678
7743
|
updatedAt: Date;
|
7679
7744
|
deletedAt: Date | null;
|
@@ -7724,7 +7789,6 @@ export declare const lineContract: {
|
|
7724
7789
|
firstResponseTime: number;
|
7725
7790
|
lastMessage: string;
|
7726
7791
|
handleTime: number;
|
7727
|
-
closeAt: Date;
|
7728
7792
|
unreadCount: number;
|
7729
7793
|
firstResponseAt: Date;
|
7730
7794
|
isLatest: boolean;
|
@@ -7884,6 +7948,8 @@ export declare const lineContract: {
|
|
7884
7948
|
telephonySignature: string | null;
|
7885
7949
|
};
|
7886
7950
|
};
|
7951
|
+
closedAt: Date;
|
7952
|
+
lastMessageAt: Date | null;
|
7887
7953
|
cxlog: {
|
7888
7954
|
id: string;
|
7889
7955
|
channel: string | null;
|
@@ -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"}
|