@kl1/contracts 1.0.63 → 1.0.65
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 +87 -71
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +87 -71
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +2224 -2175
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +8 -0
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +5 -0
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +105 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +16 -6
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +43 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +8237 -2178
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +17 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +9 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/cx-log/validation.d.ts +3 -0
- package/dist/src/cx-log/validation.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +56 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +5789 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/schema.d.ts +6 -0
- package/dist/src/line/schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +56 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -113,16 +113,19 @@ export declare const instagramContract: {
|
|
113
113
|
id: z.ZodString;
|
114
114
|
name: z.ZodString;
|
115
115
|
accessToken: z.ZodString;
|
116
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
116
117
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
117
118
|
}, "strip", z.ZodTypeAny, {
|
118
119
|
id: string;
|
119
120
|
name: string;
|
120
121
|
accessToken: string;
|
122
|
+
channelSecret?: string | undefined;
|
121
123
|
additionalCredentials?: any;
|
122
124
|
}, {
|
123
125
|
id: string;
|
124
126
|
name: string;
|
125
127
|
accessToken: string;
|
128
|
+
channelSecret?: string | undefined;
|
126
129
|
additionalCredentials?: any;
|
127
130
|
}>;
|
128
131
|
platformId: z.ZodString;
|
@@ -156,6 +159,7 @@ export declare const instagramContract: {
|
|
156
159
|
id: string;
|
157
160
|
name: string;
|
158
161
|
accessToken: string;
|
162
|
+
channelSecret?: string | undefined;
|
159
163
|
additionalCredentials?: any;
|
160
164
|
};
|
161
165
|
status: boolean;
|
@@ -177,6 +181,7 @@ export declare const instagramContract: {
|
|
177
181
|
id: string;
|
178
182
|
name: string;
|
179
183
|
accessToken: string;
|
184
|
+
channelSecret?: string | undefined;
|
180
185
|
additionalCredentials?: any;
|
181
186
|
};
|
182
187
|
status: boolean;
|
@@ -201,6 +206,7 @@ export declare const instagramContract: {
|
|
201
206
|
id: string;
|
202
207
|
name: string;
|
203
208
|
accessToken: string;
|
209
|
+
channelSecret?: string | undefined;
|
204
210
|
additionalCredentials?: any;
|
205
211
|
};
|
206
212
|
status: boolean;
|
@@ -254,6 +260,7 @@ export declare const instagramContract: {
|
|
254
260
|
id: string;
|
255
261
|
name: string;
|
256
262
|
accessToken: string;
|
263
|
+
channelSecret?: string | undefined;
|
257
264
|
additionalCredentials?: any;
|
258
265
|
};
|
259
266
|
status: boolean;
|
@@ -435,6 +442,7 @@ export declare const instagramContract: {
|
|
435
442
|
id: string;
|
436
443
|
name: string;
|
437
444
|
accessToken: string;
|
445
|
+
channelSecret?: string | undefined;
|
438
446
|
additionalCredentials?: any;
|
439
447
|
};
|
440
448
|
status: boolean;
|
@@ -517,6 +525,7 @@ export declare const instagramContract: {
|
|
517
525
|
id: string;
|
518
526
|
name: string;
|
519
527
|
accessToken: string;
|
528
|
+
channelSecret?: string | undefined;
|
520
529
|
additionalCredentials?: any;
|
521
530
|
};
|
522
531
|
status: boolean;
|
@@ -2036,16 +2045,19 @@ export declare const instagramContract: {
|
|
2036
2045
|
id: z.ZodString;
|
2037
2046
|
name: z.ZodString;
|
2038
2047
|
accessToken: z.ZodString;
|
2048
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
2039
2049
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2040
2050
|
}, "strip", z.ZodTypeAny, {
|
2041
2051
|
id: string;
|
2042
2052
|
name: string;
|
2043
2053
|
accessToken: string;
|
2054
|
+
channelSecret?: string | undefined;
|
2044
2055
|
additionalCredentials?: any;
|
2045
2056
|
}, {
|
2046
2057
|
id: string;
|
2047
2058
|
name: string;
|
2048
2059
|
accessToken: string;
|
2060
|
+
channelSecret?: string | undefined;
|
2049
2061
|
additionalCredentials?: any;
|
2050
2062
|
}>>;
|
2051
2063
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -2269,6 +2281,7 @@ export declare const instagramContract: {
|
|
2269
2281
|
id: string;
|
2270
2282
|
name: string;
|
2271
2283
|
accessToken: string;
|
2284
|
+
channelSecret?: string | undefined;
|
2272
2285
|
additionalCredentials?: any;
|
2273
2286
|
} | undefined;
|
2274
2287
|
brandName?: string | undefined;
|
@@ -2332,6 +2345,7 @@ export declare const instagramContract: {
|
|
2332
2345
|
id: string;
|
2333
2346
|
name: string;
|
2334
2347
|
accessToken: string;
|
2348
|
+
channelSecret?: string | undefined;
|
2335
2349
|
additionalCredentials?: any;
|
2336
2350
|
} | undefined;
|
2337
2351
|
brandName?: string | undefined;
|
@@ -2798,6 +2812,7 @@ export declare const instagramContract: {
|
|
2798
2812
|
id: string;
|
2799
2813
|
name: string;
|
2800
2814
|
accessToken: string;
|
2815
|
+
channelSecret?: string | undefined;
|
2801
2816
|
additionalCredentials?: any;
|
2802
2817
|
} | undefined;
|
2803
2818
|
brandName?: string | undefined;
|
@@ -3117,6 +3132,7 @@ export declare const instagramContract: {
|
|
3117
3132
|
id: string;
|
3118
3133
|
name: string;
|
3119
3134
|
accessToken: string;
|
3135
|
+
channelSecret?: string | undefined;
|
3120
3136
|
additionalCredentials?: any;
|
3121
3137
|
} | undefined;
|
3122
3138
|
brandName?: string | undefined;
|
@@ -4193,6 +4209,7 @@ export declare const instagramContract: {
|
|
4193
4209
|
id: string;
|
4194
4210
|
name: string;
|
4195
4211
|
accessToken: string;
|
4212
|
+
channelSecret?: string | undefined;
|
4196
4213
|
additionalCredentials?: any;
|
4197
4214
|
} | undefined;
|
4198
4215
|
brandName?: string | undefined;
|
@@ -4675,6 +4692,7 @@ export declare const instagramContract: {
|
|
4675
4692
|
id: string;
|
4676
4693
|
name: string;
|
4677
4694
|
accessToken: string;
|
4695
|
+
channelSecret?: string | undefined;
|
4678
4696
|
additionalCredentials?: any;
|
4679
4697
|
} | undefined;
|
4680
4698
|
brandName?: string | undefined;
|
@@ -5159,6 +5177,7 @@ export declare const instagramContract: {
|
|
5159
5177
|
id: string;
|
5160
5178
|
name: string;
|
5161
5179
|
accessToken: string;
|
5180
|
+
channelSecret?: string | undefined;
|
5162
5181
|
additionalCredentials?: any;
|
5163
5182
|
} | undefined;
|
5164
5183
|
brandName?: string | undefined;
|
@@ -5644,6 +5663,7 @@ export declare const instagramContract: {
|
|
5644
5663
|
id: string;
|
5645
5664
|
name: string;
|
5646
5665
|
accessToken: string;
|
5666
|
+
channelSecret?: string | undefined;
|
5647
5667
|
additionalCredentials?: any;
|
5648
5668
|
} | undefined;
|
5649
5669
|
brandName?: string | undefined;
|
@@ -5774,16 +5794,19 @@ export declare const instagramContract: {
|
|
5774
5794
|
id: z.ZodString;
|
5775
5795
|
name: z.ZodString;
|
5776
5796
|
accessToken: z.ZodString;
|
5797
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
5777
5798
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
5778
5799
|
}, "strip", z.ZodTypeAny, {
|
5779
5800
|
id: string;
|
5780
5801
|
name: string;
|
5781
5802
|
accessToken: string;
|
5803
|
+
channelSecret?: string | undefined;
|
5782
5804
|
additionalCredentials?: any;
|
5783
5805
|
}, {
|
5784
5806
|
id: string;
|
5785
5807
|
name: string;
|
5786
5808
|
accessToken: string;
|
5809
|
+
channelSecret?: string | undefined;
|
5787
5810
|
additionalCredentials?: any;
|
5788
5811
|
}>;
|
5789
5812
|
platformId: z.ZodString;
|
@@ -5817,6 +5840,7 @@ export declare const instagramContract: {
|
|
5817
5840
|
id: string;
|
5818
5841
|
name: string;
|
5819
5842
|
accessToken: string;
|
5843
|
+
channelSecret?: string | undefined;
|
5820
5844
|
additionalCredentials?: any;
|
5821
5845
|
};
|
5822
5846
|
status: boolean;
|
@@ -5838,6 +5862,7 @@ export declare const instagramContract: {
|
|
5838
5862
|
id: string;
|
5839
5863
|
name: string;
|
5840
5864
|
accessToken: string;
|
5865
|
+
channelSecret?: string | undefined;
|
5841
5866
|
additionalCredentials?: any;
|
5842
5867
|
};
|
5843
5868
|
status: boolean;
|
@@ -5864,16 +5889,19 @@ export declare const instagramContract: {
|
|
5864
5889
|
id: z.ZodString;
|
5865
5890
|
name: z.ZodString;
|
5866
5891
|
accessToken: z.ZodString;
|
5892
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
5867
5893
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
5868
5894
|
}, "strip", z.ZodTypeAny, {
|
5869
5895
|
id: string;
|
5870
5896
|
name: string;
|
5871
5897
|
accessToken: string;
|
5898
|
+
channelSecret?: string | undefined;
|
5872
5899
|
additionalCredentials?: any;
|
5873
5900
|
}, {
|
5874
5901
|
id: string;
|
5875
5902
|
name: string;
|
5876
5903
|
accessToken: string;
|
5904
|
+
channelSecret?: string | undefined;
|
5877
5905
|
additionalCredentials?: any;
|
5878
5906
|
}>;
|
5879
5907
|
platformId: z.ZodString;
|
@@ -5907,6 +5935,7 @@ export declare const instagramContract: {
|
|
5907
5935
|
id: string;
|
5908
5936
|
name: string;
|
5909
5937
|
accessToken: string;
|
5938
|
+
channelSecret?: string | undefined;
|
5910
5939
|
additionalCredentials?: any;
|
5911
5940
|
};
|
5912
5941
|
status: boolean;
|
@@ -5928,6 +5957,7 @@ export declare const instagramContract: {
|
|
5928
5957
|
id: string;
|
5929
5958
|
name: string;
|
5930
5959
|
accessToken: string;
|
5960
|
+
channelSecret?: string | undefined;
|
5931
5961
|
additionalCredentials?: any;
|
5932
5962
|
};
|
5933
5963
|
status: boolean;
|
@@ -5951,6 +5981,7 @@ export declare const instagramContract: {
|
|
5951
5981
|
id: string;
|
5952
5982
|
name: string;
|
5953
5983
|
accessToken: string;
|
5984
|
+
channelSecret?: string | undefined;
|
5954
5985
|
additionalCredentials?: any;
|
5955
5986
|
};
|
5956
5987
|
status: boolean;
|
@@ -5975,6 +6006,7 @@ export declare const instagramContract: {
|
|
5975
6006
|
id: string;
|
5976
6007
|
name: string;
|
5977
6008
|
accessToken: string;
|
6009
|
+
channelSecret?: string | undefined;
|
5978
6010
|
additionalCredentials?: any;
|
5979
6011
|
};
|
5980
6012
|
status: boolean;
|
@@ -6023,16 +6055,19 @@ export declare const instagramContract: {
|
|
6023
6055
|
id: z.ZodString;
|
6024
6056
|
name: z.ZodString;
|
6025
6057
|
accessToken: z.ZodString;
|
6058
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
6026
6059
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
6027
6060
|
}, "strip", z.ZodTypeAny, {
|
6028
6061
|
id: string;
|
6029
6062
|
name: string;
|
6030
6063
|
accessToken: string;
|
6064
|
+
channelSecret?: string | undefined;
|
6031
6065
|
additionalCredentials?: any;
|
6032
6066
|
}, {
|
6033
6067
|
id: string;
|
6034
6068
|
name: string;
|
6035
6069
|
accessToken: string;
|
6070
|
+
channelSecret?: string | undefined;
|
6036
6071
|
additionalCredentials?: any;
|
6037
6072
|
}>>;
|
6038
6073
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -6066,6 +6101,7 @@ export declare const instagramContract: {
|
|
6066
6101
|
id: string;
|
6067
6102
|
name: string;
|
6068
6103
|
accessToken: string;
|
6104
|
+
channelSecret?: string | undefined;
|
6069
6105
|
additionalCredentials?: any;
|
6070
6106
|
} | undefined;
|
6071
6107
|
platformId?: string | undefined;
|
@@ -6087,6 +6123,7 @@ export declare const instagramContract: {
|
|
6087
6123
|
id: string;
|
6088
6124
|
name: string;
|
6089
6125
|
accessToken: string;
|
6126
|
+
channelSecret?: string | undefined;
|
6090
6127
|
additionalCredentials?: any;
|
6091
6128
|
} | undefined;
|
6092
6129
|
platformId?: string | undefined;
|
@@ -6113,16 +6150,19 @@ export declare const instagramContract: {
|
|
6113
6150
|
id: z.ZodString;
|
6114
6151
|
name: z.ZodString;
|
6115
6152
|
accessToken: z.ZodString;
|
6153
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
6116
6154
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
6117
6155
|
}, "strip", z.ZodTypeAny, {
|
6118
6156
|
id: string;
|
6119
6157
|
name: string;
|
6120
6158
|
accessToken: string;
|
6159
|
+
channelSecret?: string | undefined;
|
6121
6160
|
additionalCredentials?: any;
|
6122
6161
|
}, {
|
6123
6162
|
id: string;
|
6124
6163
|
name: string;
|
6125
6164
|
accessToken: string;
|
6165
|
+
channelSecret?: string | undefined;
|
6126
6166
|
additionalCredentials?: any;
|
6127
6167
|
}>;
|
6128
6168
|
platformId: z.ZodString;
|
@@ -6156,6 +6196,7 @@ export declare const instagramContract: {
|
|
6156
6196
|
id: string;
|
6157
6197
|
name: string;
|
6158
6198
|
accessToken: string;
|
6199
|
+
channelSecret?: string | undefined;
|
6159
6200
|
additionalCredentials?: any;
|
6160
6201
|
};
|
6161
6202
|
status: boolean;
|
@@ -6177,6 +6218,7 @@ export declare const instagramContract: {
|
|
6177
6218
|
id: string;
|
6178
6219
|
name: string;
|
6179
6220
|
accessToken: string;
|
6221
|
+
channelSecret?: string | undefined;
|
6180
6222
|
additionalCredentials?: any;
|
6181
6223
|
};
|
6182
6224
|
status: boolean;
|
@@ -6200,6 +6242,7 @@ export declare const instagramContract: {
|
|
6200
6242
|
id: string;
|
6201
6243
|
name: string;
|
6202
6244
|
accessToken: string;
|
6245
|
+
channelSecret?: string | undefined;
|
6203
6246
|
additionalCredentials?: any;
|
6204
6247
|
};
|
6205
6248
|
status: boolean;
|
@@ -6224,6 +6267,7 @@ export declare const instagramContract: {
|
|
6224
6267
|
id: string;
|
6225
6268
|
name: string;
|
6226
6269
|
accessToken: string;
|
6270
|
+
channelSecret?: string | undefined;
|
6227
6271
|
additionalCredentials?: any;
|
6228
6272
|
};
|
6229
6273
|
status: boolean;
|
@@ -6272,16 +6316,19 @@ export declare const instagramContract: {
|
|
6272
6316
|
id: z.ZodString;
|
6273
6317
|
name: z.ZodString;
|
6274
6318
|
accessToken: z.ZodString;
|
6319
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
6275
6320
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
6276
6321
|
}, "strip", z.ZodTypeAny, {
|
6277
6322
|
id: string;
|
6278
6323
|
name: string;
|
6279
6324
|
accessToken: string;
|
6325
|
+
channelSecret?: string | undefined;
|
6280
6326
|
additionalCredentials?: any;
|
6281
6327
|
}, {
|
6282
6328
|
id: string;
|
6283
6329
|
name: string;
|
6284
6330
|
accessToken: string;
|
6331
|
+
channelSecret?: string | undefined;
|
6285
6332
|
additionalCredentials?: any;
|
6286
6333
|
}>>;
|
6287
6334
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -6315,6 +6362,7 @@ export declare const instagramContract: {
|
|
6315
6362
|
id: string;
|
6316
6363
|
name: string;
|
6317
6364
|
accessToken: string;
|
6365
|
+
channelSecret?: string | undefined;
|
6318
6366
|
additionalCredentials?: any;
|
6319
6367
|
} | undefined;
|
6320
6368
|
platformId?: string | undefined;
|
@@ -6336,6 +6384,7 @@ export declare const instagramContract: {
|
|
6336
6384
|
id: string;
|
6337
6385
|
name: string;
|
6338
6386
|
accessToken: string;
|
6387
|
+
channelSecret?: string | undefined;
|
6339
6388
|
additionalCredentials?: any;
|
6340
6389
|
} | undefined;
|
6341
6390
|
platformId?: string | undefined;
|
@@ -6362,16 +6411,19 @@ export declare const instagramContract: {
|
|
6362
6411
|
id: z.ZodString;
|
6363
6412
|
name: z.ZodString;
|
6364
6413
|
accessToken: z.ZodString;
|
6414
|
+
channelSecret: z.ZodOptional<z.ZodString>;
|
6365
6415
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
6366
6416
|
}, "strip", z.ZodTypeAny, {
|
6367
6417
|
id: string;
|
6368
6418
|
name: string;
|
6369
6419
|
accessToken: string;
|
6420
|
+
channelSecret?: string | undefined;
|
6370
6421
|
additionalCredentials?: any;
|
6371
6422
|
}, {
|
6372
6423
|
id: string;
|
6373
6424
|
name: string;
|
6374
6425
|
accessToken: string;
|
6426
|
+
channelSecret?: string | undefined;
|
6375
6427
|
additionalCredentials?: any;
|
6376
6428
|
}>;
|
6377
6429
|
platformId: z.ZodString;
|
@@ -6405,6 +6457,7 @@ export declare const instagramContract: {
|
|
6405
6457
|
id: string;
|
6406
6458
|
name: string;
|
6407
6459
|
accessToken: string;
|
6460
|
+
channelSecret?: string | undefined;
|
6408
6461
|
additionalCredentials?: any;
|
6409
6462
|
};
|
6410
6463
|
status: boolean;
|
@@ -6426,6 +6479,7 @@ export declare const instagramContract: {
|
|
6426
6479
|
id: string;
|
6427
6480
|
name: string;
|
6428
6481
|
accessToken: string;
|
6482
|
+
channelSecret?: string | undefined;
|
6429
6483
|
additionalCredentials?: any;
|
6430
6484
|
};
|
6431
6485
|
status: boolean;
|
@@ -6449,6 +6503,7 @@ export declare const instagramContract: {
|
|
6449
6503
|
id: string;
|
6450
6504
|
name: string;
|
6451
6505
|
accessToken: string;
|
6506
|
+
channelSecret?: string | undefined;
|
6452
6507
|
additionalCredentials?: any;
|
6453
6508
|
};
|
6454
6509
|
status: boolean;
|
@@ -6473,6 +6528,7 @@ export declare const instagramContract: {
|
|
6473
6528
|
id: string;
|
6474
6529
|
name: string;
|
6475
6530
|
accessToken: string;
|
6531
|
+
channelSecret?: string | undefined;
|
6476
6532
|
additionalCredentials?: any;
|
6477
6533
|
};
|
6478
6534
|
status: boolean;
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqD5B,CAAC"}
|