@kl1/contracts 1.1.47 → 1.1.48
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/api-contracts/src/mail/account-contract.d.ts +355 -8
- package/dist/api-contracts/src/mail/account-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +565 -13
- package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-server-contract.d.ts +210 -5
- package/dist/api-contracts/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts +152 -0
- package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +58 -0
- package/dist/api-contracts/src/mail/schemas/account.schema.d.ts.map +1 -1
- package/dist/index.js +112 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +112 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -235,7 +235,116 @@ export declare const accountContract: {
|
|
235
235
|
message: string;
|
236
236
|
}>;
|
237
237
|
};
|
238
|
-
path: "mail/account";
|
238
|
+
path: "email-service/mail/account";
|
239
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
240
|
+
'x-tenant': z.ZodString;
|
241
|
+
authorization: z.ZodString;
|
242
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
243
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
244
|
+
}, "strip", z.ZodTypeAny, {
|
245
|
+
'x-tenant': string;
|
246
|
+
authorization: string;
|
247
|
+
'x-client-timezone': string;
|
248
|
+
'x-code'?: string | undefined;
|
249
|
+
}, {
|
250
|
+
'x-tenant': string;
|
251
|
+
authorization: string;
|
252
|
+
'x-code'?: string | undefined;
|
253
|
+
'x-client-timezone'?: string | undefined;
|
254
|
+
}>>>;
|
255
|
+
};
|
256
|
+
generateOAuth2AuthenticationLink: {
|
257
|
+
body: z.ZodObject<{
|
258
|
+
oAuth2AppId: z.ZodString;
|
259
|
+
mailServerId: z.ZodString;
|
260
|
+
}, "strip", z.ZodTypeAny, {
|
261
|
+
mailServerId: string;
|
262
|
+
oAuth2AppId: string;
|
263
|
+
}, {
|
264
|
+
mailServerId: string;
|
265
|
+
oAuth2AppId: string;
|
266
|
+
}>;
|
267
|
+
summary: "Generate oauth2 authentication form link";
|
268
|
+
method: "POST";
|
269
|
+
responses: {
|
270
|
+
401: z.ZodObject<{
|
271
|
+
message: z.ZodString;
|
272
|
+
error: z.ZodAny;
|
273
|
+
}, "strip", z.ZodTypeAny, {
|
274
|
+
message: string;
|
275
|
+
error?: any;
|
276
|
+
}, {
|
277
|
+
message: string;
|
278
|
+
error?: any;
|
279
|
+
}>;
|
280
|
+
404: z.ZodObject<{
|
281
|
+
message: z.ZodString;
|
282
|
+
error: z.ZodAny;
|
283
|
+
}, "strip", z.ZodTypeAny, {
|
284
|
+
message: string;
|
285
|
+
error?: any;
|
286
|
+
}, {
|
287
|
+
message: string;
|
288
|
+
error?: any;
|
289
|
+
}>;
|
290
|
+
422: z.ZodObject<{
|
291
|
+
message: z.ZodString;
|
292
|
+
error: z.ZodAny;
|
293
|
+
}, "strip", z.ZodTypeAny, {
|
294
|
+
message: string;
|
295
|
+
error?: any;
|
296
|
+
}, {
|
297
|
+
message: string;
|
298
|
+
error?: any;
|
299
|
+
}>;
|
300
|
+
201: z.ZodObject<{
|
301
|
+
requestId: z.ZodString;
|
302
|
+
data: z.ZodObject<{
|
303
|
+
url: z.ZodString;
|
304
|
+
account: z.ZodString;
|
305
|
+
}, "strip", z.ZodTypeAny, {
|
306
|
+
url: string;
|
307
|
+
account: string;
|
308
|
+
}, {
|
309
|
+
url: string;
|
310
|
+
account: string;
|
311
|
+
}>;
|
312
|
+
}, "strip", z.ZodTypeAny, {
|
313
|
+
data: {
|
314
|
+
url: string;
|
315
|
+
account: string;
|
316
|
+
};
|
317
|
+
requestId: string;
|
318
|
+
}, {
|
319
|
+
data: {
|
320
|
+
url: string;
|
321
|
+
account: string;
|
322
|
+
};
|
323
|
+
requestId: string;
|
324
|
+
}>;
|
325
|
+
400: z.ZodObject<{
|
326
|
+
message: z.ZodString;
|
327
|
+
}, "strip", z.ZodTypeAny, {
|
328
|
+
message: string;
|
329
|
+
}, {
|
330
|
+
message: string;
|
331
|
+
}>;
|
332
|
+
409: z.ZodObject<{
|
333
|
+
message: z.ZodString;
|
334
|
+
}, "strip", z.ZodTypeAny, {
|
335
|
+
message: string;
|
336
|
+
}, {
|
337
|
+
message: string;
|
338
|
+
}>;
|
339
|
+
500: z.ZodObject<{
|
340
|
+
message: z.ZodString;
|
341
|
+
}, "strip", z.ZodTypeAny, {
|
342
|
+
message: string;
|
343
|
+
}, {
|
344
|
+
message: string;
|
345
|
+
}>;
|
346
|
+
};
|
347
|
+
path: "email-service/mail/account/oauth2_authentication_form_link";
|
239
348
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
240
349
|
'x-tenant': z.ZodString;
|
241
350
|
authorization: z.ZodString;
|
@@ -298,7 +407,7 @@ export declare const accountContract: {
|
|
298
407
|
requestId: string;
|
299
408
|
}>;
|
300
409
|
};
|
301
|
-
path: "mail/account/sync";
|
410
|
+
path: "email-service/mail/account/sync";
|
302
411
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
303
412
|
'x-tenant': z.ZodString;
|
304
413
|
authorization: z.ZodString;
|
@@ -521,7 +630,7 @@ export declare const accountContract: {
|
|
521
630
|
requestId: string;
|
522
631
|
}>;
|
523
632
|
};
|
524
|
-
path: "mail/account/:id";
|
633
|
+
path: "email-service/mail/account/:id";
|
525
634
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
526
635
|
'x-tenant': z.ZodString;
|
527
636
|
authorization: z.ZodString;
|
@@ -747,7 +856,7 @@ export declare const accountContract: {
|
|
747
856
|
requestId: string;
|
748
857
|
}>;
|
749
858
|
};
|
750
|
-
path: "mail/account";
|
859
|
+
path: "email-service/mail/account";
|
751
860
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
752
861
|
'x-tenant': z.ZodString;
|
753
862
|
authorization: z.ZodString;
|
@@ -1074,7 +1183,7 @@ export declare const accountContract: {
|
|
1074
1183
|
requestId: string;
|
1075
1184
|
}>;
|
1076
1185
|
};
|
1077
|
-
path: "mail/account/:id";
|
1186
|
+
path: "email-service/mail/account/:id";
|
1078
1187
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1079
1188
|
'x-tenant': z.ZodString;
|
1080
1189
|
authorization: z.ZodString;
|
@@ -1298,7 +1407,7 @@ export declare const accountContract: {
|
|
1298
1407
|
requestId: string;
|
1299
1408
|
}>;
|
1300
1409
|
};
|
1301
|
-
path: "mail/account/:id/disconnect";
|
1410
|
+
path: "email-service/mail/account/:id/disconnect";
|
1302
1411
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1303
1412
|
'x-tenant': z.ZodString;
|
1304
1413
|
authorization: z.ZodString;
|
@@ -1522,7 +1631,7 @@ export declare const accountContract: {
|
|
1522
1631
|
requestId: string;
|
1523
1632
|
}>;
|
1524
1633
|
};
|
1525
|
-
path: "mail/account/:id/reconnect";
|
1634
|
+
path: "email-service/mail/account/:id/reconnect";
|
1526
1635
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1527
1636
|
'x-tenant': z.ZodString;
|
1528
1637
|
authorization: z.ZodString;
|
@@ -1593,7 +1702,245 @@ export declare const accountContract: {
|
|
1593
1702
|
requestId: string;
|
1594
1703
|
}>;
|
1595
1704
|
};
|
1596
|
-
path: "mail/account/:id";
|
1705
|
+
path: "email-service/mail/account/:id";
|
1706
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1707
|
+
'x-tenant': z.ZodString;
|
1708
|
+
authorization: z.ZodString;
|
1709
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
1710
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
1711
|
+
}, "strip", z.ZodTypeAny, {
|
1712
|
+
'x-tenant': string;
|
1713
|
+
authorization: string;
|
1714
|
+
'x-client-timezone': string;
|
1715
|
+
'x-code'?: string | undefined;
|
1716
|
+
}, {
|
1717
|
+
'x-tenant': string;
|
1718
|
+
authorization: string;
|
1719
|
+
'x-code'?: string | undefined;
|
1720
|
+
'x-client-timezone'?: string | undefined;
|
1721
|
+
}>>>;
|
1722
|
+
};
|
1723
|
+
deleteEmailEngineAcc: {
|
1724
|
+
body: null;
|
1725
|
+
summary: "Delete an account by id";
|
1726
|
+
method: "DELETE";
|
1727
|
+
pathParams: z.ZodObject<{
|
1728
|
+
account: z.ZodString;
|
1729
|
+
}, "strip", z.ZodTypeAny, {
|
1730
|
+
account: string;
|
1731
|
+
}, {
|
1732
|
+
account: string;
|
1733
|
+
}>;
|
1734
|
+
responses: {
|
1735
|
+
401: z.ZodObject<{
|
1736
|
+
message: z.ZodString;
|
1737
|
+
error: z.ZodAny;
|
1738
|
+
}, "strip", z.ZodTypeAny, {
|
1739
|
+
message: string;
|
1740
|
+
error?: any;
|
1741
|
+
}, {
|
1742
|
+
message: string;
|
1743
|
+
error?: any;
|
1744
|
+
}>;
|
1745
|
+
404: z.ZodObject<{
|
1746
|
+
message: z.ZodString;
|
1747
|
+
error: z.ZodAny;
|
1748
|
+
}, "strip", z.ZodTypeAny, {
|
1749
|
+
message: string;
|
1750
|
+
error?: any;
|
1751
|
+
}, {
|
1752
|
+
message: string;
|
1753
|
+
error?: any;
|
1754
|
+
}>;
|
1755
|
+
422: z.ZodObject<{
|
1756
|
+
message: z.ZodString;
|
1757
|
+
error: z.ZodAny;
|
1758
|
+
}, "strip", z.ZodTypeAny, {
|
1759
|
+
message: string;
|
1760
|
+
error?: any;
|
1761
|
+
}, {
|
1762
|
+
message: string;
|
1763
|
+
error?: any;
|
1764
|
+
}>;
|
1765
|
+
200: z.ZodObject<{
|
1766
|
+
requestId: z.ZodString;
|
1767
|
+
message: z.ZodString;
|
1768
|
+
}, "strip", z.ZodTypeAny, {
|
1769
|
+
message: string;
|
1770
|
+
requestId: string;
|
1771
|
+
}, {
|
1772
|
+
message: string;
|
1773
|
+
requestId: string;
|
1774
|
+
}>;
|
1775
|
+
};
|
1776
|
+
path: "email-service/mail/account/email-engine/:account";
|
1777
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1778
|
+
'x-tenant': z.ZodString;
|
1779
|
+
authorization: z.ZodString;
|
1780
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
1781
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
1782
|
+
}, "strip", z.ZodTypeAny, {
|
1783
|
+
'x-tenant': string;
|
1784
|
+
authorization: string;
|
1785
|
+
'x-client-timezone': string;
|
1786
|
+
'x-code'?: string | undefined;
|
1787
|
+
}, {
|
1788
|
+
'x-tenant': string;
|
1789
|
+
authorization: string;
|
1790
|
+
'x-code'?: string | undefined;
|
1791
|
+
'x-client-timezone'?: string | undefined;
|
1792
|
+
}>>>;
|
1793
|
+
};
|
1794
|
+
createOAuth2Acc: {
|
1795
|
+
body: z.ZodObject<{
|
1796
|
+
account: z.ZodString;
|
1797
|
+
name: z.ZodString;
|
1798
|
+
}, "strip", z.ZodTypeAny, {
|
1799
|
+
name: string;
|
1800
|
+
account: string;
|
1801
|
+
}, {
|
1802
|
+
name: string;
|
1803
|
+
account: string;
|
1804
|
+
}>;
|
1805
|
+
summary: "Register OAuth2 account.";
|
1806
|
+
method: "POST";
|
1807
|
+
responses: {
|
1808
|
+
401: z.ZodObject<{
|
1809
|
+
message: z.ZodString;
|
1810
|
+
error: z.ZodAny;
|
1811
|
+
}, "strip", z.ZodTypeAny, {
|
1812
|
+
message: string;
|
1813
|
+
error?: any;
|
1814
|
+
}, {
|
1815
|
+
message: string;
|
1816
|
+
error?: any;
|
1817
|
+
}>;
|
1818
|
+
404: z.ZodObject<{
|
1819
|
+
message: z.ZodString;
|
1820
|
+
error: z.ZodAny;
|
1821
|
+
}, "strip", z.ZodTypeAny, {
|
1822
|
+
message: string;
|
1823
|
+
error?: any;
|
1824
|
+
}, {
|
1825
|
+
message: string;
|
1826
|
+
error?: any;
|
1827
|
+
}>;
|
1828
|
+
422: z.ZodObject<{
|
1829
|
+
message: z.ZodString;
|
1830
|
+
error: z.ZodAny;
|
1831
|
+
}, "strip", z.ZodTypeAny, {
|
1832
|
+
message: string;
|
1833
|
+
error?: any;
|
1834
|
+
}, {
|
1835
|
+
message: string;
|
1836
|
+
error?: any;
|
1837
|
+
}>;
|
1838
|
+
201: z.ZodObject<{
|
1839
|
+
id: z.ZodString;
|
1840
|
+
createdAt: z.ZodDate;
|
1841
|
+
updatedAt: z.ZodDate;
|
1842
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
1843
|
+
name: z.ZodString;
|
1844
|
+
address: z.ZodString;
|
1845
|
+
accountId: z.ZodString;
|
1846
|
+
mailServerId: z.ZodString;
|
1847
|
+
mailServer: z.ZodObject<{
|
1848
|
+
id: z.ZodString;
|
1849
|
+
createdAt: z.ZodDate;
|
1850
|
+
updatedAt: z.ZodDate;
|
1851
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
1852
|
+
name: z.ZodString;
|
1853
|
+
smtpHost: z.ZodString;
|
1854
|
+
smtpPort: z.ZodNumber;
|
1855
|
+
smtpTlsPort: z.ZodNumber;
|
1856
|
+
useTlsForSmtp: z.ZodBoolean;
|
1857
|
+
imapHost: z.ZodString;
|
1858
|
+
imapPort: z.ZodNumber;
|
1859
|
+
imapTlsPort: z.ZodNumber;
|
1860
|
+
useTlsForImap: z.ZodBoolean;
|
1861
|
+
}, "strip", z.ZodTypeAny, {
|
1862
|
+
id: string;
|
1863
|
+
name: string;
|
1864
|
+
createdAt: Date;
|
1865
|
+
updatedAt: Date;
|
1866
|
+
deletedAt: Date | null;
|
1867
|
+
smtpHost: string;
|
1868
|
+
smtpPort: number;
|
1869
|
+
smtpTlsPort: number;
|
1870
|
+
useTlsForSmtp: boolean;
|
1871
|
+
imapHost: string;
|
1872
|
+
imapPort: number;
|
1873
|
+
imapTlsPort: number;
|
1874
|
+
useTlsForImap: boolean;
|
1875
|
+
}, {
|
1876
|
+
id: string;
|
1877
|
+
name: string;
|
1878
|
+
createdAt: Date;
|
1879
|
+
updatedAt: Date;
|
1880
|
+
deletedAt: Date | null;
|
1881
|
+
smtpHost: string;
|
1882
|
+
smtpPort: number;
|
1883
|
+
smtpTlsPort: number;
|
1884
|
+
useTlsForSmtp: boolean;
|
1885
|
+
imapHost: string;
|
1886
|
+
imapPort: number;
|
1887
|
+
imapTlsPort: number;
|
1888
|
+
useTlsForImap: boolean;
|
1889
|
+
}>;
|
1890
|
+
state: z.ZodUnion<[z.ZodLiteral<"init">, z.ZodLiteral<"syncing">, z.ZodLiteral<"connecting">, z.ZodLiteral<"connected">, z.ZodLiteral<"disconnected">, z.ZodLiteral<"authenticationError">, z.ZodLiteral<"connectError">, z.ZodLiteral<"unset">]>;
|
1891
|
+
}, "strip", z.ZodTypeAny, {
|
1892
|
+
id: string;
|
1893
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
1894
|
+
address: string;
|
1895
|
+
name: string;
|
1896
|
+
createdAt: Date;
|
1897
|
+
updatedAt: Date;
|
1898
|
+
deletedAt: Date | null;
|
1899
|
+
accountId: string;
|
1900
|
+
mailServerId: string;
|
1901
|
+
mailServer: {
|
1902
|
+
id: string;
|
1903
|
+
name: string;
|
1904
|
+
createdAt: Date;
|
1905
|
+
updatedAt: Date;
|
1906
|
+
deletedAt: Date | null;
|
1907
|
+
smtpHost: string;
|
1908
|
+
smtpPort: number;
|
1909
|
+
smtpTlsPort: number;
|
1910
|
+
useTlsForSmtp: boolean;
|
1911
|
+
imapHost: string;
|
1912
|
+
imapPort: number;
|
1913
|
+
imapTlsPort: number;
|
1914
|
+
useTlsForImap: boolean;
|
1915
|
+
};
|
1916
|
+
}, {
|
1917
|
+
id: string;
|
1918
|
+
state: "connected" | "connecting" | "disconnected" | "init" | "syncing" | "authenticationError" | "connectError" | "unset";
|
1919
|
+
address: string;
|
1920
|
+
name: string;
|
1921
|
+
createdAt: Date;
|
1922
|
+
updatedAt: Date;
|
1923
|
+
deletedAt: Date | null;
|
1924
|
+
accountId: string;
|
1925
|
+
mailServerId: string;
|
1926
|
+
mailServer: {
|
1927
|
+
id: string;
|
1928
|
+
name: string;
|
1929
|
+
createdAt: Date;
|
1930
|
+
updatedAt: Date;
|
1931
|
+
deletedAt: Date | null;
|
1932
|
+
smtpHost: string;
|
1933
|
+
smtpPort: number;
|
1934
|
+
smtpTlsPort: number;
|
1935
|
+
useTlsForSmtp: boolean;
|
1936
|
+
imapHost: string;
|
1937
|
+
imapPort: number;
|
1938
|
+
imapTlsPort: number;
|
1939
|
+
useTlsForImap: boolean;
|
1940
|
+
};
|
1941
|
+
}>;
|
1942
|
+
};
|
1943
|
+
path: "email-service/mail/account/oauth2";
|
1597
1944
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1598
1945
|
'x-tenant': z.ZodString;
|
1599
1946
|
authorization: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"account-contract.d.ts","sourceRoot":"","sources":["../../../../src/mail/account-contract.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,eAAO,MAAM,eAAe
|
1
|
+
{"version":3,"file":"account-contract.d.ts","sourceRoot":"","sources":["../../../../src/mail/account-contract.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6M3B,CAAC"}
|