@bulletxyz/bullet-sdk 0.40.0 → 0.41.0-rc.1
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/browser/index.js +31 -6
- package/dist/browser/index.js.map +5 -5
- package/dist/node/index.js +31 -6
- package/dist/node/index.js.map +5 -5
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/client.d.ts +2 -0
- package/dist/types/client.d.ts.map +1 -1
- package/dist/types/rollupTypes.d.ts +8 -2
- package/dist/types/rollupTypes.d.ts.map +1 -1
- package/dist/types/zod-types/rest.d.ts +19 -12
- package/dist/types/zod-types/rest.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -67,13 +67,14 @@ declare const BorrowLendPool: z.ZodObject<{
|
|
|
67
67
|
is_active: z.ZodBoolean;
|
|
68
68
|
last_update_timestamp: z.ZodPipe<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBigInt]>, z.ZodTransform<bigint, string | number | bigint>>, z.ZodBigInt>;
|
|
69
69
|
rate_config: z.ZodObject<{
|
|
70
|
-
|
|
70
|
+
optimal_utilization_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
71
71
|
min_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
72
72
|
optimal_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
73
73
|
max_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
74
74
|
}, z.core.$strip>;
|
|
75
75
|
deposit_limit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
76
76
|
borrow_limit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
77
|
+
max_utilization_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
77
78
|
available_amount: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
78
79
|
borrowed_amount: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
79
80
|
cumulative_deposit_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
@@ -223,13 +224,14 @@ export declare const Schemas: {
|
|
|
223
224
|
is_active: z.ZodBoolean;
|
|
224
225
|
last_update_timestamp: z.ZodPipe<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBigInt]>, z.ZodTransform<bigint, string | number | bigint>>, z.ZodBigInt>;
|
|
225
226
|
rate_config: z.ZodObject<{
|
|
226
|
-
|
|
227
|
+
optimal_utilization_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
227
228
|
min_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
228
229
|
optimal_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
229
230
|
max_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
230
231
|
}, z.core.$strip>;
|
|
231
232
|
deposit_limit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
232
233
|
borrow_limit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
234
|
+
max_utilization_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
233
235
|
available_amount: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
234
236
|
borrowed_amount: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
235
237
|
cumulative_deposit_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
@@ -242,13 +244,14 @@ export declare const Schemas: {
|
|
|
242
244
|
is_active: boolean;
|
|
243
245
|
last_update_timestamp: bigint;
|
|
244
246
|
rate_config: {
|
|
245
|
-
|
|
247
|
+
optimal_utilization_rate: import("decimal.js").Decimal;
|
|
246
248
|
min_borrow_rate: import("decimal.js").Decimal;
|
|
247
249
|
optimal_borrow_rate: import("decimal.js").Decimal;
|
|
248
250
|
max_borrow_rate: import("decimal.js").Decimal;
|
|
249
251
|
};
|
|
250
252
|
deposit_limit: import("decimal.js").Decimal;
|
|
251
253
|
borrow_limit: import("decimal.js").Decimal;
|
|
254
|
+
max_utilization_rate: import("decimal.js").Decimal;
|
|
252
255
|
available_amount: import("decimal.js").Decimal;
|
|
253
256
|
borrowed_amount: import("decimal.js").Decimal;
|
|
254
257
|
cumulative_deposit_rate: import("decimal.js").Decimal;
|
|
@@ -261,13 +264,14 @@ export declare const Schemas: {
|
|
|
261
264
|
is_active: boolean;
|
|
262
265
|
last_update_timestamp: bigint;
|
|
263
266
|
rate_config: {
|
|
264
|
-
|
|
267
|
+
optimal_utilization_rate: import("decimal.js").Decimal;
|
|
265
268
|
min_borrow_rate: import("decimal.js").Decimal;
|
|
266
269
|
optimal_borrow_rate: import("decimal.js").Decimal;
|
|
267
270
|
max_borrow_rate: import("decimal.js").Decimal;
|
|
268
271
|
};
|
|
269
272
|
deposit_limit: import("decimal.js").Decimal;
|
|
270
273
|
borrow_limit: import("decimal.js").Decimal;
|
|
274
|
+
max_utilization_rate: import("decimal.js").Decimal;
|
|
271
275
|
available_amount: import("decimal.js").Decimal;
|
|
272
276
|
borrowed_amount: import("decimal.js").Decimal;
|
|
273
277
|
cumulative_deposit_rate: import("decimal.js").Decimal;
|
|
@@ -301,7 +305,7 @@ export declare const Schemas: {
|
|
|
301
305
|
}, z.core.$strip>;
|
|
302
306
|
unrealized_loss_borrow: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
303
307
|
unsettled_perp_profit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
304
|
-
trading_credits: z.
|
|
308
|
+
trading_credits: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
305
309
|
}, z.core.$strip>;
|
|
306
310
|
client_order_ids: z.ZodPipe<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBigInt]>, z.ZodTransform<bigint, string | number | bigint>>, z.ZodBigInt>>, z.ZodTransform<Map<bigint, bigint>, Record<string, bigint>>>;
|
|
307
311
|
balances: z.ZodPipe<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1209,13 +1213,14 @@ export declare const ResponseSchemas: {
|
|
|
1209
1213
|
is_active: z.ZodBoolean;
|
|
1210
1214
|
last_update_timestamp: z.ZodPipe<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBigInt]>, z.ZodTransform<bigint, string | number | bigint>>, z.ZodBigInt>;
|
|
1211
1215
|
rate_config: z.ZodObject<{
|
|
1212
|
-
|
|
1216
|
+
optimal_utilization_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1213
1217
|
min_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1214
1218
|
optimal_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1215
1219
|
max_borrow_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1216
1220
|
}, z.core.$strip>;
|
|
1217
1221
|
deposit_limit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1218
1222
|
borrow_limit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1223
|
+
max_utilization_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1219
1224
|
available_amount: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1220
1225
|
borrowed_amount: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1221
1226
|
cumulative_deposit_rate: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
@@ -1228,13 +1233,14 @@ export declare const ResponseSchemas: {
|
|
|
1228
1233
|
is_active: boolean;
|
|
1229
1234
|
last_update_timestamp: bigint;
|
|
1230
1235
|
rate_config: {
|
|
1231
|
-
|
|
1236
|
+
optimal_utilization_rate: import("decimal.js").Decimal;
|
|
1232
1237
|
min_borrow_rate: import("decimal.js").Decimal;
|
|
1233
1238
|
optimal_borrow_rate: import("decimal.js").Decimal;
|
|
1234
1239
|
max_borrow_rate: import("decimal.js").Decimal;
|
|
1235
1240
|
};
|
|
1236
1241
|
deposit_limit: import("decimal.js").Decimal;
|
|
1237
1242
|
borrow_limit: import("decimal.js").Decimal;
|
|
1243
|
+
max_utilization_rate: import("decimal.js").Decimal;
|
|
1238
1244
|
available_amount: import("decimal.js").Decimal;
|
|
1239
1245
|
borrowed_amount: import("decimal.js").Decimal;
|
|
1240
1246
|
cumulative_deposit_rate: import("decimal.js").Decimal;
|
|
@@ -1247,13 +1253,14 @@ export declare const ResponseSchemas: {
|
|
|
1247
1253
|
is_active: boolean;
|
|
1248
1254
|
last_update_timestamp: bigint;
|
|
1249
1255
|
rate_config: {
|
|
1250
|
-
|
|
1256
|
+
optimal_utilization_rate: import("decimal.js").Decimal;
|
|
1251
1257
|
min_borrow_rate: import("decimal.js").Decimal;
|
|
1252
1258
|
optimal_borrow_rate: import("decimal.js").Decimal;
|
|
1253
1259
|
max_borrow_rate: import("decimal.js").Decimal;
|
|
1254
1260
|
};
|
|
1255
1261
|
deposit_limit: import("decimal.js").Decimal;
|
|
1256
1262
|
borrow_limit: import("decimal.js").Decimal;
|
|
1263
|
+
max_utilization_rate: import("decimal.js").Decimal;
|
|
1257
1264
|
available_amount: import("decimal.js").Decimal;
|
|
1258
1265
|
borrowed_amount: import("decimal.js").Decimal;
|
|
1259
1266
|
cumulative_deposit_rate: import("decimal.js").Decimal;
|
|
@@ -1467,7 +1474,7 @@ export declare const ResponseSchemas: {
|
|
|
1467
1474
|
}, z.core.$strip>;
|
|
1468
1475
|
unrealized_loss_borrow: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1469
1476
|
unsettled_perp_profit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1470
|
-
trading_credits: z.
|
|
1477
|
+
trading_credits: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1471
1478
|
}, z.core.$strip>;
|
|
1472
1479
|
client_order_ids: z.ZodPipe<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBigInt]>, z.ZodTransform<bigint, string | number | bigint>>, z.ZodBigInt>>, z.ZodTransform<Map<bigint, bigint>, Record<string, bigint>>>;
|
|
1473
1480
|
balances: z.ZodPipe<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1921,7 +1928,7 @@ export declare const ResponseSchemas: {
|
|
|
1921
1928
|
}, z.core.$strip>;
|
|
1922
1929
|
unrealized_loss_borrow: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1923
1930
|
unsettled_perp_profit: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1924
|
-
trading_credits: z.
|
|
1931
|
+
trading_credits: z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>, z.ZodTransform<import("decimal.js").Decimal, string | number>>;
|
|
1925
1932
|
}, z.core.$strip>;
|
|
1926
1933
|
client_order_ids: z.ZodPipe<z.ZodRecord<z.ZodString, z.ZodPipe<z.ZodPipe<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBigInt]>, z.ZodTransform<bigint, string | number | bigint>>, z.ZodBigInt>>, z.ZodTransform<Map<bigint, bigint>, Record<string, bigint>>>;
|
|
1927
1934
|
balances: z.ZodPipe<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -2372,7 +2379,7 @@ export declare const ResponseSchemas: {
|
|
|
2372
2379
|
};
|
|
2373
2380
|
unrealized_loss_borrow: import("decimal.js").Decimal;
|
|
2374
2381
|
unsettled_perp_profit: import("decimal.js").Decimal;
|
|
2375
|
-
trading_credits
|
|
2382
|
+
trading_credits: import("decimal.js").Decimal;
|
|
2376
2383
|
};
|
|
2377
2384
|
client_order_ids: Map<bigint, bigint>;
|
|
2378
2385
|
balances: Map<number, {
|
|
@@ -2485,7 +2492,7 @@ export declare const ResponseSchemas: {
|
|
|
2485
2492
|
};
|
|
2486
2493
|
unrealized_loss_borrow: import("decimal.js").Decimal;
|
|
2487
2494
|
unsettled_perp_profit: import("decimal.js").Decimal;
|
|
2488
|
-
trading_credits
|
|
2495
|
+
trading_credits: import("decimal.js").Decimal;
|
|
2489
2496
|
};
|
|
2490
2497
|
client_order_ids: Map<bigint, bigint>;
|
|
2491
2498
|
balances: Map<number, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rest.d.ts","sourceRoot":"","sources":["../../../src/zod-types/rest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoDxB,eAAO,MAAM,oBAAoB;4BAChB,CAAC,SAAS,CAAC,CAAC,UAAU,eAAe,CAAC;;;0BAGxC,CAAC,SAAS,CAAC,CAAC,UAAU,eAAe,CAAC;;;gCAGhC,CAAC,SAAS,CAAC,CAAC,UAAU,eAAe,CAAC;+BAGvC,CAAC,SAAS,CAAC,CAAC,UAAU,EAAE,CAAC,SAAS,CAAC,CAAC,UAAU,aACnD,CAAC,eACC,CAAC;;;;+BASE,CAAC,SAAS,CAAC,CAAC,UAAU,eAAe,CAAC;;;;CAOhD,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;CAmBtB,CAAC;AAGX,QAAA,MAAM,YAAY,0QAA0C,CAAC;AA+F7D,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAAkC,CAAC;AAgM9C,QAAA,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"rest.d.ts","sourceRoot":"","sources":["../../../src/zod-types/rest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoDxB,eAAO,MAAM,oBAAoB;4BAChB,CAAC,SAAS,CAAC,CAAC,UAAU,eAAe,CAAC;;;0BAGxC,CAAC,SAAS,CAAC,CAAC,UAAU,eAAe,CAAC;;;gCAGhC,CAAC,SAAS,CAAC,CAAC,UAAU,eAAe,CAAC;+BAGvC,CAAC,SAAS,CAAC,CAAC,UAAU,EAAE,CAAC,SAAS,CAAC,CAAC,UAAU,aACnD,CAAC,eACC,CAAC;;;;+BASE,CAAC,SAAS,CAAC,CAAC,UAAU,eAAe,CAAC;;;;CAOhD,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;CAmBtB,CAAC;AAGX,QAAA,MAAM,YAAY,0QAA0C,CAAC;AA+F7D,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAAkC,CAAC;AAgM9C,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;iBAelB,CAAC;AA6BH,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyFV,CAAC;AAGX,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgElB,CAAC;AAGX,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,UAAU,CAAC,CAAC;AAC5D,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,KAAK,CAAC,CAAC;AAC1C,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,WAAW,CAAC,CAAC;AAC9D,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AACxD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,WAAW,CAAC,CAAC;AAC9D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,cAAc,CAAC,CAAC;AACpE,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,UAAU,CAAC,CAAC;AAC5D,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,UAAU,CAAC,CAAC;AAC5D,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,YAAY,CAAC,CAAC;AAChE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,gBAAgB,CAAC,CAAC;AACxE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,YAAY,CAAC,CAAC;AAChE,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,UAAU,CAAC,CAAC;AAC5D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC"}
|