@aztec/aztec.js 0.0.1-commit.f295ac2 → 0.0.1-commit.f2ce05ee
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/dest/account/account.d.ts +25 -40
- package/dest/account/account.d.ts.map +1 -1
- package/dest/account/account.js +19 -47
- package/dest/account/account_contract.d.ts +7 -8
- package/dest/account/account_contract.d.ts.map +1 -1
- package/dest/account/account_with_secret_key.d.ts +18 -7
- package/dest/account/account_with_secret_key.d.ts.map +1 -1
- package/dest/account/account_with_secret_key.js +21 -4
- package/dest/account/index.d.ts +3 -2
- package/dest/account/index.d.ts.map +1 -1
- package/dest/account/index.js +2 -0
- package/dest/account/signerless_account.d.ts +5 -6
- package/dest/account/signerless_account.d.ts.map +1 -1
- package/dest/account/signerless_account.js +8 -11
- package/dest/api/account.d.ts +2 -4
- package/dest/api/account.d.ts.map +1 -1
- package/dest/api/account.js +1 -3
- package/dest/api/authorization.d.ts +2 -2
- package/dest/api/authorization.d.ts.map +1 -1
- package/dest/api/authorization.js +1 -1
- package/dest/api/block.d.ts +2 -2
- package/dest/api/block.d.ts.map +1 -1
- package/dest/api/block.js +1 -1
- package/dest/api/contract.d.ts +16 -10
- package/dest/api/contract.d.ts.map +1 -1
- package/dest/api/contract.js +14 -8
- package/dest/api/events.d.ts +10 -6
- package/dest/api/events.d.ts.map +1 -1
- package/dest/api/events.js +30 -20
- package/dest/api/fields.d.ts +2 -1
- package/dest/api/fields.d.ts.map +1 -1
- package/dest/api/fields.js +1 -0
- package/dest/api/keys.d.ts +1 -1
- package/dest/api/keys.js +1 -1
- package/dest/api/node.d.ts +8 -4
- package/dest/api/node.d.ts.map +1 -1
- package/dest/api/node.js +7 -3
- package/dest/api/tx.d.ts +2 -2
- package/dest/api/tx.d.ts.map +1 -1
- package/dest/api/tx.js +1 -1
- package/dest/api/wallet.d.ts +3 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +2 -1
- package/dest/contract/base_contract_interaction.d.ts +8 -10
- package/dest/contract/base_contract_interaction.d.ts.map +1 -1
- package/dest/contract/base_contract_interaction.js +5 -17
- package/dest/contract/contract_function_interaction.d.ts +3 -12
- package/dest/contract/contract_function_interaction.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.js +6 -6
- package/dest/contract/deploy_method.d.ts +63 -16
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +36 -19
- package/dest/contract/interaction_options.d.ts +42 -5
- package/dest/contract/interaction_options.d.ts.map +1 -1
- package/dest/contract/interaction_options.js +8 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts +1 -10
- package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.js +97 -467
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-class-registry.js +10 -422
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-instance-registry.js +80 -482
- package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -10
- package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/fee-juice.js +14 -412
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +3 -3
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.js +23 -14
- package/dest/contract/protocol_contracts/public-checks.d.ts +3 -3
- package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/public-checks.js +23 -22
- package/dest/contract/wait_for_proven.js +1 -1
- package/dest/contract/wait_opts.d.ts +16 -0
- package/dest/contract/wait_opts.d.ts.map +1 -0
- package/dest/contract/wait_opts.js +5 -0
- package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
- package/dest/fee/private_fee_payment_method.js +10 -10
- package/dest/fee/public_fee_payment_method.js +10 -10
- package/dest/fee/sponsored_fee_payment.js +3 -3
- package/dest/utils/authwit.d.ts +8 -6
- package/dest/utils/authwit.d.ts.map +1 -1
- package/dest/utils/authwit.js +5 -9
- package/dest/utils/node.d.ts +12 -1
- package/dest/utils/node.d.ts.map +1 -1
- package/dest/utils/node.js +46 -0
- package/dest/wallet/account_entrypoint_meta_payment_method.d.ts +5 -8
- package/dest/wallet/account_entrypoint_meta_payment_method.d.ts.map +1 -1
- package/dest/wallet/account_entrypoint_meta_payment_method.js +28 -43
- package/dest/wallet/account_manager.d.ts +1 -7
- package/dest/wallet/account_manager.d.ts.map +1 -1
- package/dest/wallet/account_manager.js +5 -11
- package/dest/wallet/capabilities.d.ts +444 -0
- package/dest/wallet/capabilities.d.ts.map +1 -0
- package/dest/wallet/capabilities.js +3 -0
- package/dest/wallet/deploy_account_method.d.ts +34 -6
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.js +7 -5
- package/dest/wallet/index.d.ts +2 -1
- package/dest/wallet/index.d.ts.map +1 -1
- package/dest/wallet/index.js +1 -0
- package/dest/wallet/wallet.d.ts +1493 -94
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +158 -26
- package/package.json +19 -10
- package/src/account/account.ts +34 -58
- package/src/account/account_contract.ts +6 -7
- package/src/account/account_with_secret_key.ts +33 -8
- package/src/account/index.ts +2 -1
- package/src/account/signerless_account.ts +13 -12
- package/src/api/account.ts +9 -3
- package/src/api/authorization.ts +1 -0
- package/src/api/block.ts +1 -1
- package/src/api/contract.ts +22 -7
- package/src/api/events.ts +35 -27
- package/src/api/fields.ts +1 -0
- package/src/api/keys.ts +2 -2
- package/src/api/node.ts +7 -3
- package/src/api/tx.ts +2 -0
- package/src/api/wallet.ts +47 -1
- package/src/contract/base_contract_interaction.ts +27 -15
- package/src/contract/contract_function_interaction.ts +13 -6
- package/src/contract/deploy_method.ts +115 -23
- package/src/contract/interaction_options.ts +49 -4
- package/src/contract/protocol_contracts/auth-registry.ts +45 -236
- package/src/contract/protocol_contracts/contract-class-registry.ts +3 -204
- package/src/contract/protocol_contracts/contract-instance-registry.ts +34 -233
- package/src/contract/protocol_contracts/fee-juice.ts +4 -202
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +6 -12
- package/src/contract/protocol_contracts/public-checks.ts +6 -14
- package/src/contract/wait_for_proven.ts +1 -1
- package/src/contract/wait_opts.ts +21 -0
- package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
- package/src/fee/private_fee_payment_method.ts +7 -7
- package/src/fee/public_fee_payment_method.ts +8 -8
- package/src/fee/sponsored_fee_payment.ts +3 -3
- package/src/utils/authwit.ts +19 -7
- package/src/utils/node.ts +62 -0
- package/src/wallet/account_entrypoint_meta_payment_method.ts +28 -60
- package/src/wallet/account_manager.ts +5 -13
- package/src/wallet/capabilities.ts +491 -0
- package/src/wallet/deploy_account_method.ts +37 -13
- package/src/wallet/index.ts +1 -0
- package/src/wallet/wallet.ts +214 -48
- package/dest/account/interface.d.ts +0 -19
- package/dest/account/interface.d.ts.map +0 -1
- package/dest/account/interface.js +0 -5
- package/dest/contract/deploy_sent_tx.d.ts +0 -48
- package/dest/contract/deploy_sent_tx.d.ts.map +0 -1
- package/dest/contract/deploy_sent_tx.js +0 -46
- package/dest/contract/sent_tx.d.ts +0 -50
- package/dest/contract/sent_tx.d.ts.map +0 -1
- package/dest/contract/sent_tx.js +0 -90
- package/src/account/interface.ts +0 -25
- package/src/contract/deploy_sent_tx.ts +0 -75
- package/src/contract/sent_tx.ts +0 -129
|
@@ -62,11 +62,6 @@ const FeeJuiceContractArtifact = {
|
|
|
62
62
|
error_kind: 'string',
|
|
63
63
|
string: 'attempt to subtract with overflow'
|
|
64
64
|
},
|
|
65
|
-
'2754040237334517471': {
|
|
66
|
-
error_kind: 'fmtstring',
|
|
67
|
-
length: 92,
|
|
68
|
-
item_types: []
|
|
69
|
-
},
|
|
70
65
|
'6609888949476313245': {
|
|
71
66
|
error_kind: 'string',
|
|
72
67
|
string: 'Message not in state'
|
|
@@ -193,101 +188,16 @@ const FeeJuiceContractArtifact = {
|
|
|
193
188
|
},
|
|
194
189
|
{
|
|
195
190
|
...{
|
|
196
|
-
functionType: FunctionType.
|
|
197
|
-
name: '
|
|
191
|
+
functionType: FunctionType.PUBLIC,
|
|
192
|
+
name: 'public_dispatch',
|
|
198
193
|
isOnlySelf: false,
|
|
199
194
|
isStatic: false,
|
|
200
195
|
isInitializer: false,
|
|
201
196
|
parameters: [
|
|
202
197
|
{
|
|
203
|
-
name: '
|
|
204
|
-
type: {
|
|
205
|
-
kind: 'struct',
|
|
206
|
-
fields: [
|
|
207
|
-
{
|
|
208
|
-
name: 'storage',
|
|
209
|
-
type: {
|
|
210
|
-
kind: 'array',
|
|
211
|
-
length: 17,
|
|
212
|
-
type: {
|
|
213
|
-
kind: 'field'
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
name: 'len',
|
|
219
|
-
type: {
|
|
220
|
-
kind: 'integer',
|
|
221
|
-
sign: 'unsigned',
|
|
222
|
-
width: 32
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
],
|
|
226
|
-
path: 'std::collections::bounded_vec::BoundedVec'
|
|
227
|
-
},
|
|
228
|
-
visibility: 'private'
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
name: 'message_context',
|
|
198
|
+
name: 'selector',
|
|
232
199
|
type: {
|
|
233
|
-
kind: '
|
|
234
|
-
fields: [
|
|
235
|
-
{
|
|
236
|
-
name: 'tx_hash',
|
|
237
|
-
type: {
|
|
238
|
-
kind: 'field'
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
name: 'unique_note_hashes_in_tx',
|
|
243
|
-
type: {
|
|
244
|
-
kind: 'struct',
|
|
245
|
-
fields: [
|
|
246
|
-
{
|
|
247
|
-
name: 'storage',
|
|
248
|
-
type: {
|
|
249
|
-
kind: 'array',
|
|
250
|
-
length: 64,
|
|
251
|
-
type: {
|
|
252
|
-
kind: 'field'
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
name: 'len',
|
|
258
|
-
type: {
|
|
259
|
-
kind: 'integer',
|
|
260
|
-
sign: 'unsigned',
|
|
261
|
-
width: 32
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
],
|
|
265
|
-
path: 'std::collections::bounded_vec::BoundedVec'
|
|
266
|
-
}
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
name: 'first_nullifier_in_tx',
|
|
270
|
-
type: {
|
|
271
|
-
kind: 'field'
|
|
272
|
-
}
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
name: 'recipient',
|
|
276
|
-
type: {
|
|
277
|
-
kind: 'struct',
|
|
278
|
-
fields: [
|
|
279
|
-
{
|
|
280
|
-
name: 'inner',
|
|
281
|
-
type: {
|
|
282
|
-
kind: 'field'
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
],
|
|
286
|
-
path: 'aztec::protocol_types::address::aztec_address::AztecAddress'
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
],
|
|
290
|
-
path: 'aztec::messages::processing::message_context::MessageContext'
|
|
200
|
+
kind: 'field'
|
|
291
201
|
},
|
|
292
202
|
visibility: 'private'
|
|
293
203
|
}
|
|
@@ -298,172 +208,14 @@ const FeeJuiceContractArtifact = {
|
|
|
298
208
|
error_kind: 'string',
|
|
299
209
|
string: 'attempt to multiply with overflow'
|
|
300
210
|
},
|
|
301
|
-
'
|
|
211
|
+
'1080336462466469436': {
|
|
302
212
|
error_kind: 'string',
|
|
303
|
-
string: '
|
|
213
|
+
string: 'Function check_balance can only be called statically'
|
|
304
214
|
},
|
|
305
215
|
'1998584279744703196': {
|
|
306
216
|
error_kind: 'string',
|
|
307
217
|
string: 'attempt to subtract with overflow'
|
|
308
218
|
},
|
|
309
|
-
'2967937905572420042': {
|
|
310
|
-
error_kind: 'fmtstring',
|
|
311
|
-
length: 61,
|
|
312
|
-
item_types: [
|
|
313
|
-
{
|
|
314
|
-
kind: 'field'
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
kind: 'field'
|
|
318
|
-
}
|
|
319
|
-
]
|
|
320
|
-
},
|
|
321
|
-
'3330370348214585450': {
|
|
322
|
-
error_kind: 'fmtstring',
|
|
323
|
-
length: 48,
|
|
324
|
-
item_types: [
|
|
325
|
-
{
|
|
326
|
-
kind: 'field'
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
kind: 'field'
|
|
330
|
-
}
|
|
331
|
-
]
|
|
332
|
-
},
|
|
333
|
-
'3670003311596808700': {
|
|
334
|
-
error_kind: 'fmtstring',
|
|
335
|
-
length: 77,
|
|
336
|
-
item_types: [
|
|
337
|
-
{
|
|
338
|
-
kind: 'integer',
|
|
339
|
-
sign: 'unsigned',
|
|
340
|
-
width: 32
|
|
341
|
-
}
|
|
342
|
-
]
|
|
343
|
-
},
|
|
344
|
-
'4261968856572588300': {
|
|
345
|
-
error_kind: 'string',
|
|
346
|
-
string: 'Value does not fit in field'
|
|
347
|
-
},
|
|
348
|
-
'4440399188109668273': {
|
|
349
|
-
error_kind: 'string',
|
|
350
|
-
string: 'Input length must be a multiple of 32'
|
|
351
|
-
},
|
|
352
|
-
'9791669845391776238': {
|
|
353
|
-
error_kind: 'string',
|
|
354
|
-
string: '0 has a square root; you cannot claim it is not square'
|
|
355
|
-
},
|
|
356
|
-
'9885968605480832328': {
|
|
357
|
-
error_kind: 'string',
|
|
358
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
359
|
-
},
|
|
360
|
-
'10135509984888824963': {
|
|
361
|
-
error_kind: 'fmtstring',
|
|
362
|
-
length: 58,
|
|
363
|
-
item_types: [
|
|
364
|
-
{
|
|
365
|
-
kind: 'field'
|
|
366
|
-
}
|
|
367
|
-
]
|
|
368
|
-
},
|
|
369
|
-
'10791800398362570014': {
|
|
370
|
-
error_kind: 'string',
|
|
371
|
-
string: 'extend_from_bounded_vec out of bounds'
|
|
372
|
-
},
|
|
373
|
-
'11021520179822076911': {
|
|
374
|
-
error_kind: 'string',
|
|
375
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
376
|
-
},
|
|
377
|
-
'11692359521570349358': {
|
|
378
|
-
error_kind: 'fmtstring',
|
|
379
|
-
length: 40,
|
|
380
|
-
item_types: []
|
|
381
|
-
},
|
|
382
|
-
'12327971061804302172': {
|
|
383
|
-
error_kind: 'fmtstring',
|
|
384
|
-
length: 98,
|
|
385
|
-
item_types: []
|
|
386
|
-
},
|
|
387
|
-
'12469291177396340830': {
|
|
388
|
-
error_kind: 'string',
|
|
389
|
-
string: 'call to assert_max_bit_size'
|
|
390
|
-
},
|
|
391
|
-
'12913276134398371456': {
|
|
392
|
-
error_kind: 'string',
|
|
393
|
-
string: 'push out of bounds'
|
|
394
|
-
},
|
|
395
|
-
'13557316507370296400': {
|
|
396
|
-
error_kind: 'fmtstring',
|
|
397
|
-
length: 130,
|
|
398
|
-
item_types: [
|
|
399
|
-
{
|
|
400
|
-
kind: 'integer',
|
|
401
|
-
sign: 'unsigned',
|
|
402
|
-
width: 32
|
|
403
|
-
}
|
|
404
|
-
]
|
|
405
|
-
},
|
|
406
|
-
'14938672389828944159': {
|
|
407
|
-
error_kind: 'fmtstring',
|
|
408
|
-
length: 146,
|
|
409
|
-
item_types: [
|
|
410
|
-
{
|
|
411
|
-
kind: 'integer',
|
|
412
|
-
sign: 'unsigned',
|
|
413
|
-
width: 32
|
|
414
|
-
}
|
|
415
|
-
]
|
|
416
|
-
},
|
|
417
|
-
'14990209321349310352': {
|
|
418
|
-
error_kind: 'string',
|
|
419
|
-
string: 'attempt to add with overflow'
|
|
420
|
-
},
|
|
421
|
-
'15764276373176857197': {
|
|
422
|
-
error_kind: 'string',
|
|
423
|
-
string: 'Stack too deep'
|
|
424
|
-
},
|
|
425
|
-
'16431471497789672479': {
|
|
426
|
-
error_kind: 'string',
|
|
427
|
-
string: 'Index out of bounds'
|
|
428
|
-
},
|
|
429
|
-
'17531474008201752295': {
|
|
430
|
-
error_kind: 'fmtstring',
|
|
431
|
-
length: 133,
|
|
432
|
-
item_types: [
|
|
433
|
-
{
|
|
434
|
-
kind: 'integer',
|
|
435
|
-
sign: 'unsigned',
|
|
436
|
-
width: 32
|
|
437
|
-
}
|
|
438
|
-
]
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
bytecode: Buffer.from([]),
|
|
443
|
-
debugSymbols: ''
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
...{
|
|
447
|
-
functionType: FunctionType.PUBLIC,
|
|
448
|
-
name: 'public_dispatch',
|
|
449
|
-
isOnlySelf: false,
|
|
450
|
-
isStatic: false,
|
|
451
|
-
isInitializer: false,
|
|
452
|
-
parameters: [
|
|
453
|
-
{
|
|
454
|
-
name: 'selector',
|
|
455
|
-
type: {
|
|
456
|
-
kind: 'field'
|
|
457
|
-
},
|
|
458
|
-
visibility: 'private'
|
|
459
|
-
}
|
|
460
|
-
],
|
|
461
|
-
returnTypes: [],
|
|
462
|
-
errorTypes: {
|
|
463
|
-
'1080336462466469436': {
|
|
464
|
-
error_kind: 'string',
|
|
465
|
-
string: 'Function check_balance can only be called statically'
|
|
466
|
-
},
|
|
467
219
|
'8637882143979902881': {
|
|
468
220
|
error_kind: 'string',
|
|
469
221
|
string: 'Function _increase_public_balance can only be called by the same contract'
|
|
@@ -505,164 +257,6 @@ const FeeJuiceContractArtifact = {
|
|
|
505
257
|
},
|
|
506
258
|
bytecode: Buffer.from([]),
|
|
507
259
|
debugSymbols: ''
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
...{
|
|
511
|
-
functionType: FunctionType.UTILITY,
|
|
512
|
-
name: 'sync_private_state',
|
|
513
|
-
isOnlySelf: false,
|
|
514
|
-
isStatic: false,
|
|
515
|
-
isInitializer: false,
|
|
516
|
-
parameters: [],
|
|
517
|
-
returnTypes: [],
|
|
518
|
-
errorTypes: {
|
|
519
|
-
'361444214588792908': {
|
|
520
|
-
error_kind: 'string',
|
|
521
|
-
string: 'attempt to multiply with overflow'
|
|
522
|
-
},
|
|
523
|
-
'992401946138144806': {
|
|
524
|
-
error_kind: 'string',
|
|
525
|
-
string: 'Attempted to read past end of BoundedVec'
|
|
526
|
-
},
|
|
527
|
-
'1998584279744703196': {
|
|
528
|
-
error_kind: 'string',
|
|
529
|
-
string: 'attempt to subtract with overflow'
|
|
530
|
-
},
|
|
531
|
-
'2967937905572420042': {
|
|
532
|
-
error_kind: 'fmtstring',
|
|
533
|
-
length: 61,
|
|
534
|
-
item_types: [
|
|
535
|
-
{
|
|
536
|
-
kind: 'field'
|
|
537
|
-
},
|
|
538
|
-
{
|
|
539
|
-
kind: 'field'
|
|
540
|
-
}
|
|
541
|
-
]
|
|
542
|
-
},
|
|
543
|
-
'3330370348214585450': {
|
|
544
|
-
error_kind: 'fmtstring',
|
|
545
|
-
length: 48,
|
|
546
|
-
item_types: [
|
|
547
|
-
{
|
|
548
|
-
kind: 'field'
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
kind: 'field'
|
|
552
|
-
}
|
|
553
|
-
]
|
|
554
|
-
},
|
|
555
|
-
'3670003311596808700': {
|
|
556
|
-
error_kind: 'fmtstring',
|
|
557
|
-
length: 77,
|
|
558
|
-
item_types: [
|
|
559
|
-
{
|
|
560
|
-
kind: 'integer',
|
|
561
|
-
sign: 'unsigned',
|
|
562
|
-
width: 32
|
|
563
|
-
}
|
|
564
|
-
]
|
|
565
|
-
},
|
|
566
|
-
'4261968856572588300': {
|
|
567
|
-
error_kind: 'string',
|
|
568
|
-
string: 'Value does not fit in field'
|
|
569
|
-
},
|
|
570
|
-
'4440399188109668273': {
|
|
571
|
-
error_kind: 'string',
|
|
572
|
-
string: 'Input length must be a multiple of 32'
|
|
573
|
-
},
|
|
574
|
-
'9791669845391776238': {
|
|
575
|
-
error_kind: 'string',
|
|
576
|
-
string: '0 has a square root; you cannot claim it is not square'
|
|
577
|
-
},
|
|
578
|
-
'9885968605480832328': {
|
|
579
|
-
error_kind: 'string',
|
|
580
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
581
|
-
},
|
|
582
|
-
'10135509984888824963': {
|
|
583
|
-
error_kind: 'fmtstring',
|
|
584
|
-
length: 58,
|
|
585
|
-
item_types: [
|
|
586
|
-
{
|
|
587
|
-
kind: 'field'
|
|
588
|
-
}
|
|
589
|
-
]
|
|
590
|
-
},
|
|
591
|
-
'10791800398362570014': {
|
|
592
|
-
error_kind: 'string',
|
|
593
|
-
string: 'extend_from_bounded_vec out of bounds'
|
|
594
|
-
},
|
|
595
|
-
'11021520179822076911': {
|
|
596
|
-
error_kind: 'string',
|
|
597
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
598
|
-
},
|
|
599
|
-
'11692359521570349358': {
|
|
600
|
-
error_kind: 'fmtstring',
|
|
601
|
-
length: 40,
|
|
602
|
-
item_types: []
|
|
603
|
-
},
|
|
604
|
-
'12327971061804302172': {
|
|
605
|
-
error_kind: 'fmtstring',
|
|
606
|
-
length: 98,
|
|
607
|
-
item_types: []
|
|
608
|
-
},
|
|
609
|
-
'12469291177396340830': {
|
|
610
|
-
error_kind: 'string',
|
|
611
|
-
string: 'call to assert_max_bit_size'
|
|
612
|
-
},
|
|
613
|
-
'12913276134398371456': {
|
|
614
|
-
error_kind: 'string',
|
|
615
|
-
string: 'push out of bounds'
|
|
616
|
-
},
|
|
617
|
-
'13557316507370296400': {
|
|
618
|
-
error_kind: 'fmtstring',
|
|
619
|
-
length: 130,
|
|
620
|
-
item_types: [
|
|
621
|
-
{
|
|
622
|
-
kind: 'integer',
|
|
623
|
-
sign: 'unsigned',
|
|
624
|
-
width: 32
|
|
625
|
-
}
|
|
626
|
-
]
|
|
627
|
-
},
|
|
628
|
-
'14938672389828944159': {
|
|
629
|
-
error_kind: 'fmtstring',
|
|
630
|
-
length: 146,
|
|
631
|
-
item_types: [
|
|
632
|
-
{
|
|
633
|
-
kind: 'integer',
|
|
634
|
-
sign: 'unsigned',
|
|
635
|
-
width: 32
|
|
636
|
-
}
|
|
637
|
-
]
|
|
638
|
-
},
|
|
639
|
-
'14990209321349310352': {
|
|
640
|
-
error_kind: 'string',
|
|
641
|
-
string: 'attempt to add with overflow'
|
|
642
|
-
},
|
|
643
|
-
'15764276373176857197': {
|
|
644
|
-
error_kind: 'string',
|
|
645
|
-
string: 'Stack too deep'
|
|
646
|
-
},
|
|
647
|
-
'16431471497789672479': {
|
|
648
|
-
error_kind: 'string',
|
|
649
|
-
string: 'Index out of bounds'
|
|
650
|
-
},
|
|
651
|
-
'17531474008201752295': {
|
|
652
|
-
error_kind: 'fmtstring',
|
|
653
|
-
length: 133,
|
|
654
|
-
item_types: [
|
|
655
|
-
{
|
|
656
|
-
kind: 'integer',
|
|
657
|
-
sign: 'unsigned',
|
|
658
|
-
width: 32
|
|
659
|
-
}
|
|
660
|
-
]
|
|
661
|
-
}
|
|
662
|
-
}
|
|
663
|
-
},
|
|
664
|
-
bytecode: Buffer.from([]),
|
|
665
|
-
debugSymbols: ''
|
|
666
260
|
}
|
|
667
261
|
],
|
|
668
262
|
nonDispatchPublicFunctions: [
|
|
@@ -701,6 +295,14 @@ const FeeJuiceContractArtifact = {
|
|
|
701
295
|
],
|
|
702
296
|
returnTypes: [],
|
|
703
297
|
errorTypes: {
|
|
298
|
+
'361444214588792908': {
|
|
299
|
+
error_kind: 'string',
|
|
300
|
+
string: 'attempt to multiply with overflow'
|
|
301
|
+
},
|
|
302
|
+
'1998584279744703196': {
|
|
303
|
+
error_kind: 'string',
|
|
304
|
+
string: 'attempt to subtract with overflow'
|
|
305
|
+
},
|
|
704
306
|
'8637882143979902881': {
|
|
705
307
|
error_kind: 'string',
|
|
706
308
|
string: 'Function _increase_public_balance can only be called by the same contract'
|
|
@@ -27,8 +27,8 @@ export declare class MultiCallEntrypointContract extends ContractBase {
|
|
|
27
27
|
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
28
28
|
/** public_dispatch(selector: field) */
|
|
29
29
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
30
|
-
/**
|
|
31
|
-
|
|
30
|
+
/** sync_state() */
|
|
31
|
+
sync_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGktY2FsbC1lbnRyeXBvaW50LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29udHJhY3QvcHJvdG9jb2xfY29udHJhY3RzL211bHRpLWNhbGwtZW50cnlwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFPQSxPQUFPLEtBQUssRUFDVixnQkFBZ0IsRUFFaEIsU0FBUyxFQUNULG9CQUFvQixFQUVyQixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxZQUFZLEVBQUUsS0FBSyxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN4RSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQWlSbEYscUJBQWEsMkJBQTRCLFNBQVEsWUFBWTtJQUMzRCxPQUFPLGVBRU47SUFFRCxPQUFjLEVBQUUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLDJCQUEyQixDQUU1RDtJQUVjLE9BQU8sRUFBRTtRQUN0QixzQ0FBc0M7UUFDdEMsVUFBVSxFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUU7WUFDekIsY0FBYyxFQUFFO2dCQUNkLFNBQVMsRUFBRSxTQUFTLENBQUM7Z0JBQ3JCLGlCQUFpQixFQUFFLG9CQUFvQixDQUFDO2dCQUN4QyxjQUFjLEVBQUUsZ0JBQWdCLENBQUM7Z0JBQ2pDLFNBQVMsRUFBRSxPQUFPLENBQUM7Z0JBQ25CLGVBQWUsRUFBRSxPQUFPLENBQUM7Z0JBQ3pCLFNBQVMsRUFBRSxPQUFPLENBQUM7YUFDcEIsRUFBRSxDQUFDO1lBQ0osUUFBUSxFQUFFLFNBQVMsQ0FBQztTQUNyQixLQUFLLDJCQUEyQixDQUFDLEdBQ2hDLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsMkVBQTJFO1FBQzNFLGVBQWUsRUFBRSxDQUFDLENBQ2hCLGtCQUFrQixFQUFFLFNBQVMsRUFBRSxFQUMvQixlQUFlLEVBQUU7WUFDZixPQUFPLEVBQUUsU0FBUyxDQUFDO1lBQ25CLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxDQUFDO1lBQ3RDLHFCQUFxQixFQUFFLFNBQVMsQ0FBQztZQUNqQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUM7U0FDN0IsS0FDRSwyQkFBMkIsQ0FBQyxHQUMvQixJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLHVDQUF1QztRQUN2QyxlQUFlLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxTQUFTLEtBQUssMkJBQTJCLENBQUMsR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTNHLG1CQUFtQjtRQUNuQixVQUFVLEVBQUUsQ0FBQyxNQUFNLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwRixDQUFDO0NBQ0gifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multi-call-entrypoint.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/multi-call-entrypoint.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EACT,oBAAoB,EAErB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"multi-call-entrypoint.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/multi-call-entrypoint.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EACT,oBAAoB,EAErB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAiRlF,qBAAa,2BAA4B,SAAQ,YAAY;IAC3D,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,2BAA2B,CAE5D;IAEc,OAAO,EAAE;QACtB,sCAAsC;QACtC,UAAU,EAAE,CAAC,CAAC,WAAW,EAAE;YACzB,cAAc,EAAE;gBACd,SAAS,EAAE,SAAS,CAAC;gBACrB,iBAAiB,EAAE,oBAAoB,CAAC;gBACxC,cAAc,EAAE,gBAAgB,CAAC;gBACjC,SAAS,EAAE,OAAO,CAAC;gBACnB,eAAe,EAAE,OAAO,CAAC;gBACzB,SAAS,EAAE,OAAO,CAAC;aACpB,EAAE,CAAC;YACJ,QAAQ,EAAE,SAAS,CAAC;SACrB,KAAK,2BAA2B,CAAC,GAChC,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,2EAA2E;QAC3E,eAAe,EAAE,CAAC,CAChB,kBAAkB,EAAE,SAAS,EAAE,EAC/B,eAAe,EAAE;YACf,OAAO,EAAE,SAAS,CAAC;YACnB,wBAAwB,EAAE,SAAS,EAAE,CAAC;YACtC,qBAAqB,EAAE,SAAS,CAAC;YACjC,SAAS,EAAE,gBAAgB,CAAC;SAC7B,KACE,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAE3G,mBAAmB;QACnB,UAAU,EAAE,CAAC,MAAM,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACpF,CAAC;CACH"}
|
|
@@ -279,14 +279,19 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
279
279
|
error_kind: 'string',
|
|
280
280
|
string: 'Input length must be a multiple of 32'
|
|
281
281
|
},
|
|
282
|
+
'5417577161503694006': {
|
|
283
|
+
error_kind: 'fmtstring',
|
|
284
|
+
length: 56,
|
|
285
|
+
item_types: [
|
|
286
|
+
{
|
|
287
|
+
kind: 'field'
|
|
288
|
+
}
|
|
289
|
+
]
|
|
290
|
+
},
|
|
282
291
|
'9791669845391776238': {
|
|
283
292
|
error_kind: 'string',
|
|
284
293
|
string: '0 has a square root; you cannot claim it is not square'
|
|
285
294
|
},
|
|
286
|
-
'9885968605480832328': {
|
|
287
|
-
error_kind: 'string',
|
|
288
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
289
|
-
},
|
|
290
295
|
'10135509984888824963': {
|
|
291
296
|
error_kind: 'fmtstring',
|
|
292
297
|
length: 58,
|
|
@@ -300,20 +305,11 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
300
305
|
error_kind: 'string',
|
|
301
306
|
string: 'extend_from_bounded_vec out of bounds'
|
|
302
307
|
},
|
|
303
|
-
'11021520179822076911': {
|
|
304
|
-
error_kind: 'string',
|
|
305
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
306
|
-
},
|
|
307
308
|
'11692359521570349358': {
|
|
308
309
|
error_kind: 'fmtstring',
|
|
309
310
|
length: 40,
|
|
310
311
|
item_types: []
|
|
311
312
|
},
|
|
312
|
-
'12327971061804302172': {
|
|
313
|
-
error_kind: 'fmtstring',
|
|
314
|
-
length: 98,
|
|
315
|
-
item_types: []
|
|
316
|
-
},
|
|
317
313
|
'12469291177396340830': {
|
|
318
314
|
error_kind: 'string',
|
|
319
315
|
string: 'call to assert_max_bit_size'
|
|
@@ -375,7 +371,7 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
375
371
|
{
|
|
376
372
|
...{
|
|
377
373
|
functionType: FunctionType.UTILITY,
|
|
378
|
-
name: '
|
|
374
|
+
name: 'sync_state',
|
|
379
375
|
isOnlySelf: false,
|
|
380
376
|
isStatic: false,
|
|
381
377
|
isInitializer: false,
|
|
@@ -437,6 +433,15 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
437
433
|
error_kind: 'string',
|
|
438
434
|
string: 'Input length must be a multiple of 32'
|
|
439
435
|
},
|
|
436
|
+
'5417577161503694006': {
|
|
437
|
+
error_kind: 'fmtstring',
|
|
438
|
+
length: 56,
|
|
439
|
+
item_types: [
|
|
440
|
+
{
|
|
441
|
+
kind: 'field'
|
|
442
|
+
}
|
|
443
|
+
]
|
|
444
|
+
},
|
|
440
445
|
'9791669845391776238': {
|
|
441
446
|
error_kind: 'string',
|
|
442
447
|
string: '0 has a square root; you cannot claim it is not square'
|
|
@@ -524,6 +529,10 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
524
529
|
width: 32
|
|
525
530
|
}
|
|
526
531
|
]
|
|
532
|
+
},
|
|
533
|
+
'17655676068928457687': {
|
|
534
|
+
error_kind: 'string',
|
|
535
|
+
string: 'Reader did not read all data'
|
|
527
536
|
}
|
|
528
537
|
}
|
|
529
538
|
},
|
|
@@ -19,8 +19,8 @@ export declare class PublicChecksContract extends ContractBase {
|
|
|
19
19
|
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
20
20
|
/** public_dispatch(selector: field) */
|
|
21
21
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
22
|
-
/**
|
|
23
|
-
|
|
22
|
+
/** sync_state() */
|
|
23
|
+
sync_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWNoZWNrcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2NvbnRyYWN0L3Byb3RvY29sX2NvbnRyYWN0cy9wdWJsaWMtY2hlY2tzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU9BLE9BQU8sS0FBSyxFQUNWLGdCQUFnQixFQUVoQixTQUFTLEVBR1YsTUFBTSwwQkFBMEIsQ0FBQztBQUNsQyxPQUFPLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsWUFBWSxFQUFFLEtBQUssY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDeEUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUF1UWxGLHFCQUFhLG9CQUFxQixTQUFRLFlBQVk7SUFDcEQsT0FBTyxlQUVOO0lBRUQsT0FBYyxFQUFFLENBQUMsTUFBTSxFQUFFLE1BQU0sR0FBRyxvQkFBb0IsQ0FFckQ7SUFFYyxPQUFPLEVBQUU7UUFDdEIsNkRBQTZEO1FBQzdELGtCQUFrQixFQUFFLENBQUMsQ0FBQyxTQUFTLEVBQUUsTUFBTSxHQUFHLE1BQU0sRUFBRSxLQUFLLEVBQUUsTUFBTSxHQUFHLE1BQU0sS0FBSywyQkFBMkIsQ0FBQyxHQUN2RyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLDBEQUEwRDtRQUMxRCxlQUFlLEVBQUUsQ0FBQyxDQUFDLFNBQVMsRUFBRSxNQUFNLEdBQUcsTUFBTSxFQUFFLEtBQUssRUFBRSxNQUFNLEdBQUcsTUFBTSxLQUFLLDJCQUEyQixDQUFDLEdBQ3BHLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsMkVBQTJFO1FBQzNFLGVBQWUsRUFBRSxDQUFDLENBQ2hCLGtCQUFrQixFQUFFLFNBQVMsRUFBRSxFQUMvQixlQUFlLEVBQUU7WUFDZixPQUFPLEVBQUUsU0FBUyxDQUFDO1lBQ25CLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxDQUFDO1lBQ3RDLHFCQUFxQixFQUFFLFNBQVMsQ0FBQztZQUNqQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUM7U0FDN0IsS0FDRSwyQkFBMkIsQ0FBQyxHQUMvQixJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLHVDQUF1QztRQUN2QyxlQUFlLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxTQUFTLEtBQUssMkJBQTJCLENBQUMsR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTNHLG1CQUFtQjtRQUNuQixVQUFVLEVBQUUsQ0FBQyxNQUFNLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwRixDQUFDO0NBQ0gifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-checks.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/public-checks.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EAGV,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"public-checks.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/public-checks.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EAGV,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAuQlF,qBAAa,oBAAqB,SAAQ,YAAY;IACpD,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,oBAAoB,CAErD;IAEc,OAAO,EAAE;QACtB,6DAA6D;QAC7D,kBAAkB,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,KAAK,2BAA2B,CAAC,GACvG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,0DAA0D;QAC1D,eAAe,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,KAAK,2BAA2B,CAAC,GACpG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,2EAA2E;QAC3E,eAAe,EAAE,CAAC,CAChB,kBAAkB,EAAE,SAAS,EAAE,EAC/B,eAAe,EAAE;YACf,OAAO,EAAE,SAAS,CAAC;YACnB,wBAAwB,EAAE,SAAS,EAAE,CAAC;YACtC,qBAAqB,EAAE,SAAS,CAAC;YACjC,SAAS,EAAE,gBAAgB,CAAC;SAC7B,KACE,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAE3G,mBAAmB;QACnB,UAAU,EAAE,CAAC,MAAM,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACpF,CAAC;CACH"}
|