@aztec/txe 0.0.1-commit.5daedc8 → 0.0.1-commit.6201a7b05

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.
Files changed (78) hide show
  1. package/dest/constants.d.ts +3 -0
  2. package/dest/constants.d.ts.map +1 -0
  3. package/dest/constants.js +2 -0
  4. package/dest/index.d.ts +1 -1
  5. package/dest/index.d.ts.map +1 -1
  6. package/dest/index.js +91 -56
  7. package/dest/oracle/interfaces.d.ts +36 -29
  8. package/dest/oracle/interfaces.d.ts.map +1 -1
  9. package/dest/oracle/txe_oracle_public_context.d.ts +16 -16
  10. package/dest/oracle/txe_oracle_public_context.d.ts.map +1 -1
  11. package/dest/oracle/txe_oracle_public_context.js +20 -22
  12. package/dest/oracle/txe_oracle_top_level_context.d.ts +44 -27
  13. package/dest/oracle/txe_oracle_top_level_context.d.ts.map +1 -1
  14. package/dest/oracle/txe_oracle_top_level_context.js +245 -109
  15. package/dest/rpc_translator.d.ts +136 -78
  16. package/dest/rpc_translator.d.ts.map +1 -1
  17. package/dest/rpc_translator.js +545 -178
  18. package/dest/state_machine/archiver.d.ts +21 -52
  19. package/dest/state_machine/archiver.d.ts.map +1 -1
  20. package/dest/state_machine/archiver.js +67 -99
  21. package/dest/state_machine/dummy_p2p_client.d.ts +21 -15
  22. package/dest/state_machine/dummy_p2p_client.d.ts.map +1 -1
  23. package/dest/state_machine/dummy_p2p_client.js +45 -25
  24. package/dest/state_machine/global_variable_builder.d.ts +11 -5
  25. package/dest/state_machine/global_variable_builder.d.ts.map +1 -1
  26. package/dest/state_machine/global_variable_builder.js +21 -3
  27. package/dest/state_machine/index.d.ts +9 -7
  28. package/dest/state_machine/index.d.ts.map +1 -1
  29. package/dest/state_machine/index.js +45 -24
  30. package/dest/state_machine/mock_epoch_cache.d.ts +26 -8
  31. package/dest/state_machine/mock_epoch_cache.d.ts.map +1 -1
  32. package/dest/state_machine/mock_epoch_cache.js +49 -9
  33. package/dest/state_machine/synchronizer.d.ts +6 -5
  34. package/dest/state_machine/synchronizer.d.ts.map +1 -1
  35. package/dest/state_machine/synchronizer.js +8 -7
  36. package/dest/txe_session.d.ts +71 -15
  37. package/dest/txe_session.d.ts.map +1 -1
  38. package/dest/txe_session.js +228 -57
  39. package/dest/util/encoding.d.ts +688 -19
  40. package/dest/util/encoding.d.ts.map +1 -1
  41. package/dest/util/encoding.js +5 -1
  42. package/dest/util/txe_account_store.d.ts +10 -0
  43. package/dest/util/txe_account_store.d.ts.map +1 -0
  44. package/dest/util/{txe_account_data_provider.js → txe_account_store.js} +1 -1
  45. package/dest/util/txe_public_contract_data_source.d.ts +8 -8
  46. package/dest/util/txe_public_contract_data_source.d.ts.map +1 -1
  47. package/dest/util/txe_public_contract_data_source.js +13 -32
  48. package/dest/utils/block_creation.d.ts +21 -6
  49. package/dest/utils/block_creation.d.ts.map +1 -1
  50. package/dest/utils/block_creation.js +38 -4
  51. package/dest/utils/tx_effect_creation.d.ts +3 -3
  52. package/dest/utils/tx_effect_creation.d.ts.map +1 -1
  53. package/dest/utils/tx_effect_creation.js +4 -7
  54. package/package.json +18 -18
  55. package/src/constants.ts +3 -0
  56. package/src/index.ts +103 -63
  57. package/src/oracle/interfaces.ts +37 -33
  58. package/src/oracle/txe_oracle_public_context.ts +21 -28
  59. package/src/oracle/txe_oracle_top_level_context.ts +291 -151
  60. package/src/rpc_translator.ts +645 -206
  61. package/src/state_machine/archiver.ts +63 -117
  62. package/src/state_machine/dummy_p2p_client.ts +62 -33
  63. package/src/state_machine/global_variable_builder.ts +38 -6
  64. package/src/state_machine/index.ts +68 -22
  65. package/src/state_machine/mock_epoch_cache.ts +61 -14
  66. package/src/state_machine/synchronizer.ts +9 -8
  67. package/src/txe_session.ts +351 -105
  68. package/src/util/encoding.ts +6 -1
  69. package/src/util/{txe_account_data_provider.ts → txe_account_store.ts} +1 -1
  70. package/src/util/txe_public_contract_data_source.ts +20 -47
  71. package/src/utils/block_creation.ts +49 -15
  72. package/src/utils/tx_effect_creation.ts +5 -12
  73. package/dest/util/txe_account_data_provider.d.ts +0 -10
  74. package/dest/util/txe_account_data_provider.d.ts.map +0 -1
  75. package/dest/util/txe_contract_data_provider.d.ts +0 -12
  76. package/dest/util/txe_contract_data_provider.d.ts.map +0 -1
  77. package/dest/util/txe_contract_data_provider.js +0 -22
  78. package/src/util/txe_contract_data_provider.ts +0 -36
@@ -1,7 +1,8 @@
1
+ import { Fr } from '@aztec/foundation/curves/bn254';
1
2
  import type { EthAddress } from '@aztec/foundation/eth-address';
2
- import { Fr } from '@aztec/foundation/fields';
3
3
  import { type ContractArtifact } from '@aztec/stdlib/abi';
4
4
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
5
+ import { BlockHash } from '@aztec/stdlib/block';
5
6
  import { type ContractInstanceWithAddress } from '@aztec/stdlib/contract';
6
7
  import { z } from 'zod';
7
8
  export type ForeignCallSingle = string;
@@ -12,6 +13,7 @@ export type ForeignCallResult = {
12
13
  };
13
14
  export declare function fromSingle(obj: ForeignCallSingle): Fr;
14
15
  export declare function addressFromSingle(obj: ForeignCallSingle): AztecAddress;
16
+ export declare function blockHashFromSingle(obj: ForeignCallSingle): BlockHash;
15
17
  export declare function fromArray(obj: ForeignCallArray): Fr[];
16
18
  /**
17
19
  * Converts an array of Noir unsigned integers to a single tightly-packed buffer.
@@ -55,29 +57,696 @@ export declare function toForeignCallResult(obj: (ForeignCallSingle | ForeignCal
55
57
  };
56
58
  export declare const ForeignCallSingleSchema: z.ZodString;
57
59
  export declare const ForeignCallArraySchema: z.ZodArray<z.ZodString, "many">;
58
- export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, import("../../../foundation/dest/schemas/types.js").ZodFor<ContractArtifact>, z.ZodIntersection<z.ZodObject<{
60
+ export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodObject<{
61
+ name: z.ZodString;
62
+ functions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
63
+ name: z.ZodString;
64
+ functionType: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
65
+ isOnlySelf: z.ZodBoolean;
66
+ isStatic: z.ZodBoolean;
67
+ isInitializer: z.ZodBoolean;
68
+ parameters: z.ZodArray<z.ZodObject<{
69
+ name: z.ZodString;
70
+ type: z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>;
71
+ visibility: z.ZodEnum<["public", "private", "databus"]>;
72
+ }, "strip", z.ZodTypeAny, {
73
+ name: string;
74
+ type: import("@aztec/stdlib/abi").AbiType;
75
+ visibility: "databus" | "private" | "public";
76
+ }, {
77
+ name: string;
78
+ type: import("@aztec/stdlib/abi").AbiType;
79
+ visibility: "databus" | "private" | "public";
80
+ }>, "many">;
81
+ returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
82
+ errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
83
+ error_kind: z.ZodLiteral<"string">;
84
+ string: z.ZodString;
85
+ }, "strip", z.ZodTypeAny, {
86
+ error_kind: "string";
87
+ string: string;
88
+ }, {
89
+ error_kind: "string";
90
+ string: string;
91
+ }>, z.ZodObject<{
92
+ error_kind: z.ZodLiteral<"fmtstring">;
93
+ length: z.ZodNumber;
94
+ item_types: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
95
+ }, "strip", z.ZodTypeAny, {
96
+ error_kind: "fmtstring";
97
+ length: number;
98
+ item_types: import("@aztec/stdlib/abi").AbiType[];
99
+ }, {
100
+ error_kind: "fmtstring";
101
+ length: number;
102
+ item_types: import("@aztec/stdlib/abi").AbiType[];
103
+ }>, z.ZodIntersection<z.ZodObject<{
104
+ error_kind: z.ZodLiteral<"custom">;
105
+ }, "strip", z.ZodTypeAny, {
106
+ error_kind: "custom";
107
+ }, {
108
+ error_kind: "custom";
109
+ }>, z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>>]>>>;
110
+ }, "strip", z.ZodTypeAny, {
111
+ name: string;
112
+ functionType: import("@aztec/stdlib/abi").FunctionType;
113
+ isOnlySelf: boolean;
114
+ isStatic: boolean;
115
+ isInitializer: boolean;
116
+ parameters: {
117
+ name: string;
118
+ type: import("@aztec/stdlib/abi").AbiType;
119
+ visibility: "databus" | "private" | "public";
120
+ }[];
121
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
122
+ errorTypes: Record<string, {
123
+ error_kind: "string";
124
+ string: string;
125
+ } | {
126
+ error_kind: "fmtstring";
127
+ length: number;
128
+ item_types: import("@aztec/stdlib/abi").AbiType[];
129
+ } | ({
130
+ error_kind: "custom";
131
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
132
+ }, {
133
+ name: string;
134
+ functionType: import("@aztec/stdlib/abi").FunctionType;
135
+ isOnlySelf: boolean;
136
+ isStatic: boolean;
137
+ isInitializer: boolean;
138
+ parameters: {
139
+ name: string;
140
+ type: import("@aztec/stdlib/abi").AbiType;
141
+ visibility: "databus" | "private" | "public";
142
+ }[];
143
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
144
+ errorTypes: Record<string, {
145
+ error_kind: "string";
146
+ string: string;
147
+ } | {
148
+ error_kind: "fmtstring";
149
+ length: number;
150
+ item_types: import("@aztec/stdlib/abi").AbiType[];
151
+ } | ({
152
+ error_kind: "custom";
153
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
154
+ }>, z.ZodObject<{
155
+ bytecode: import("@aztec/foundation/schemas").ZodFor<Buffer<ArrayBufferLike>>;
156
+ verificationKey: z.ZodOptional<z.ZodString>;
157
+ debugSymbols: z.ZodString;
158
+ debug: z.ZodOptional<z.ZodObject<{
159
+ debugSymbols: z.ZodObject<{
160
+ location_tree: z.ZodObject<{
161
+ locations: z.ZodArray<z.ZodObject<{
162
+ parent: z.ZodNullable<z.ZodNumber>;
163
+ value: z.ZodObject<{
164
+ span: z.ZodObject<{
165
+ start: z.ZodNumber;
166
+ end: z.ZodNumber;
167
+ }, "strip", z.ZodTypeAny, {
168
+ start: number;
169
+ end: number;
170
+ }, {
171
+ start: number;
172
+ end: number;
173
+ }>;
174
+ file: z.ZodNumber;
175
+ }, "strip", z.ZodTypeAny, {
176
+ span: {
177
+ start: number;
178
+ end: number;
179
+ };
180
+ file: number;
181
+ }, {
182
+ span: {
183
+ start: number;
184
+ end: number;
185
+ };
186
+ file: number;
187
+ }>;
188
+ }, "strip", z.ZodTypeAny, {
189
+ parent: number | null;
190
+ value: {
191
+ span: {
192
+ start: number;
193
+ end: number;
194
+ };
195
+ file: number;
196
+ };
197
+ }, {
198
+ parent: number | null;
199
+ value: {
200
+ span: {
201
+ start: number;
202
+ end: number;
203
+ };
204
+ file: number;
205
+ };
206
+ }>, "many">;
207
+ }, "strip", z.ZodTypeAny, {
208
+ locations: {
209
+ parent: number | null;
210
+ value: {
211
+ span: {
212
+ start: number;
213
+ end: number;
214
+ };
215
+ file: number;
216
+ };
217
+ }[];
218
+ }, {
219
+ locations: {
220
+ parent: number | null;
221
+ value: {
222
+ span: {
223
+ start: number;
224
+ end: number;
225
+ };
226
+ file: number;
227
+ };
228
+ }[];
229
+ }>;
230
+ acir_locations: z.ZodRecord<z.ZodString, z.ZodNumber>;
231
+ brillig_locations: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
232
+ }, "strip", z.ZodTypeAny, {
233
+ location_tree: {
234
+ locations: {
235
+ parent: number | null;
236
+ value: {
237
+ span: {
238
+ start: number;
239
+ end: number;
240
+ };
241
+ file: number;
242
+ };
243
+ }[];
244
+ };
245
+ acir_locations: Record<string, number>;
246
+ brillig_locations: Record<string, Record<string, number>>;
247
+ }, {
248
+ location_tree: {
249
+ locations: {
250
+ parent: number | null;
251
+ value: {
252
+ span: {
253
+ start: number;
254
+ end: number;
255
+ };
256
+ file: number;
257
+ };
258
+ }[];
259
+ };
260
+ acir_locations: Record<string, number>;
261
+ brillig_locations: Record<string, Record<string, number>>;
262
+ }>;
263
+ files: z.ZodRecord<z.ZodString, z.ZodObject<{
264
+ source: z.ZodString;
265
+ path: z.ZodString;
266
+ function_locations: z.ZodArray<z.ZodObject<{
267
+ start: z.ZodNumber;
268
+ name: z.ZodString;
269
+ }, "strip", z.ZodTypeAny, {
270
+ start: number;
271
+ name: string;
272
+ }, {
273
+ start: number;
274
+ name: string;
275
+ }>, "many">;
276
+ }, "strip", z.ZodTypeAny, {
277
+ source: string;
278
+ path: string;
279
+ function_locations: {
280
+ start: number;
281
+ name: string;
282
+ }[];
283
+ }, {
284
+ source: string;
285
+ path: string;
286
+ function_locations: {
287
+ start: number;
288
+ name: string;
289
+ }[];
290
+ }>>;
291
+ }, "strip", z.ZodTypeAny, {
292
+ debugSymbols: {
293
+ location_tree: {
294
+ locations: {
295
+ parent: number | null;
296
+ value: {
297
+ span: {
298
+ start: number;
299
+ end: number;
300
+ };
301
+ file: number;
302
+ };
303
+ }[];
304
+ };
305
+ acir_locations: Record<string, number>;
306
+ brillig_locations: Record<string, Record<string, number>>;
307
+ };
308
+ files: Record<string, {
309
+ source: string;
310
+ path: string;
311
+ function_locations: {
312
+ start: number;
313
+ name: string;
314
+ }[];
315
+ }>;
316
+ }, {
317
+ debugSymbols: {
318
+ location_tree: {
319
+ locations: {
320
+ parent: number | null;
321
+ value: {
322
+ span: {
323
+ start: number;
324
+ end: number;
325
+ };
326
+ file: number;
327
+ };
328
+ }[];
329
+ };
330
+ acir_locations: Record<string, number>;
331
+ brillig_locations: Record<string, Record<string, number>>;
332
+ };
333
+ files: Record<string, {
334
+ source: string;
335
+ path: string;
336
+ function_locations: {
337
+ start: number;
338
+ name: string;
339
+ }[];
340
+ }>;
341
+ }>>;
342
+ }, "strip", z.ZodTypeAny, {
343
+ bytecode: Buffer<ArrayBufferLike>;
344
+ verificationKey?: string | undefined;
345
+ debugSymbols: string;
346
+ debug?: {
347
+ debugSymbols: {
348
+ location_tree: {
349
+ locations: {
350
+ parent: number | null;
351
+ value: {
352
+ span: {
353
+ start: number;
354
+ end: number;
355
+ };
356
+ file: number;
357
+ };
358
+ }[];
359
+ };
360
+ acir_locations: Record<string, number>;
361
+ brillig_locations: Record<string, Record<string, number>>;
362
+ };
363
+ files: Record<string, {
364
+ source: string;
365
+ path: string;
366
+ function_locations: {
367
+ start: number;
368
+ name: string;
369
+ }[];
370
+ }>;
371
+ } | undefined;
372
+ }, {
373
+ bytecode?: any;
374
+ verificationKey?: string | undefined;
375
+ debugSymbols: string;
376
+ debug?: {
377
+ debugSymbols: {
378
+ location_tree: {
379
+ locations: {
380
+ parent: number | null;
381
+ value: {
382
+ span: {
383
+ start: number;
384
+ end: number;
385
+ };
386
+ file: number;
387
+ };
388
+ }[];
389
+ };
390
+ acir_locations: Record<string, number>;
391
+ brillig_locations: Record<string, Record<string, number>>;
392
+ };
393
+ files: Record<string, {
394
+ source: string;
395
+ path: string;
396
+ function_locations: {
397
+ start: number;
398
+ name: string;
399
+ }[];
400
+ }>;
401
+ } | undefined;
402
+ }>>, "many">;
403
+ nonDispatchPublicFunctions: z.ZodArray<z.ZodObject<{
404
+ name: z.ZodString;
405
+ functionType: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
406
+ isOnlySelf: z.ZodBoolean;
407
+ isStatic: z.ZodBoolean;
408
+ isInitializer: z.ZodBoolean;
409
+ parameters: z.ZodArray<z.ZodObject<{
410
+ name: z.ZodString;
411
+ type: z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>;
412
+ visibility: z.ZodEnum<["public", "private", "databus"]>;
413
+ }, "strip", z.ZodTypeAny, {
414
+ name: string;
415
+ type: import("@aztec/stdlib/abi").AbiType;
416
+ visibility: "databus" | "private" | "public";
417
+ }, {
418
+ name: string;
419
+ type: import("@aztec/stdlib/abi").AbiType;
420
+ visibility: "databus" | "private" | "public";
421
+ }>, "many">;
422
+ returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
423
+ errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
424
+ error_kind: z.ZodLiteral<"string">;
425
+ string: z.ZodString;
426
+ }, "strip", z.ZodTypeAny, {
427
+ error_kind: "string";
428
+ string: string;
429
+ }, {
430
+ error_kind: "string";
431
+ string: string;
432
+ }>, z.ZodObject<{
433
+ error_kind: z.ZodLiteral<"fmtstring">;
434
+ length: z.ZodNumber;
435
+ item_types: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
436
+ }, "strip", z.ZodTypeAny, {
437
+ error_kind: "fmtstring";
438
+ length: number;
439
+ item_types: import("@aztec/stdlib/abi").AbiType[];
440
+ }, {
441
+ error_kind: "fmtstring";
442
+ length: number;
443
+ item_types: import("@aztec/stdlib/abi").AbiType[];
444
+ }>, z.ZodIntersection<z.ZodObject<{
445
+ error_kind: z.ZodLiteral<"custom">;
446
+ }, "strip", z.ZodTypeAny, {
447
+ error_kind: "custom";
448
+ }, {
449
+ error_kind: "custom";
450
+ }>, z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>>]>>>;
451
+ }, "strip", z.ZodTypeAny, {
452
+ name: string;
453
+ functionType: import("@aztec/stdlib/abi").FunctionType;
454
+ isOnlySelf: boolean;
455
+ isStatic: boolean;
456
+ isInitializer: boolean;
457
+ parameters: {
458
+ name: string;
459
+ type: import("@aztec/stdlib/abi").AbiType;
460
+ visibility: "databus" | "private" | "public";
461
+ }[];
462
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
463
+ errorTypes: Record<string, {
464
+ error_kind: "string";
465
+ string: string;
466
+ } | {
467
+ error_kind: "fmtstring";
468
+ length: number;
469
+ item_types: import("@aztec/stdlib/abi").AbiType[];
470
+ } | ({
471
+ error_kind: "custom";
472
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
473
+ }, {
474
+ name: string;
475
+ functionType: import("@aztec/stdlib/abi").FunctionType;
476
+ isOnlySelf: boolean;
477
+ isStatic: boolean;
478
+ isInitializer: boolean;
479
+ parameters: {
480
+ name: string;
481
+ type: import("@aztec/stdlib/abi").AbiType;
482
+ visibility: "databus" | "private" | "public";
483
+ }[];
484
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
485
+ errorTypes: Record<string, {
486
+ error_kind: "string";
487
+ string: string;
488
+ } | {
489
+ error_kind: "fmtstring";
490
+ length: number;
491
+ item_types: import("@aztec/stdlib/abi").AbiType[];
492
+ } | ({
493
+ error_kind: "custom";
494
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
495
+ }>, "many">;
496
+ outputs: z.ZodObject<{
497
+ structs: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">>, Record<string, import("@aztec/stdlib/abi").AbiType[]>, Record<string, import("@aztec/stdlib/abi").AbiType[]>>;
498
+ globals: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiValue, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiValue>, "many">>;
499
+ }, "strip", z.ZodTypeAny, {
500
+ structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
501
+ globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
502
+ }, {
503
+ structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
504
+ globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
505
+ }>;
506
+ storageLayout: z.ZodRecord<z.ZodString, z.ZodObject<{
507
+ slot: z.ZodType<Fr, any, string>;
508
+ }, "strip", z.ZodTypeAny, {
509
+ slot: Fr;
510
+ }, {
511
+ slot: string;
512
+ }>>;
513
+ fileMap: z.ZodRecord<z.ZodNumber, z.ZodObject<{
514
+ source: z.ZodString;
515
+ path: z.ZodString;
516
+ function_locations: z.ZodArray<z.ZodObject<{
517
+ start: z.ZodNumber;
518
+ name: z.ZodString;
519
+ }, "strip", z.ZodTypeAny, {
520
+ start: number;
521
+ name: string;
522
+ }, {
523
+ start: number;
524
+ name: string;
525
+ }>, "many">;
526
+ }, "strip", z.ZodTypeAny, {
527
+ source: string;
528
+ path: string;
529
+ function_locations: {
530
+ start: number;
531
+ name: string;
532
+ }[];
533
+ }, {
534
+ source: string;
535
+ path: string;
536
+ function_locations: {
537
+ start: number;
538
+ name: string;
539
+ }[];
540
+ }>>;
541
+ }, "strip", z.ZodTypeAny, {
542
+ name: string;
543
+ functions: ({
544
+ name: string;
545
+ functionType: import("@aztec/stdlib/abi").FunctionType;
546
+ isOnlySelf: boolean;
547
+ isStatic: boolean;
548
+ isInitializer: boolean;
549
+ parameters: {
550
+ name: string;
551
+ type: import("@aztec/stdlib/abi").AbiType;
552
+ visibility: "databus" | "private" | "public";
553
+ }[];
554
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
555
+ errorTypes: Record<string, {
556
+ error_kind: "string";
557
+ string: string;
558
+ } | {
559
+ error_kind: "fmtstring";
560
+ length: number;
561
+ item_types: import("@aztec/stdlib/abi").AbiType[];
562
+ } | ({
563
+ error_kind: "custom";
564
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
565
+ } & {
566
+ bytecode: Buffer<ArrayBufferLike>;
567
+ verificationKey?: string | undefined;
568
+ debugSymbols: string;
569
+ debug?: {
570
+ debugSymbols: {
571
+ location_tree: {
572
+ locations: {
573
+ parent: number | null;
574
+ value: {
575
+ span: {
576
+ start: number;
577
+ end: number;
578
+ };
579
+ file: number;
580
+ };
581
+ }[];
582
+ };
583
+ acir_locations: Record<string, number>;
584
+ brillig_locations: Record<string, Record<string, number>>;
585
+ };
586
+ files: Record<string, {
587
+ source: string;
588
+ path: string;
589
+ function_locations: {
590
+ start: number;
591
+ name: string;
592
+ }[];
593
+ }>;
594
+ } | undefined;
595
+ })[];
596
+ nonDispatchPublicFunctions: {
597
+ name: string;
598
+ functionType: import("@aztec/stdlib/abi").FunctionType;
599
+ isOnlySelf: boolean;
600
+ isStatic: boolean;
601
+ isInitializer: boolean;
602
+ parameters: {
603
+ name: string;
604
+ type: import("@aztec/stdlib/abi").AbiType;
605
+ visibility: "databus" | "private" | "public";
606
+ }[];
607
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
608
+ errorTypes: Record<string, {
609
+ error_kind: "string";
610
+ string: string;
611
+ } | {
612
+ error_kind: "fmtstring";
613
+ length: number;
614
+ item_types: import("@aztec/stdlib/abi").AbiType[];
615
+ } | ({
616
+ error_kind: "custom";
617
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
618
+ }[];
619
+ outputs: {
620
+ structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
621
+ globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
622
+ };
623
+ storageLayout: Record<string, {
624
+ slot: Fr;
625
+ }>;
626
+ fileMap: Record<number, {
627
+ source: string;
628
+ path: string;
629
+ function_locations: {
630
+ start: number;
631
+ name: string;
632
+ }[];
633
+ }>;
634
+ }, {
635
+ name: string;
636
+ functions: ({
637
+ name: string;
638
+ functionType: import("@aztec/stdlib/abi").FunctionType;
639
+ isOnlySelf: boolean;
640
+ isStatic: boolean;
641
+ isInitializer: boolean;
642
+ parameters: {
643
+ name: string;
644
+ type: import("@aztec/stdlib/abi").AbiType;
645
+ visibility: "databus" | "private" | "public";
646
+ }[];
647
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
648
+ errorTypes: Record<string, {
649
+ error_kind: "string";
650
+ string: string;
651
+ } | {
652
+ error_kind: "fmtstring";
653
+ length: number;
654
+ item_types: import("@aztec/stdlib/abi").AbiType[];
655
+ } | ({
656
+ error_kind: "custom";
657
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
658
+ } & {
659
+ bytecode?: any;
660
+ verificationKey?: string | undefined;
661
+ debugSymbols: string;
662
+ debug?: {
663
+ debugSymbols: {
664
+ location_tree: {
665
+ locations: {
666
+ parent: number | null;
667
+ value: {
668
+ span: {
669
+ start: number;
670
+ end: number;
671
+ };
672
+ file: number;
673
+ };
674
+ }[];
675
+ };
676
+ acir_locations: Record<string, number>;
677
+ brillig_locations: Record<string, Record<string, number>>;
678
+ };
679
+ files: Record<string, {
680
+ source: string;
681
+ path: string;
682
+ function_locations: {
683
+ start: number;
684
+ name: string;
685
+ }[];
686
+ }>;
687
+ } | undefined;
688
+ })[];
689
+ nonDispatchPublicFunctions: {
690
+ name: string;
691
+ functionType: import("@aztec/stdlib/abi").FunctionType;
692
+ isOnlySelf: boolean;
693
+ isStatic: boolean;
694
+ isInitializer: boolean;
695
+ parameters: {
696
+ name: string;
697
+ type: import("@aztec/stdlib/abi").AbiType;
698
+ visibility: "databus" | "private" | "public";
699
+ }[];
700
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
701
+ errorTypes: Record<string, {
702
+ error_kind: "string";
703
+ string: string;
704
+ } | {
705
+ error_kind: "fmtstring";
706
+ length: number;
707
+ item_types: import("@aztec/stdlib/abi").AbiType[];
708
+ } | ({
709
+ error_kind: "custom";
710
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
711
+ }[];
712
+ outputs: {
713
+ structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
714
+ globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
715
+ };
716
+ storageLayout: Record<string, {
717
+ slot: string;
718
+ }>;
719
+ fileMap: Record<number, {
720
+ source: string;
721
+ path: string;
722
+ function_locations: {
723
+ start: number;
724
+ name: string;
725
+ }[];
726
+ }>;
727
+ }>, z.ZodIntersection<z.ZodObject<{
59
728
  version: z.ZodLiteral<1>;
60
- salt: import("../../../foundation/dest/schemas/types.js").ZodFor<Fr>;
61
- deployer: import("../../../foundation/dest/schemas/types.js").ZodFor<AztecAddress>;
62
- currentContractClassId: import("../../../foundation/dest/schemas/types.js").ZodFor<Fr>;
63
- originalContractClassId: import("../../../foundation/dest/schemas/types.js").ZodFor<Fr>;
64
- initializationHash: import("../../../foundation/dest/schemas/types.js").ZodFor<Fr>;
729
+ salt: import("@aztec/foundation/schemas").ZodFor<Fr>;
730
+ deployer: import("@aztec/foundation/schemas").ZodFor<AztecAddress>;
731
+ currentContractClassId: import("@aztec/foundation/schemas").ZodFor<Fr>;
732
+ originalContractClassId: import("@aztec/foundation/schemas").ZodFor<Fr>;
733
+ initializationHash: import("@aztec/foundation/schemas").ZodFor<Fr>;
65
734
  publicKeys: z.ZodEffects<z.ZodObject<{
66
- masterNullifierPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string>;
67
- masterIncomingViewingPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string>;
68
- masterOutgoingViewingPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string>;
69
- masterTaggingPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string>;
735
+ masterNullifierPublicKey: z.ZodType<import("@aztec/foundation/schemas").Point, any, string>;
736
+ masterIncomingViewingPublicKey: z.ZodType<import("@aztec/foundation/schemas").Point, any, string>;
737
+ masterOutgoingViewingPublicKey: z.ZodType<import("@aztec/foundation/schemas").Point, any, string>;
738
+ masterTaggingPublicKey: z.ZodType<import("@aztec/foundation/schemas").Point, any, string>;
70
739
  }, "strip", z.ZodTypeAny, {
71
- masterNullifierPublicKey: import("@aztec/foundation/fields").Point;
72
- masterIncomingViewingPublicKey: import("@aztec/foundation/fields").Point;
73
- masterOutgoingViewingPublicKey: import("@aztec/foundation/fields").Point;
74
- masterTaggingPublicKey: import("@aztec/foundation/fields").Point;
740
+ masterNullifierPublicKey: import("@aztec/foundation/schemas").Point;
741
+ masterIncomingViewingPublicKey: import("@aztec/foundation/schemas").Point;
742
+ masterOutgoingViewingPublicKey: import("@aztec/foundation/schemas").Point;
743
+ masterTaggingPublicKey: import("@aztec/foundation/schemas").Point;
75
744
  }, {
76
745
  masterNullifierPublicKey: string;
77
746
  masterIncomingViewingPublicKey: string;
78
747
  masterOutgoingViewingPublicKey: string;
79
748
  masterTaggingPublicKey: string;
80
- }>, import("../../../stdlib/dest/keys/public_keys.js").PublicKeys, {
749
+ }>, import("@aztec/stdlib/keys").PublicKeys, {
81
750
  masterNullifierPublicKey: string;
82
751
  masterIncomingViewingPublicKey: string;
83
752
  masterOutgoingViewingPublicKey: string;
@@ -90,7 +759,7 @@ export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString,
90
759
  currentContractClassId: Fr;
91
760
  originalContractClassId: Fr;
92
761
  initializationHash: Fr;
93
- publicKeys: import("../../../stdlib/dest/keys/public_keys.js").PublicKeys;
762
+ publicKeys: import("@aztec/stdlib/keys").PublicKeys;
94
763
  }, {
95
764
  version: 1;
96
765
  salt?: any;
@@ -105,7 +774,7 @@ export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString,
105
774
  masterTaggingPublicKey: string;
106
775
  };
107
776
  }>, z.ZodObject<{
108
- address: import("../../../foundation/dest/schemas/types.js").ZodFor<AztecAddress>;
777
+ address: import("@aztec/foundation/schemas").ZodFor<AztecAddress>;
109
778
  }, "strip", z.ZodTypeAny, {
110
779
  address: AztecAddress;
111
780
  }, {
@@ -118,4 +787,4 @@ export declare const ForeignCallResultSchema: z.ZodObject<{
118
787
  }, {
119
788
  values: (string | string[])[];
120
789
  }>;
121
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW5jb2RpbmcuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy91dGlsL2VuY29kaW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sS0FBSyxFQUFFLFVBQVUsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxFQUFFLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUU5QyxPQUFPLEVBQUUsS0FBSyxnQkFBZ0IsRUFBMEIsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDM0QsT0FBTyxFQUFFLEtBQUssMkJBQTJCLEVBQXFDLE1BQU0sd0JBQXdCLENBQUM7QUFFN0csT0FBTyxFQUFFLENBQUMsRUFBRSxNQUFNLEtBQUssQ0FBQztBQUV4QixNQUFNLE1BQU0saUJBQWlCLEdBQUcsTUFBTSxDQUFDO0FBRXZDLE1BQU0sTUFBTSxnQkFBZ0IsR0FBRyxNQUFNLEVBQUUsQ0FBQztBQUV4QyxNQUFNLE1BQU0sZUFBZSxHQUFHLENBQUMsaUJBQWlCLEdBQUcsZ0JBQWdCLEdBQUcsZ0JBQWdCLEdBQUcsMkJBQTJCLENBQUMsRUFBRSxDQUFDO0FBRXhILE1BQU0sTUFBTSxpQkFBaUIsR0FBRztJQUM5QixNQUFNLEVBQUUsQ0FBQyxpQkFBaUIsR0FBRyxnQkFBZ0IsQ0FBQyxFQUFFLENBQUM7Q0FDbEQsQ0FBQztBQUVGLHdCQUFnQixVQUFVLENBQUMsR0FBRyxFQUFFLGlCQUFpQixNQUVoRDtBQUVELHdCQUFnQixpQkFBaUIsQ0FBQyxHQUFHLEVBQUUsaUJBQWlCLGdCQUV2RDtBQUVELHdCQUFnQixTQUFTLENBQUMsR0FBRyxFQUFFLGdCQUFnQixRQUU5QztBQUVEOzs7O0dBSUc7QUFDSCx3QkFBZ0IsYUFBYSxDQUFDLEdBQUcsRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLEVBQUUsTUFBTSxHQUFHLE1BQU0sQ0FNaEY7QUFFRDs7Ozs7Ozs7R0FRRztBQUNILHdCQUFnQixrQkFBa0IsQ0FBQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLFdBQVcsRUFBRSxNQUFNLEdBQUcsTUFBTSxDQU9wSDtBQUlELHdCQUFnQixRQUFRLENBQ3RCLEtBQUssRUFBRSxZQUFZLEdBQUcsVUFBVSxHQUFHLEVBQUUsR0FBRyxNQUFNLEdBQUcsT0FBTyxHQUFHLE1BQU0sR0FBRyxNQUFNLEdBQ3pFLGlCQUFpQixDQVluQjtBQUVELHdCQUFnQixPQUFPLENBQUMsSUFBSSxFQUFFLEVBQUUsRUFBRSxHQUFHLGdCQUFnQixDQUVwRDtBQUVELHdCQUFnQixlQUFlLENBQUMsS0FBSyxFQUFFLEVBQUUsR0FBRyxFQUFFLEVBQUUscUJBRS9DO0FBRUQsd0JBQWdCLGVBQWUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLGdCQUFnQixDQUVoRTtBQUVEOzs7Ozs7O0dBT0c7QUFDSCx3QkFBZ0IsaUJBQWlCLENBQy9CLFdBQVcsRUFBRSxnQkFBZ0IsRUFDN0IsTUFBTSxFQUFFLE1BQU0sR0FDYixDQUFDLGdCQUFnQixFQUFFLGlCQUFpQixDQUFDLENBWXZDO0FBRUQ7Ozs7OztHQU1HO0FBQ0gsd0JBQWdCLGlDQUFpQyxDQUMvQyxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsRUFDL0IsTUFBTSxFQUFFLE1BQU0sRUFDZCxpQkFBaUIsRUFBRSxNQUFNLEdBQ3hCLENBQUMsZ0JBQWdCLEVBQUUsaUJBQWlCLENBQUMsQ0FxQnZDO0FBRUQsd0JBQWdCLG1CQUFtQixDQUFDLEdBQUcsRUFBRSxDQUFDLGlCQUFpQixHQUFHLGdCQUFnQixDQUFDLEVBQUU7O0VBRWhGO0FBRUQsZUFBTyxNQUFNLHVCQUF1QixhQUFhLENBQUM7QUFFbEQsZUFBTyxNQUFNLHNCQUFzQixpQ0FBc0IsQ0FBQztBQUUxRCxlQUFPLE1BQU0scUJBQXFCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O2NBRWpDLENBQUM7QUFFRixlQUFPLE1BQU0sdUJBQXVCOzs7Ozs7RUFFbEMsQ0FBQyJ9
790
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW5jb2RpbmcuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy91dGlsL2VuY29kaW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxFQUFFLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUNwRCxPQUFPLEtBQUssRUFBRSxVQUFVLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUVoRSxPQUFPLEVBQUUsS0FBSyxnQkFBZ0IsRUFBMEIsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDM0QsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ2hELE9BQU8sRUFBRSxLQUFLLDJCQUEyQixFQUFxQyxNQUFNLHdCQUF3QixDQUFDO0FBRTdHLE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsTUFBTSxNQUFNLGlCQUFpQixHQUFHLE1BQU0sQ0FBQztBQUV2QyxNQUFNLE1BQU0sZ0JBQWdCLEdBQUcsTUFBTSxFQUFFLENBQUM7QUFFeEMsTUFBTSxNQUFNLGVBQWUsR0FBRyxDQUFDLGlCQUFpQixHQUFHLGdCQUFnQixHQUFHLGdCQUFnQixHQUFHLDJCQUEyQixDQUFDLEVBQUUsQ0FBQztBQUV4SCxNQUFNLE1BQU0saUJBQWlCLEdBQUc7SUFDOUIsTUFBTSxFQUFFLENBQUMsaUJBQWlCLEdBQUcsZ0JBQWdCLENBQUMsRUFBRSxDQUFDO0NBQ2xELENBQUM7QUFFRix3QkFBZ0IsVUFBVSxDQUFDLEdBQUcsRUFBRSxpQkFBaUIsTUFFaEQ7QUFFRCx3QkFBZ0IsaUJBQWlCLENBQUMsR0FBRyxFQUFFLGlCQUFpQixnQkFFdkQ7QUFFRCx3QkFBZ0IsbUJBQW1CLENBQUMsR0FBRyxFQUFFLGlCQUFpQixhQUV6RDtBQUVELHdCQUFnQixTQUFTLENBQUMsR0FBRyxFQUFFLGdCQUFnQixRQUU5QztBQUVEOzs7O0dBSUc7QUFDSCx3QkFBZ0IsYUFBYSxDQUFDLEdBQUcsRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLEVBQUUsTUFBTSxHQUFHLE1BQU0sQ0FNaEY7QUFFRDs7Ozs7Ozs7R0FRRztBQUNILHdCQUFnQixrQkFBa0IsQ0FBQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLFdBQVcsRUFBRSxNQUFNLEdBQUcsTUFBTSxDQU9wSDtBQUlELHdCQUFnQixRQUFRLENBQ3RCLEtBQUssRUFBRSxZQUFZLEdBQUcsVUFBVSxHQUFHLEVBQUUsR0FBRyxNQUFNLEdBQUcsT0FBTyxHQUFHLE1BQU0sR0FBRyxNQUFNLEdBQ3pFLGlCQUFpQixDQVluQjtBQUVELHdCQUFnQixPQUFPLENBQUMsSUFBSSxFQUFFLEVBQUUsRUFBRSxHQUFHLGdCQUFnQixDQUVwRDtBQUVELHdCQUFnQixlQUFlLENBQUMsS0FBSyxFQUFFLEVBQUUsR0FBRyxFQUFFLEVBQUUscUJBRS9DO0FBRUQsd0JBQWdCLGVBQWUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLGdCQUFnQixDQUVoRTtBQUVEOzs7Ozs7O0dBT0c7QUFDSCx3QkFBZ0IsaUJBQWlCLENBQy9CLFdBQVcsRUFBRSxnQkFBZ0IsRUFDN0IsTUFBTSxFQUFFLE1BQU0sR0FDYixDQUFDLGdCQUFnQixFQUFFLGlCQUFpQixDQUFDLENBWXZDO0FBRUQ7Ozs7OztHQU1HO0FBQ0gsd0JBQWdCLGlDQUFpQyxDQUMvQyxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsRUFDL0IsTUFBTSxFQUFFLE1BQU0sRUFDZCxpQkFBaUIsRUFBRSxNQUFNLEdBQ3hCLENBQUMsZ0JBQWdCLEVBQUUsaUJBQWlCLENBQUMsQ0FxQnZDO0FBRUQsd0JBQWdCLG1CQUFtQixDQUFDLEdBQUcsRUFBRSxDQUFDLGlCQUFpQixHQUFHLGdCQUFnQixDQUFDLEVBQUU7O0VBRWhGO0FBRUQsZUFBTyxNQUFNLHVCQUF1QixhQUFhLENBQUM7QUFFbEQsZUFBTyxNQUFNLHNCQUFzQixpQ0FBc0IsQ0FBQztBQUUxRCxlQUFPLE1BQU0scUJBQXFCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztjQUVqQyxDQUFDO0FBRUYsZUFBTyxNQUFNLHVCQUF1Qjs7Ozs7O0VBRWxDLENBQUMifQ==