@layerzerolabs/lz-v2-stellar-sdk 0.2.8

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.
@@ -0,0 +1,1697 @@
1
+ import { Buffer } from "buffer";
2
+ import { Address } from '@stellar/stellar-sdk';
3
+ import {
4
+ AssembledTransaction,
5
+ Client as ContractClient,
6
+ ClientOptions as ContractClientOptions,
7
+ MethodOptions,
8
+ Result,
9
+ Spec as ContractSpec,
10
+ } from '@stellar/stellar-sdk/contract';
11
+ import type {
12
+ u32,
13
+ i32,
14
+ u64,
15
+ i64,
16
+ u128,
17
+ i128,
18
+ u256,
19
+ i256,
20
+ Option,
21
+ Typepoint,
22
+ Duration,
23
+ } from '@stellar/stellar-sdk/contract';
24
+ export * from '@stellar/stellar-sdk'
25
+ export * as contract from '@stellar/stellar-sdk/contract'
26
+ export * as rpc from '@stellar/stellar-sdk/rpc'
27
+
28
+
29
+
30
+ /**
31
+ * Parameters for sending a cross-chain message.
32
+ */
33
+ export interface MessagingParams {
34
+ /**
35
+ * Destination endpoint ID (chain identifier).
36
+ */
37
+ dst_eid: u32;
38
+ /**
39
+ * The message payload to send.
40
+ */
41
+ message: Buffer;
42
+ /**
43
+ * Encoded executor and DVN options.
44
+ */
45
+ options: Buffer;
46
+ /**
47
+ * Whether to pay fees in ZRO token instead of native token.
48
+ */
49
+ pay_in_zro: boolean;
50
+ /**
51
+ * Receiver address on the destination chain (32 bytes).
52
+ */
53
+ receiver: Buffer;
54
+ }
55
+
56
+
57
+ /**
58
+ * Source message information identifying where a cross-chain message came from.
59
+ */
60
+ export interface Origin {
61
+ /**
62
+ * Nonce for this pathway.
63
+ */
64
+ nonce: u64;
65
+ /**
66
+ * Sender address on the source chain (32 bytes).
67
+ */
68
+ sender: Buffer;
69
+ /**
70
+ * Source endpoint ID (chain identifier).
71
+ */
72
+ src_eid: u32;
73
+ }
74
+
75
+
76
+ /**
77
+ * Fee structure for cross-chain messaging.
78
+ */
79
+ export interface MessagingFee {
80
+ /**
81
+ * Fee paid in native token (XLM).
82
+ */
83
+ native_fee: i128;
84
+ /**
85
+ * Fee paid in ZRO token (LayerZero token).
86
+ */
87
+ zro_fee: i128;
88
+ }
89
+
90
+
91
+ /**
92
+ * Receipt returned after successfully sending a cross-chain message.
93
+ */
94
+ export interface MessagingReceipt {
95
+ /**
96
+ * The fees charged for sending the message.
97
+ */
98
+ fee: MessagingFee;
99
+ /**
100
+ * Globally unique identifier for the message.
101
+ */
102
+ guid: Buffer;
103
+ /**
104
+ * The outbound nonce for this pathway.
105
+ */
106
+ nonce: u64;
107
+ }
108
+
109
+ /**
110
+ * Type of message library indicating supported operations.
111
+ */
112
+ export type MessageLibType = {tag: "Send", values: void} | {tag: "Receive", values: void} | {tag: "SendAndReceive", values: void};
113
+
114
+
115
+ /**
116
+ * Version information for a message library.
117
+ *
118
+ * Note: `minor` and `endpoint_version` use `u32` instead of `u8` because Stellar does not
119
+ * support `u8` types in contract interface functions.
120
+ */
121
+ export interface MessageLibVersion {
122
+ /**
123
+ * Endpoint version (should not exceed u8::MAX = 255).
124
+ */
125
+ endpoint_version: u32;
126
+ /**
127
+ * Major version number.
128
+ */
129
+ major: u64;
130
+ /**
131
+ * Minor version number (should not exceed u8::MAX = 255).
132
+ */
133
+ minor: u32;
134
+ }
135
+
136
+
137
+ /**
138
+ * Timeout configuration for receive library transitions.
139
+ */
140
+ export interface Timeout {
141
+ /**
142
+ * Unix timestamp when the timeout expires.
143
+ */
144
+ expiry: u64;
145
+ /**
146
+ * The new library address to transition to.
147
+ */
148
+ lib: string;
149
+ }
150
+
151
+
152
+ /**
153
+ * Parameters for setting message library configuration.
154
+ */
155
+ export interface SetConfigParam {
156
+ /**
157
+ * XDR-encoded configuration data.
158
+ */
159
+ config: Buffer;
160
+ /**
161
+ * The type of configuration (e.g., executor, ULN).
162
+ */
163
+ config_type: u32;
164
+ /**
165
+ * The endpoint ID this config applies to.
166
+ */
167
+ eid: u32;
168
+ }
169
+
170
+
171
+ /**
172
+ * Resolved library information with default status.
173
+ */
174
+ export interface ResolvedLibrary {
175
+ /**
176
+ * Whether this is the default library (true) or OApp-specific (false).
177
+ */
178
+ is_default: boolean;
179
+ /**
180
+ * The resolved library address.
181
+ */
182
+ lib: string;
183
+ }
184
+
185
+
186
+ /**
187
+ * Outbound packet containing all information for cross-chain transmission.
188
+ */
189
+ export interface OutboundPacket {
190
+ /**
191
+ * Destination endpoint ID.
192
+ */
193
+ dst_eid: u32;
194
+ /**
195
+ * Globally unique identifier for this message.
196
+ */
197
+ guid: Buffer;
198
+ /**
199
+ * The message payload.
200
+ */
201
+ message: Buffer;
202
+ /**
203
+ * Outbound nonce for this pathway.
204
+ */
205
+ nonce: u64;
206
+ /**
207
+ * Receiver address on destination chain (32 bytes).
208
+ */
209
+ receiver: Buffer;
210
+ /**
211
+ * Sender address on source chain.
212
+ */
213
+ sender: string;
214
+ /**
215
+ * Source endpoint ID.
216
+ */
217
+ src_eid: u32;
218
+ }
219
+
220
+
221
+ /**
222
+ * A fee recipient with the amount to be paid.
223
+ */
224
+ export interface FeeRecipient {
225
+ /**
226
+ * Address to receive the fee.
227
+ */
228
+ address: string;
229
+ /**
230
+ * Amount of fee to pay.
231
+ */
232
+ amount: i128;
233
+ }
234
+
235
+
236
+ /**
237
+ * Result of send operation containing fees and encoded packet.
238
+ */
239
+ export interface FeesAndPacket {
240
+ /**
241
+ * The encoded packet ready for transmission.
242
+ */
243
+ encoded_packet: Buffer;
244
+ /**
245
+ * List of native token fee recipients (executor, DVNs, treasury).
246
+ */
247
+ native_fee_recipients: Array<FeeRecipient>;
248
+ /**
249
+ * List of ZRO token fee recipients (treasury).
250
+ */
251
+ zro_fee_recipients: Array<FeeRecipient>;
252
+ }
253
+
254
+ export type EndpointStorage = {tag: "ZRO", values: void} | {tag: "Delegate", values: readonly [string]} | {tag: "LazyInboundNonce", values: readonly [string, u32, Buffer]} | {tag: "InboundPayloadHash", values: readonly [string, u32, Buffer, u64]} | {tag: "OutboundNonce", values: readonly [string, u32, Buffer]} | {tag: "RegisteredLibraryCount", values: void} | {tag: "LibraryToIndex", values: readonly [string]} | {tag: "IndexToLibrary", values: readonly [u32]} | {tag: "DefaultSendLibrary", values: readonly [u32]} | {tag: "DefaultReceiveLibrary", values: readonly [u32]} | {tag: "DefaultReceiveLibraryTimeout", values: readonly [u32]} | {tag: "SendLibrary", values: readonly [string, u32]} | {tag: "ReceiveLibrary", values: readonly [string, u32]} | {tag: "ReceiveLibraryTimeout", values: readonly [string, u32]} | {tag: "ComposeQueue", values: readonly [string, string, Buffer, u32]};
255
+
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+ export const EndpointError = {
276
+ 1: {message:"AlreadyRegistered"},
277
+ 2: {message:"ComposeExists"},
278
+ 3: {message:"ComposeNotFound"},
279
+ 4: {message:"DefaultReceiveLibUnavailable"},
280
+ 5: {message:"DefaultSendLibUnavailable"},
281
+ 6: {message:"InsufficientNativeFee"},
282
+ 7: {message:"InsufficientZROFee"},
283
+ 8: {message:"InvalidExpiry"},
284
+ 9: {message:"InvalidIndex"},
285
+ 10: {message:"InvalidNonce"},
286
+ 11: {message:"InvalidPayloadHash"},
287
+ 12: {message:"InvalidReceiveLibrary"},
288
+ 13: {message:"OnlyNonDefaultLib"},
289
+ 14: {message:"OnlyReceiveLib"},
290
+ 15: {message:"OnlyRegisteredLib"},
291
+ 16: {message:"OnlySendLib"},
292
+ 17: {message:"PathNotInitializable"},
293
+ 18: {message:"PathNotVerifiable"},
294
+ 19: {message:"PayloadHashNotFound"},
295
+ 20: {message:"SameValue"},
296
+ 21: {message:"Unauthorized"},
297
+ 22: {message:"UnsupportedEid"},
298
+ 23: {message:"ZeroZROFee"},
299
+ 24: {message:"ZROUnavailable"}
300
+ }
301
+
302
+ export const BufferReaderError = {
303
+ 10000: {message:"InvalidLength"},
304
+ 10001: {message:"InvalidAddressPayload"}
305
+ }
306
+
307
+ export const BufferWriterError = {
308
+ 10100: {message:"InvalidAddressPayload"}
309
+ }
310
+
311
+ export const TtlError = {
312
+ 10200: {message:"InvalidTtlConfig"},
313
+ 10201: {message:"TtlConfigFrozen"},
314
+ 10202: {message:"TtlConfigAlreadyFrozen"}
315
+ }
316
+
317
+ export const OwnableError = {
318
+ 10300: {message:"OwnerAlreadySet"},
319
+ 10301: {message:"OwnerNotSet"}
320
+ }
321
+
322
+ export const BytesExtError = {
323
+ 10400: {message:"LengthMismatch"}
324
+ }
325
+
326
+
327
+
328
+ export type DefaultOwnableStorage = {tag: "Owner", values: void};
329
+
330
+
331
+ /**
332
+ * A pair of TTL values: threshold (when to trigger extension) and extend_to (target TTL).
333
+ */
334
+ export interface TtlConfig {
335
+ /**
336
+ * Target TTL after extension (in ledgers).
337
+ */
338
+ extend_to: u32;
339
+ /**
340
+ * TTL threshold that triggers extension (in ledgers).
341
+ */
342
+ threshold: u32;
343
+ }
344
+
345
+ export type TtlConfigData = {tag: "Frozen", values: void} | {tag: "Instance", values: void} | {tag: "Persistent", values: void} | {tag: "Temporary", values: void};
346
+
347
+ export interface Client {
348
+ /**
349
+ * Construct and simulate a send_compose transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
350
+ * Sends a composed message from an OApp to a composer.
351
+ *
352
+ * The composer MUST assert the sender because anyone can send compose msg with this function.
353
+ * With the same GUID, the OApp can send compose to multiple composers at the same time.
354
+ */
355
+ send_compose: ({from, to, guid, index, message}: {from: string, to: string, guid: Buffer, index: u32, message: Buffer}, txnOptions?: {
356
+ /**
357
+ * The fee to pay for the transaction. Default: BASE_FEE
358
+ */
359
+ fee?: number;
360
+
361
+ /**
362
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
363
+ */
364
+ timeoutInSeconds?: number;
365
+
366
+ /**
367
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
368
+ */
369
+ simulate?: boolean;
370
+ }) => Promise<AssembledTransaction<null>>
371
+
372
+ /**
373
+ * Construct and simulate a clear_compose transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
374
+ * Clears a composed message by the composer.
375
+ *
376
+ * This is a PULL mode versus the PUSH mode of `lz_compose`.
377
+ */
378
+ clear_compose: ({composer, from, guid, index, message}: {composer: string, from: string, guid: Buffer, index: u32, message: Buffer}, txnOptions?: {
379
+ /**
380
+ * The fee to pay for the transaction. Default: BASE_FEE
381
+ */
382
+ fee?: number;
383
+
384
+ /**
385
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
386
+ */
387
+ timeoutInSeconds?: number;
388
+
389
+ /**
390
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
391
+ */
392
+ simulate?: boolean;
393
+ }) => Promise<AssembledTransaction<null>>
394
+
395
+ /**
396
+ * Construct and simulate a lz_compose_alert transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
397
+ * Emits an alert event when `lz_compose` execution fails.
398
+ *
399
+ * Called by the executor to notify about failed compose message delivery attempts.
400
+ */
401
+ lz_compose_alert: ({executor, from, to, guid, index, gas, value, message, extra_data, reason}: {executor: string, from: string, to: string, guid: Buffer, index: u32, gas: i128, value: i128, message: Buffer, extra_data: Buffer, reason: Buffer}, txnOptions?: {
402
+ /**
403
+ * The fee to pay for the transaction. Default: BASE_FEE
404
+ */
405
+ fee?: number;
406
+
407
+ /**
408
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
409
+ */
410
+ timeoutInSeconds?: number;
411
+
412
+ /**
413
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
414
+ */
415
+ simulate?: boolean;
416
+ }) => Promise<AssembledTransaction<null>>
417
+
418
+ /**
419
+ * Construct and simulate a compose_queue transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
420
+ * Returns the stored hash for a composed message, or `None` if not queued.
421
+ */
422
+ compose_queue: ({from, to, guid, index}: {from: string, to: string, guid: Buffer, index: u32}, txnOptions?: {
423
+ /**
424
+ * The fee to pay for the transaction. Default: BASE_FEE
425
+ */
426
+ fee?: number;
427
+
428
+ /**
429
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
430
+ */
431
+ timeoutInSeconds?: number;
432
+
433
+ /**
434
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
435
+ */
436
+ simulate?: boolean;
437
+ }) => Promise<AssembledTransaction<Option<Buffer>>>
438
+
439
+ /**
440
+ * Construct and simulate a skip transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
441
+ * Skips the next expected inbound nonce without verifying.
442
+ *
443
+ * The nonce to skip must be the next expected nonce.
444
+ */
445
+ skip: ({caller, receiver, src_eid, sender, nonce}: {caller: string, receiver: string, src_eid: u32, sender: Buffer, nonce: u64}, txnOptions?: {
446
+ /**
447
+ * The fee to pay for the transaction. Default: BASE_FEE
448
+ */
449
+ fee?: number;
450
+
451
+ /**
452
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
453
+ */
454
+ timeoutInSeconds?: number;
455
+
456
+ /**
457
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
458
+ */
459
+ simulate?: boolean;
460
+ }) => Promise<AssembledTransaction<null>>
461
+
462
+ /**
463
+ * Construct and simulate a nilify transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
464
+ * Marks a packet as verified, but disallows execution until it is re-verified.
465
+ *
466
+ * Requires the payload hash not been executed.
467
+ */
468
+ nilify: ({caller, receiver, src_eid, sender, nonce, payload_hash}: {caller: string, receiver: string, src_eid: u32, sender: Buffer, nonce: u64, payload_hash: Option<Buffer>}, txnOptions?: {
469
+ /**
470
+ * The fee to pay for the transaction. Default: BASE_FEE
471
+ */
472
+ fee?: number;
473
+
474
+ /**
475
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
476
+ */
477
+ timeoutInSeconds?: number;
478
+
479
+ /**
480
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
481
+ */
482
+ simulate?: boolean;
483
+ }) => Promise<AssembledTransaction<null>>
484
+
485
+ /**
486
+ * Construct and simulate a burn transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
487
+ * Marks a nonce as unexecutable and un-verifiable. The nonce can never be re-verified or executed.
488
+ */
489
+ burn: ({caller, receiver, src_eid, sender, nonce, payload_hash}: {caller: string, receiver: string, src_eid: u32, sender: Buffer, nonce: u64, payload_hash: Buffer}, txnOptions?: {
490
+ /**
491
+ * The fee to pay for the transaction. Default: BASE_FEE
492
+ */
493
+ fee?: number;
494
+
495
+ /**
496
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
497
+ */
498
+ timeoutInSeconds?: number;
499
+
500
+ /**
501
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
502
+ */
503
+ simulate?: boolean;
504
+ }) => Promise<AssembledTransaction<null>>
505
+
506
+ /**
507
+ * Construct and simulate a next_guid transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
508
+ * Generates the next GUID for an outbound packet.
509
+ */
510
+ next_guid: ({sender, dst_eid, receiver}: {sender: string, dst_eid: u32, receiver: Buffer}, txnOptions?: {
511
+ /**
512
+ * The fee to pay for the transaction. Default: BASE_FEE
513
+ */
514
+ fee?: number;
515
+
516
+ /**
517
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
518
+ */
519
+ timeoutInSeconds?: number;
520
+
521
+ /**
522
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
523
+ */
524
+ simulate?: boolean;
525
+ }) => Promise<AssembledTransaction<Buffer>>
526
+
527
+ /**
528
+ * Construct and simulate a outbound_nonce transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
529
+ * Returns the current outbound nonce for a specific destination.
530
+ */
531
+ outbound_nonce: ({sender, dst_eid, receiver}: {sender: string, dst_eid: u32, receiver: Buffer}, txnOptions?: {
532
+ /**
533
+ * The fee to pay for the transaction. Default: BASE_FEE
534
+ */
535
+ fee?: number;
536
+
537
+ /**
538
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
539
+ */
540
+ timeoutInSeconds?: number;
541
+
542
+ /**
543
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
544
+ */
545
+ simulate?: boolean;
546
+ }) => Promise<AssembledTransaction<u64>>
547
+
548
+ /**
549
+ * Construct and simulate a inbound_nonce transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
550
+ * Returns the max index of the longest gapless sequence of verified message nonces.
551
+ *
552
+ * The uninitialized value is 0. The first nonce is always 1.
553
+ * It starts from the `lazy_inbound_nonce` (last checkpoint) and iteratively checks
554
+ * if the next nonce has been verified.
555
+ *
556
+ * Note: OApp explicitly skipped nonces count as "verified" for these purposes.
557
+ *
558
+ * Examples: `[1,2,3,4,6,7] => 4`, `[1,2,6,8,10] => 2`, `[1,3,4,5,6] => 1`
559
+ */
560
+ inbound_nonce: ({receiver, src_eid, sender}: {receiver: string, src_eid: u32, sender: Buffer}, txnOptions?: {
561
+ /**
562
+ * The fee to pay for the transaction. Default: BASE_FEE
563
+ */
564
+ fee?: number;
565
+
566
+ /**
567
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
568
+ */
569
+ timeoutInSeconds?: number;
570
+
571
+ /**
572
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
573
+ */
574
+ simulate?: boolean;
575
+ }) => Promise<AssembledTransaction<u64>>
576
+
577
+ /**
578
+ * Construct and simulate a lazy_inbound_nonce transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
579
+ * Returns the lazy inbound nonce (last checkpoint) for a specific path.
580
+ */
581
+ lazy_inbound_nonce: ({receiver, src_eid, sender}: {receiver: string, src_eid: u32, sender: Buffer}, txnOptions?: {
582
+ /**
583
+ * The fee to pay for the transaction. Default: BASE_FEE
584
+ */
585
+ fee?: number;
586
+
587
+ /**
588
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
589
+ */
590
+ timeoutInSeconds?: number;
591
+
592
+ /**
593
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
594
+ */
595
+ simulate?: boolean;
596
+ }) => Promise<AssembledTransaction<u64>>
597
+
598
+ /**
599
+ * Construct and simulate a inbound_payload_hash transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
600
+ * Returns the payload hash for a specific inbound nonce.
601
+ */
602
+ inbound_payload_hash: ({receiver, src_eid, sender, nonce}: {receiver: string, src_eid: u32, sender: Buffer, nonce: u64}, txnOptions?: {
603
+ /**
604
+ * The fee to pay for the transaction. Default: BASE_FEE
605
+ */
606
+ fee?: number;
607
+
608
+ /**
609
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
610
+ */
611
+ timeoutInSeconds?: number;
612
+
613
+ /**
614
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
615
+ */
616
+ simulate?: boolean;
617
+ }) => Promise<AssembledTransaction<Option<Buffer>>>
618
+
619
+ /**
620
+ * Construct and simulate a register_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
621
+ * Registers a new message library with the endpoint.
622
+ */
623
+ register_library: ({new_lib}: {new_lib: string}, txnOptions?: {
624
+ /**
625
+ * The fee to pay for the transaction. Default: BASE_FEE
626
+ */
627
+ fee?: number;
628
+
629
+ /**
630
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
631
+ */
632
+ timeoutInSeconds?: number;
633
+
634
+ /**
635
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
636
+ */
637
+ simulate?: boolean;
638
+ }) => Promise<AssembledTransaction<null>>
639
+
640
+ /**
641
+ * Construct and simulate a set_default_send_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
642
+ * Sets the default send library for a destination endpoint.
643
+ */
644
+ set_default_send_library: ({dst_eid, new_lib}: {dst_eid: u32, new_lib: string}, txnOptions?: {
645
+ /**
646
+ * The fee to pay for the transaction. Default: BASE_FEE
647
+ */
648
+ fee?: number;
649
+
650
+ /**
651
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
652
+ */
653
+ timeoutInSeconds?: number;
654
+
655
+ /**
656
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
657
+ */
658
+ simulate?: boolean;
659
+ }) => Promise<AssembledTransaction<null>>
660
+
661
+ /**
662
+ * Construct and simulate a set_default_receive_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
663
+ * Sets the default receive library for a source endpoint.
664
+ *
665
+ * If a grace period is provided and there was a previous library, the old library
666
+ * remains valid until the grace period expires.
667
+ */
668
+ set_default_receive_library: ({src_eid, new_lib, grace_period}: {src_eid: u32, new_lib: string, grace_period: u64}, txnOptions?: {
669
+ /**
670
+ * The fee to pay for the transaction. Default: BASE_FEE
671
+ */
672
+ fee?: number;
673
+
674
+ /**
675
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
676
+ */
677
+ timeoutInSeconds?: number;
678
+
679
+ /**
680
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
681
+ */
682
+ simulate?: boolean;
683
+ }) => Promise<AssembledTransaction<null>>
684
+
685
+ /**
686
+ * Construct and simulate a set_default_receive_lib_timeout transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
687
+ * Sets or removes the default receive library timeout for a source endpoint.
688
+ *
689
+ * If a timeout is provided, it must be valid and not expired. If no timeout is provided,
690
+ * the default receive library timeout is removed.
691
+ */
692
+ set_default_receive_lib_timeout: ({src_eid, timeout}: {src_eid: u32, timeout: Option<Timeout>}, txnOptions?: {
693
+ /**
694
+ * The fee to pay for the transaction. Default: BASE_FEE
695
+ */
696
+ fee?: number;
697
+
698
+ /**
699
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
700
+ */
701
+ timeoutInSeconds?: number;
702
+
703
+ /**
704
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
705
+ */
706
+ simulate?: boolean;
707
+ }) => Promise<AssembledTransaction<null>>
708
+
709
+ /**
710
+ * Construct and simulate a set_send_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
711
+ * Sets or removes a custom send library for an OApp to a specific destination endpoint.
712
+ */
713
+ set_send_library: ({caller, sender, dst_eid, new_lib}: {caller: string, sender: string, dst_eid: u32, new_lib: Option<string>}, txnOptions?: {
714
+ /**
715
+ * The fee to pay for the transaction. Default: BASE_FEE
716
+ */
717
+ fee?: number;
718
+
719
+ /**
720
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
721
+ */
722
+ timeoutInSeconds?: number;
723
+
724
+ /**
725
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
726
+ */
727
+ simulate?: boolean;
728
+ }) => Promise<AssembledTransaction<null>>
729
+
730
+ /**
731
+ * Construct and simulate a set_receive_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
732
+ * Sets or removes a custom receive library for an OApp to a specific source endpoint.
733
+ *
734
+ * If a grace period is provided and there was a previous library, the old library
735
+ * remains valid until the grace period expires.
736
+ */
737
+ set_receive_library: ({caller, receiver, src_eid, new_lib, grace_period}: {caller: string, receiver: string, src_eid: u32, new_lib: Option<string>, grace_period: u64}, txnOptions?: {
738
+ /**
739
+ * The fee to pay for the transaction. Default: BASE_FEE
740
+ */
741
+ fee?: number;
742
+
743
+ /**
744
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
745
+ */
746
+ timeoutInSeconds?: number;
747
+
748
+ /**
749
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
750
+ */
751
+ simulate?: boolean;
752
+ }) => Promise<AssembledTransaction<null>>
753
+
754
+ /**
755
+ * Construct and simulate a set_receive_library_timeout transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
756
+ * Sets or removes the custom receive library timeout for an OApp.
757
+ *
758
+ * Allows an OApp to extend or remove the validity period of a previously set library
759
+ * after switching to a new one.
760
+ */
761
+ set_receive_library_timeout: ({caller, receiver, src_eid, timeout}: {caller: string, receiver: string, src_eid: u32, timeout: Option<Timeout>}, txnOptions?: {
762
+ /**
763
+ * The fee to pay for the transaction. Default: BASE_FEE
764
+ */
765
+ fee?: number;
766
+
767
+ /**
768
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
769
+ */
770
+ timeoutInSeconds?: number;
771
+
772
+ /**
773
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
774
+ */
775
+ simulate?: boolean;
776
+ }) => Promise<AssembledTransaction<null>>
777
+
778
+ /**
779
+ * Construct and simulate a set_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
780
+ * Sets the configuration for a message library.
781
+ *
782
+ * Requires the caller to be the OApp or its delegate and the library to be registered.
783
+ */
784
+ set_config: ({caller, oapp, lib, params}: {caller: string, oapp: string, lib: string, params: Array<SetConfigParam>}, txnOptions?: {
785
+ /**
786
+ * The fee to pay for the transaction. Default: BASE_FEE
787
+ */
788
+ fee?: number;
789
+
790
+ /**
791
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
792
+ */
793
+ timeoutInSeconds?: number;
794
+
795
+ /**
796
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
797
+ */
798
+ simulate?: boolean;
799
+ }) => Promise<AssembledTransaction<null>>
800
+
801
+ /**
802
+ * Construct and simulate a is_registered_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
803
+ * Checks if a message library is registered.
804
+ */
805
+ is_registered_library: ({lib}: {lib: string}, txnOptions?: {
806
+ /**
807
+ * The fee to pay for the transaction. Default: BASE_FEE
808
+ */
809
+ fee?: number;
810
+
811
+ /**
812
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
813
+ */
814
+ timeoutInSeconds?: number;
815
+
816
+ /**
817
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
818
+ */
819
+ simulate?: boolean;
820
+ }) => Promise<AssembledTransaction<boolean>>
821
+
822
+ /**
823
+ * Construct and simulate a get_library_index transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
824
+ * Returns the index of a message library.
825
+ */
826
+ get_library_index: ({lib}: {lib: string}, txnOptions?: {
827
+ /**
828
+ * The fee to pay for the transaction. Default: BASE_FEE
829
+ */
830
+ fee?: number;
831
+
832
+ /**
833
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
834
+ */
835
+ timeoutInSeconds?: number;
836
+
837
+ /**
838
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
839
+ */
840
+ simulate?: boolean;
841
+ }) => Promise<AssembledTransaction<Option<u32>>>
842
+
843
+ /**
844
+ * Construct and simulate a registered_libraries_count transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
845
+ * Returns the number of registered message libraries.
846
+ */
847
+ registered_libraries_count: (txnOptions?: {
848
+ /**
849
+ * The fee to pay for the transaction. Default: BASE_FEE
850
+ */
851
+ fee?: number;
852
+
853
+ /**
854
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
855
+ */
856
+ timeoutInSeconds?: number;
857
+
858
+ /**
859
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
860
+ */
861
+ simulate?: boolean;
862
+ }) => Promise<AssembledTransaction<u32>>
863
+
864
+ /**
865
+ * Construct and simulate a get_registered_libraries transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
866
+ * Returns a list of registered message libraries within the specified range.
867
+ */
868
+ get_registered_libraries: ({start, max_count}: {start: u32, max_count: u32}, txnOptions?: {
869
+ /**
870
+ * The fee to pay for the transaction. Default: BASE_FEE
871
+ */
872
+ fee?: number;
873
+
874
+ /**
875
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
876
+ */
877
+ timeoutInSeconds?: number;
878
+
879
+ /**
880
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
881
+ */
882
+ simulate?: boolean;
883
+ }) => Promise<AssembledTransaction<Array<string>>>
884
+
885
+ /**
886
+ * Construct and simulate a is_supported_eid transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
887
+ * Checks if an endpoint ID is supported.
888
+ * Returns true only if both the default send/receive libraries are set for the given eid
889
+ */
890
+ is_supported_eid: ({eid}: {eid: u32}, txnOptions?: {
891
+ /**
892
+ * The fee to pay for the transaction. Default: BASE_FEE
893
+ */
894
+ fee?: number;
895
+
896
+ /**
897
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
898
+ */
899
+ timeoutInSeconds?: number;
900
+
901
+ /**
902
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
903
+ */
904
+ simulate?: boolean;
905
+ }) => Promise<AssembledTransaction<boolean>>
906
+
907
+ /**
908
+ * Construct and simulate a default_send_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
909
+ * Returns the default send library for a destination endpoint.
910
+ */
911
+ default_send_library: ({dst_eid}: {dst_eid: u32}, txnOptions?: {
912
+ /**
913
+ * The fee to pay for the transaction. Default: BASE_FEE
914
+ */
915
+ fee?: number;
916
+
917
+ /**
918
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
919
+ */
920
+ timeoutInSeconds?: number;
921
+
922
+ /**
923
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
924
+ */
925
+ simulate?: boolean;
926
+ }) => Promise<AssembledTransaction<Option<string>>>
927
+
928
+ /**
929
+ * Construct and simulate a default_receive_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
930
+ * Returns the default receive library for a source endpoint.
931
+ */
932
+ default_receive_library: ({src_eid}: {src_eid: u32}, txnOptions?: {
933
+ /**
934
+ * The fee to pay for the transaction. Default: BASE_FEE
935
+ */
936
+ fee?: number;
937
+
938
+ /**
939
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
940
+ */
941
+ timeoutInSeconds?: number;
942
+
943
+ /**
944
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
945
+ */
946
+ simulate?: boolean;
947
+ }) => Promise<AssembledTransaction<Option<string>>>
948
+
949
+ /**
950
+ * Construct and simulate a default_receive_library_timeout transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
951
+ * Returns the default receive library timeout for a source endpoint.
952
+ */
953
+ default_receive_library_timeout: ({src_eid}: {src_eid: u32}, txnOptions?: {
954
+ /**
955
+ * The fee to pay for the transaction. Default: BASE_FEE
956
+ */
957
+ fee?: number;
958
+
959
+ /**
960
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
961
+ */
962
+ timeoutInSeconds?: number;
963
+
964
+ /**
965
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
966
+ */
967
+ simulate?: boolean;
968
+ }) => Promise<AssembledTransaction<Option<Timeout>>>
969
+
970
+ /**
971
+ * Construct and simulate a get_send_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
972
+ * Returns the effective send library for an OApp and destination endpoint.
973
+ */
974
+ get_send_library: ({sender, dst_eid}: {sender: string, dst_eid: u32}, txnOptions?: {
975
+ /**
976
+ * The fee to pay for the transaction. Default: BASE_FEE
977
+ */
978
+ fee?: number;
979
+
980
+ /**
981
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
982
+ */
983
+ timeoutInSeconds?: number;
984
+
985
+ /**
986
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
987
+ */
988
+ simulate?: boolean;
989
+ }) => Promise<AssembledTransaction<ResolvedLibrary>>
990
+
991
+ /**
992
+ * Construct and simulate a get_receive_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
993
+ * Returns the effective receive library for an OApp and source endpoint.
994
+ */
995
+ get_receive_library: ({receiver, src_eid}: {receiver: string, src_eid: u32}, txnOptions?: {
996
+ /**
997
+ * The fee to pay for the transaction. Default: BASE_FEE
998
+ */
999
+ fee?: number;
1000
+
1001
+ /**
1002
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1003
+ */
1004
+ timeoutInSeconds?: number;
1005
+
1006
+ /**
1007
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1008
+ */
1009
+ simulate?: boolean;
1010
+ }) => Promise<AssembledTransaction<ResolvedLibrary>>
1011
+
1012
+ /**
1013
+ * Construct and simulate a receive_library_timeout transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1014
+ * Returns the receive library timeout for an OApp and source endpoint.
1015
+ */
1016
+ receive_library_timeout: ({receiver, src_eid}: {receiver: string, src_eid: u32}, txnOptions?: {
1017
+ /**
1018
+ * The fee to pay for the transaction. Default: BASE_FEE
1019
+ */
1020
+ fee?: number;
1021
+
1022
+ /**
1023
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1024
+ */
1025
+ timeoutInSeconds?: number;
1026
+
1027
+ /**
1028
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1029
+ */
1030
+ simulate?: boolean;
1031
+ }) => Promise<AssembledTransaction<Option<Timeout>>>
1032
+
1033
+ /**
1034
+ * Construct and simulate a is_valid_receive_library transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1035
+ * Checks if a receive library is valid for an OApp and source endpoint.
1036
+ */
1037
+ is_valid_receive_library: ({receiver, src_eid, actual_lib}: {receiver: string, src_eid: u32, actual_lib: string}, txnOptions?: {
1038
+ /**
1039
+ * The fee to pay for the transaction. Default: BASE_FEE
1040
+ */
1041
+ fee?: number;
1042
+
1043
+ /**
1044
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1045
+ */
1046
+ timeoutInSeconds?: number;
1047
+
1048
+ /**
1049
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1050
+ */
1051
+ simulate?: boolean;
1052
+ }) => Promise<AssembledTransaction<boolean>>
1053
+
1054
+ /**
1055
+ * Construct and simulate a get_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1056
+ * Returns the configuration for a message library for a specific endpoint ID and configuration type.
1057
+ */
1058
+ get_config: ({oapp, lib, eid, config_type}: {oapp: string, lib: string, eid: u32, config_type: u32}, txnOptions?: {
1059
+ /**
1060
+ * The fee to pay for the transaction. Default: BASE_FEE
1061
+ */
1062
+ fee?: number;
1063
+
1064
+ /**
1065
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1066
+ */
1067
+ timeoutInSeconds?: number;
1068
+
1069
+ /**
1070
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1071
+ */
1072
+ simulate?: boolean;
1073
+ }) => Promise<AssembledTransaction<Buffer>>
1074
+
1075
+ /**
1076
+ * Construct and simulate a quote transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1077
+ * Quotes the messaging fee for sending a cross-chain message.
1078
+ */
1079
+ quote: ({sender, params}: {sender: string, params: MessagingParams}, txnOptions?: {
1080
+ /**
1081
+ * The fee to pay for the transaction. Default: BASE_FEE
1082
+ */
1083
+ fee?: number;
1084
+
1085
+ /**
1086
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1087
+ */
1088
+ timeoutInSeconds?: number;
1089
+
1090
+ /**
1091
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1092
+ */
1093
+ simulate?: boolean;
1094
+ }) => Promise<AssembledTransaction<MessagingFee>>
1095
+
1096
+ /**
1097
+ * Construct and simulate a send transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1098
+ * Sends a cross-chain message to a destination endpoint.
1099
+ *
1100
+ * OApp sender needs to transfer the fees to the endpoint before sending the message
1101
+ */
1102
+ send: ({sender, params, refund_address}: {sender: string, params: MessagingParams, refund_address: string}, txnOptions?: {
1103
+ /**
1104
+ * The fee to pay for the transaction. Default: BASE_FEE
1105
+ */
1106
+ fee?: number;
1107
+
1108
+ /**
1109
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1110
+ */
1111
+ timeoutInSeconds?: number;
1112
+
1113
+ /**
1114
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1115
+ */
1116
+ simulate?: boolean;
1117
+ }) => Promise<AssembledTransaction<MessagingReceipt>>
1118
+
1119
+ /**
1120
+ * Construct and simulate a verify transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1121
+ * Verifies an inbound cross-chain message from a configured receive library.
1122
+ */
1123
+ verify: ({receive_lib, origin, receiver, payload_hash}: {receive_lib: string, origin: Origin, receiver: string, payload_hash: Buffer}, txnOptions?: {
1124
+ /**
1125
+ * The fee to pay for the transaction. Default: BASE_FEE
1126
+ */
1127
+ fee?: number;
1128
+
1129
+ /**
1130
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1131
+ */
1132
+ timeoutInSeconds?: number;
1133
+
1134
+ /**
1135
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1136
+ */
1137
+ simulate?: boolean;
1138
+ }) => Promise<AssembledTransaction<null>>
1139
+
1140
+ /**
1141
+ * Construct and simulate a clear transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1142
+ * Clears a verified message from the endpoint.
1143
+ *
1144
+ * This is a PULL mode versus the PUSH mode of `lz_receive`.
1145
+ */
1146
+ clear: ({caller, origin, receiver, guid, message}: {caller: string, origin: Origin, receiver: string, guid: Buffer, message: Buffer}, txnOptions?: {
1147
+ /**
1148
+ * The fee to pay for the transaction. Default: BASE_FEE
1149
+ */
1150
+ fee?: number;
1151
+
1152
+ /**
1153
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1154
+ */
1155
+ timeoutInSeconds?: number;
1156
+
1157
+ /**
1158
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1159
+ */
1160
+ simulate?: boolean;
1161
+ }) => Promise<AssembledTransaction<null>>
1162
+
1163
+ /**
1164
+ * Construct and simulate a lz_receive_alert transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1165
+ * Emits an alert event when `lz_receive` execution fails.
1166
+ *
1167
+ * Called by the executor to notify about failed message delivery attempts.
1168
+ */
1169
+ lz_receive_alert: ({executor, origin, receiver, guid, gas, value, message, extra_data, reason}: {executor: string, origin: Origin, receiver: string, guid: Buffer, gas: i128, value: i128, message: Buffer, extra_data: Buffer, reason: Buffer}, txnOptions?: {
1170
+ /**
1171
+ * The fee to pay for the transaction. Default: BASE_FEE
1172
+ */
1173
+ fee?: number;
1174
+
1175
+ /**
1176
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1177
+ */
1178
+ timeoutInSeconds?: number;
1179
+
1180
+ /**
1181
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1182
+ */
1183
+ simulate?: boolean;
1184
+ }) => Promise<AssembledTransaction<null>>
1185
+
1186
+ /**
1187
+ * Construct and simulate a set_zro transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1188
+ * Sets the ZRO token address for fee payments.
1189
+ */
1190
+ set_zro: ({zro}: {zro: string}, txnOptions?: {
1191
+ /**
1192
+ * The fee to pay for the transaction. Default: BASE_FEE
1193
+ */
1194
+ fee?: number;
1195
+
1196
+ /**
1197
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1198
+ */
1199
+ timeoutInSeconds?: number;
1200
+
1201
+ /**
1202
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1203
+ */
1204
+ simulate?: boolean;
1205
+ }) => Promise<AssembledTransaction<null>>
1206
+
1207
+ /**
1208
+ * Construct and simulate a set_delegate transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1209
+ * Sets or removes a delegate address that can act on behalf of the OApp.
1210
+ */
1211
+ set_delegate: ({oapp, new_delegate}: {oapp: string, new_delegate: Option<string>}, txnOptions?: {
1212
+ /**
1213
+ * The fee to pay for the transaction. Default: BASE_FEE
1214
+ */
1215
+ fee?: number;
1216
+
1217
+ /**
1218
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1219
+ */
1220
+ timeoutInSeconds?: number;
1221
+
1222
+ /**
1223
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1224
+ */
1225
+ simulate?: boolean;
1226
+ }) => Promise<AssembledTransaction<null>>
1227
+
1228
+ /**
1229
+ * Construct and simulate a eid transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1230
+ * Returns the endpoint ID.
1231
+ */
1232
+ eid: (txnOptions?: {
1233
+ /**
1234
+ * The fee to pay for the transaction. Default: BASE_FEE
1235
+ */
1236
+ fee?: number;
1237
+
1238
+ /**
1239
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1240
+ */
1241
+ timeoutInSeconds?: number;
1242
+
1243
+ /**
1244
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1245
+ */
1246
+ simulate?: boolean;
1247
+ }) => Promise<AssembledTransaction<u32>>
1248
+
1249
+ /**
1250
+ * Construct and simulate a initializable transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1251
+ * Checks if a messaging path can be/has been initialized for the given origin and receiver.
1252
+ */
1253
+ initializable: ({origin, receiver}: {origin: Origin, receiver: string}, txnOptions?: {
1254
+ /**
1255
+ * The fee to pay for the transaction. Default: BASE_FEE
1256
+ */
1257
+ fee?: number;
1258
+
1259
+ /**
1260
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1261
+ */
1262
+ timeoutInSeconds?: number;
1263
+
1264
+ /**
1265
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1266
+ */
1267
+ simulate?: boolean;
1268
+ }) => Promise<AssembledTransaction<boolean>>
1269
+
1270
+ /**
1271
+ * Construct and simulate a verifiable transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1272
+ * Checks if a message can be verified for the given origin and receiver.
1273
+ */
1274
+ verifiable: ({origin, receiver}: {origin: Origin, receiver: string}, txnOptions?: {
1275
+ /**
1276
+ * The fee to pay for the transaction. Default: BASE_FEE
1277
+ */
1278
+ fee?: number;
1279
+
1280
+ /**
1281
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1282
+ */
1283
+ timeoutInSeconds?: number;
1284
+
1285
+ /**
1286
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1287
+ */
1288
+ simulate?: boolean;
1289
+ }) => Promise<AssembledTransaction<boolean>>
1290
+
1291
+ /**
1292
+ * Construct and simulate a native_token transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1293
+ * Returns the native token address used for fee payments.
1294
+ */
1295
+ native_token: (txnOptions?: {
1296
+ /**
1297
+ * The fee to pay for the transaction. Default: BASE_FEE
1298
+ */
1299
+ fee?: number;
1300
+
1301
+ /**
1302
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1303
+ */
1304
+ timeoutInSeconds?: number;
1305
+
1306
+ /**
1307
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1308
+ */
1309
+ simulate?: boolean;
1310
+ }) => Promise<AssembledTransaction<string>>
1311
+
1312
+ /**
1313
+ * Construct and simulate a zro transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1314
+ * Returns the ZRO token address if set.
1315
+ */
1316
+ zro: (txnOptions?: {
1317
+ /**
1318
+ * The fee to pay for the transaction. Default: BASE_FEE
1319
+ */
1320
+ fee?: number;
1321
+
1322
+ /**
1323
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1324
+ */
1325
+ timeoutInSeconds?: number;
1326
+
1327
+ /**
1328
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1329
+ */
1330
+ simulate?: boolean;
1331
+ }) => Promise<AssembledTransaction<Option<string>>>
1332
+
1333
+ /**
1334
+ * Construct and simulate a delegate transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1335
+ * Returns the delegate address for an OApp if set.
1336
+ */
1337
+ delegate: ({oapp}: {oapp: string}, txnOptions?: {
1338
+ /**
1339
+ * The fee to pay for the transaction. Default: BASE_FEE
1340
+ */
1341
+ fee?: number;
1342
+
1343
+ /**
1344
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1345
+ */
1346
+ timeoutInSeconds?: number;
1347
+
1348
+ /**
1349
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1350
+ */
1351
+ simulate?: boolean;
1352
+ }) => Promise<AssembledTransaction<Option<string>>>
1353
+
1354
+ /**
1355
+ * Construct and simulate a recover_token transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1356
+ * Recovers tokens sent to this contract by mistake.
1357
+ *
1358
+ * # Arguments
1359
+ * * `token` - The token address to recover
1360
+ * * `to` - The address to send the token to
1361
+ * * `amount` - The amount to send
1362
+ */
1363
+ recover_token: ({token, to, amount}: {token: string, to: string, amount: i128}, txnOptions?: {
1364
+ /**
1365
+ * The fee to pay for the transaction. Default: BASE_FEE
1366
+ */
1367
+ fee?: number;
1368
+
1369
+ /**
1370
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1371
+ */
1372
+ timeoutInSeconds?: number;
1373
+
1374
+ /**
1375
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1376
+ */
1377
+ simulate?: boolean;
1378
+ }) => Promise<AssembledTransaction<null>>
1379
+
1380
+ /**
1381
+ * Construct and simulate a owner transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1382
+ */
1383
+ owner: (txnOptions?: {
1384
+ /**
1385
+ * The fee to pay for the transaction. Default: BASE_FEE
1386
+ */
1387
+ fee?: number;
1388
+
1389
+ /**
1390
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1391
+ */
1392
+ timeoutInSeconds?: number;
1393
+
1394
+ /**
1395
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1396
+ */
1397
+ simulate?: boolean;
1398
+ }) => Promise<AssembledTransaction<Option<string>>>
1399
+
1400
+ /**
1401
+ * Construct and simulate a transfer_ownership transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1402
+ */
1403
+ transfer_ownership: ({new_owner}: {new_owner: string}, txnOptions?: {
1404
+ /**
1405
+ * The fee to pay for the transaction. Default: BASE_FEE
1406
+ */
1407
+ fee?: number;
1408
+
1409
+ /**
1410
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1411
+ */
1412
+ timeoutInSeconds?: number;
1413
+
1414
+ /**
1415
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1416
+ */
1417
+ simulate?: boolean;
1418
+ }) => Promise<AssembledTransaction<null>>
1419
+
1420
+ /**
1421
+ * Construct and simulate a renounce_ownership transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1422
+ */
1423
+ renounce_ownership: (txnOptions?: {
1424
+ /**
1425
+ * The fee to pay for the transaction. Default: BASE_FEE
1426
+ */
1427
+ fee?: number;
1428
+
1429
+ /**
1430
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1431
+ */
1432
+ timeoutInSeconds?: number;
1433
+
1434
+ /**
1435
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1436
+ */
1437
+ simulate?: boolean;
1438
+ }) => Promise<AssembledTransaction<null>>
1439
+
1440
+ /**
1441
+ * Construct and simulate a set_ttl_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1442
+ */
1443
+ set_ttl_config: ({instance, persistent, temporary}: {instance: Option<TtlConfig>, persistent: Option<TtlConfig>, temporary: Option<TtlConfig>}, txnOptions?: {
1444
+ /**
1445
+ * The fee to pay for the transaction. Default: BASE_FEE
1446
+ */
1447
+ fee?: number;
1448
+
1449
+ /**
1450
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1451
+ */
1452
+ timeoutInSeconds?: number;
1453
+
1454
+ /**
1455
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1456
+ */
1457
+ simulate?: boolean;
1458
+ }) => Promise<AssembledTransaction<null>>
1459
+
1460
+ /**
1461
+ * Construct and simulate a ttl_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1462
+ */
1463
+ ttl_config: (txnOptions?: {
1464
+ /**
1465
+ * The fee to pay for the transaction. Default: BASE_FEE
1466
+ */
1467
+ fee?: number;
1468
+
1469
+ /**
1470
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1471
+ */
1472
+ timeoutInSeconds?: number;
1473
+
1474
+ /**
1475
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1476
+ */
1477
+ simulate?: boolean;
1478
+ }) => Promise<AssembledTransaction<readonly [Option<TtlConfig>, Option<TtlConfig>, Option<TtlConfig>]>>
1479
+
1480
+ /**
1481
+ * Construct and simulate a freeze_ttl_config transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1482
+ */
1483
+ freeze_ttl_config: (txnOptions?: {
1484
+ /**
1485
+ * The fee to pay for the transaction. Default: BASE_FEE
1486
+ */
1487
+ fee?: number;
1488
+
1489
+ /**
1490
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1491
+ */
1492
+ timeoutInSeconds?: number;
1493
+
1494
+ /**
1495
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1496
+ */
1497
+ simulate?: boolean;
1498
+ }) => Promise<AssembledTransaction<null>>
1499
+
1500
+ /**
1501
+ * Construct and simulate a is_ttl_config_frozen transaction. Returns an `AssembledTransaction` object which will have a `result` field containing the result of the simulation. If this transaction changes contract state, you will need to call `signAndSend()` on the returned object.
1502
+ */
1503
+ is_ttl_config_frozen: (txnOptions?: {
1504
+ /**
1505
+ * The fee to pay for the transaction. Default: BASE_FEE
1506
+ */
1507
+ fee?: number;
1508
+
1509
+ /**
1510
+ * The maximum amount of time to wait for the transaction to complete. Default: DEFAULT_TIMEOUT
1511
+ */
1512
+ timeoutInSeconds?: number;
1513
+
1514
+ /**
1515
+ * Whether to automatically simulate the transaction when constructing the AssembledTransaction. Default: true
1516
+ */
1517
+ simulate?: boolean;
1518
+ }) => Promise<AssembledTransaction<boolean>>
1519
+
1520
+ }
1521
+ export class Client extends ContractClient {
1522
+ static async deploy<T = Client>(
1523
+ /** Constructor/Initialization Args for the contract's `__constructor` method */
1524
+ {owner}: {owner: string},
1525
+ /** Options for initializing a Client as well as for calling a method, with extras specific to deploying. */
1526
+ options: MethodOptions &
1527
+ Omit<ContractClientOptions, "contractId"> & {
1528
+ /** The hash of the Wasm blob, which must already be installed on-chain. */
1529
+ wasmHash: Buffer | string;
1530
+ /** Salt used to generate the contract's ID. Passed through to {@link Operation.createCustomContract}. Default: random. */
1531
+ salt?: Buffer | Uint8Array;
1532
+ /** The format used to decode `wasmHash`, if it's provided as a string. */
1533
+ format?: "hex" | "base64";
1534
+ }
1535
+ ): Promise<AssembledTransaction<T>> {
1536
+ return ContractClient.deploy({owner}, options)
1537
+ }
1538
+ constructor(public readonly options: ContractClientOptions) {
1539
+ super(
1540
+ new ContractSpec([ "AAAAAQAAAC1QYXJhbWV0ZXJzIGZvciBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAAD01lc3NhZ2luZ1BhcmFtcwAAAAAFAAAAK0Rlc3RpbmF0aW9uIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAB2RzdF9laWQAAAAABAAAABxUaGUgbWVzc2FnZSBwYXlsb2FkIHRvIHNlbmQuAAAAB21lc3NhZ2UAAAAADgAAACFFbmNvZGVkIGV4ZWN1dG9yIGFuZCBEVk4gb3B0aW9ucy4AAAAAAAAHb3B0aW9ucwAAAAAOAAAAOVdoZXRoZXIgdG8gcGF5IGZlZXMgaW4gWlJPIHRva2VuIGluc3RlYWQgb2YgbmF0aXZlIHRva2VuLgAAAAAAAApwYXlfaW5fenJvAAAAAAABAAAANVJlY2VpdmVyIGFkZHJlc3Mgb24gdGhlIGRlc3RpbmF0aW9uIGNoYWluICgzMiBieXRlcykuAAAAAAAACHJlY2VpdmVyAAAD7gAAACA=",
1541
+ "AAAAAQAAAE1Tb3VyY2UgbWVzc2FnZSBpbmZvcm1hdGlvbiBpZGVudGlmeWluZyB3aGVyZSBhIGNyb3NzLWNoYWluIG1lc3NhZ2UgY2FtZSBmcm9tLgAAAAAAAAAAAAAGT3JpZ2luAAAAAAADAAAAF05vbmNlIGZvciB0aGlzIHBhdGh3YXkuAAAAAAVub25jZQAAAAAAAAYAAAAuU2VuZGVyIGFkZHJlc3Mgb24gdGhlIHNvdXJjZSBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAAmU291cmNlIGVuZHBvaW50IElEIChjaGFpbiBpZGVudGlmaWVyKS4AAAAAAAdzcmNfZWlkAAAAAAQ=",
1542
+ "AAAAAQAAAChGZWUgc3RydWN0dXJlIGZvciBjcm9zcy1jaGFpbiBtZXNzYWdpbmcuAAAAAAAAAAxNZXNzYWdpbmdGZWUAAAACAAAAH0ZlZSBwYWlkIGluIG5hdGl2ZSB0b2tlbiAoWExNKS4AAAAACm5hdGl2ZV9mZWUAAAAAAAsAAAAoRmVlIHBhaWQgaW4gWlJPIHRva2VuIChMYXllclplcm8gdG9rZW4pLgAAAAd6cm9fZmVlAAAAAAs=",
1543
+ "AAAAAQAAAEJSZWNlaXB0IHJldHVybmVkIGFmdGVyIHN1Y2Nlc3NmdWxseSBzZW5kaW5nIGEgY3Jvc3MtY2hhaW4gbWVzc2FnZS4AAAAAAAAAAAAQTWVzc2FnaW5nUmVjZWlwdAAAAAMAAAApVGhlIGZlZXMgY2hhcmdlZCBmb3Igc2VuZGluZyB0aGUgbWVzc2FnZS4AAAAAAAADZmVlAAAAB9AAAAAMTWVzc2FnaW5nRmVlAAAAK0dsb2JhbGx5IHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGUgbWVzc2FnZS4AAAAABGd1aWQAAAPuAAAAIAAAACRUaGUgb3V0Ym91bmQgbm9uY2UgZm9yIHRoaXMgcGF0aHdheS4AAAAFbm9uY2UAAAAAAAAG",
1544
+ "AAAAAgAAADhUeXBlIG9mIG1lc3NhZ2UgbGlicmFyeSBpbmRpY2F0aW5nIHN1cHBvcnRlZCBvcGVyYXRpb25zLgAAAAAAAAAOTWVzc2FnZUxpYlR5cGUAAAAAAAMAAAAAAAAAH1N1cHBvcnRzIG9ubHkgc2VuZGluZyBtZXNzYWdlcy4AAAAABFNlbmQAAAAAAAAAIVN1cHBvcnRzIG9ubHkgcmVjZWl2aW5nIG1lc3NhZ2VzLgAAAAAAAAdSZWNlaXZlAAAAAAAAAAAtU3VwcG9ydHMgYm90aCBzZW5kaW5nIGFuZCByZWNlaXZpbmcgbWVzc2FnZXMuAAAAAAAADlNlbmRBbmRSZWNlaXZlAAA=",
1545
+ "AAAAAQAAALdWZXJzaW9uIGluZm9ybWF0aW9uIGZvciBhIG1lc3NhZ2UgbGlicmFyeS4KCk5vdGU6IGBtaW5vcmAgYW5kIGBlbmRwb2ludF92ZXJzaW9uYCB1c2UgYHUzMmAgaW5zdGVhZCBvZiBgdThgIGJlY2F1c2UgU3RlbGxhciBkb2VzIG5vdApzdXBwb3J0IGB1OGAgdHlwZXMgaW4gY29udHJhY3QgaW50ZXJmYWNlIGZ1bmN0aW9ucy4AAAAAAAAAABFNZXNzYWdlTGliVmVyc2lvbgAAAAAAAAMAAAAzRW5kcG9pbnQgdmVyc2lvbiAoc2hvdWxkIG5vdCBleGNlZWQgdTg6Ok1BWCA9IDI1NSkuAAAAABBlbmRwb2ludF92ZXJzaW9uAAAABAAAABVNYWpvciB2ZXJzaW9uIG51bWJlci4AAAAAAAAFbWFqb3IAAAAAAAAGAAAAN01pbm9yIHZlcnNpb24gbnVtYmVyIChzaG91bGQgbm90IGV4Y2VlZCB1ODo6TUFYID0gMjU1KS4AAAAABW1pbm9yAAAAAAAABA==",
1546
+ "AAAAAQAAADZUaW1lb3V0IGNvbmZpZ3VyYXRpb24gZm9yIHJlY2VpdmUgbGlicmFyeSB0cmFuc2l0aW9ucy4AAAAAAAAAAAAHVGltZW91dAAAAAACAAAAKFVuaXggdGltZXN0YW1wIHdoZW4gdGhlIHRpbWVvdXQgZXhwaXJlcy4AAAAGZXhwaXJ5AAAAAAAGAAAAKVRoZSBuZXcgbGlicmFyeSBhZGRyZXNzIHRvIHRyYW5zaXRpb24gdG8uAAAAAAAAA2xpYgAAAAAT",
1547
+ "AAAAAQAAADVQYXJhbWV0ZXJzIGZvciBzZXR0aW5nIG1lc3NhZ2UgbGlicmFyeSBjb25maWd1cmF0aW9uLgAAAAAAAAAAAAAOU2V0Q29uZmlnUGFyYW0AAAAAAAMAAAAfWERSLWVuY29kZWQgY29uZmlndXJhdGlvbiBkYXRhLgAAAAAGY29uZmlnAAAAAAAOAAAAMFRoZSB0eXBlIG9mIGNvbmZpZ3VyYXRpb24gKGUuZy4sIGV4ZWN1dG9yLCBVTE4pLgAAAAtjb25maWdfdHlwZQAAAAAEAAAAJ1RoZSBlbmRwb2ludCBJRCB0aGlzIGNvbmZpZyBhcHBsaWVzIHRvLgAAAAADZWlkAAAAAAQ=",
1548
+ "AAAAAQAAADFSZXNvbHZlZCBsaWJyYXJ5IGluZm9ybWF0aW9uIHdpdGggZGVmYXVsdCBzdGF0dXMuAAAAAAAAAAAAAA9SZXNvbHZlZExpYnJhcnkAAAAAAgAAAERXaGV0aGVyIHRoaXMgaXMgdGhlIGRlZmF1bHQgbGlicmFyeSAodHJ1ZSkgb3IgT0FwcC1zcGVjaWZpYyAoZmFsc2UpLgAAAAppc19kZWZhdWx0AAAAAAABAAAAHVRoZSByZXNvbHZlZCBsaWJyYXJ5IGFkZHJlc3MuAAAAAAAAA2xpYgAAAAAT",
1549
+ "AAAAAQAAAEhPdXRib3VuZCBwYWNrZXQgY29udGFpbmluZyBhbGwgaW5mb3JtYXRpb24gZm9yIGNyb3NzLWNoYWluIHRyYW5zbWlzc2lvbi4AAAAAAAAADk91dGJvdW5kUGFja2V0AAAAAAAHAAAAGERlc3RpbmF0aW9uIGVuZHBvaW50IElELgAAAAdkc3RfZWlkAAAAAAQAAAAsR2xvYmFsbHkgdW5pcXVlIGlkZW50aWZpZXIgZm9yIHRoaXMgbWVzc2FnZS4AAAAEZ3VpZAAAA+4AAAAgAAAAFFRoZSBtZXNzYWdlIHBheWxvYWQuAAAAB21lc3NhZ2UAAAAADgAAACBPdXRib3VuZCBub25jZSBmb3IgdGhpcyBwYXRod2F5LgAAAAVub25jZQAAAAAAAAYAAAAxUmVjZWl2ZXIgYWRkcmVzcyBvbiBkZXN0aW5hdGlvbiBjaGFpbiAoMzIgYnl0ZXMpLgAAAAAAAAhyZWNlaXZlcgAAA+4AAAAgAAAAH1NlbmRlciBhZGRyZXNzIG9uIHNvdXJjZSBjaGFpbi4AAAAABnNlbmRlcgAAAAAAEwAAABNTb3VyY2UgZW5kcG9pbnQgSUQuAAAAAAdzcmNfZWlkAAAAAAQ=",
1550
+ "AAAAAQAAACtBIGZlZSByZWNpcGllbnQgd2l0aCB0aGUgYW1vdW50IHRvIGJlIHBhaWQuAAAAAAAAAAAMRmVlUmVjaXBpZW50AAAAAgAAABtBZGRyZXNzIHRvIHJlY2VpdmUgdGhlIGZlZS4AAAAAB2FkZHJlc3MAAAAAEwAAABVBbW91bnQgb2YgZmVlIHRvIHBheS4AAAAAAAAGYW1vdW50AAAAAAAL",
1551
+ "AAAAAQAAADxSZXN1bHQgb2Ygc2VuZCBvcGVyYXRpb24gY29udGFpbmluZyBmZWVzIGFuZCBlbmNvZGVkIHBhY2tldC4AAAAAAAAADUZlZXNBbmRQYWNrZXQAAAAAAAADAAAAKlRoZSBlbmNvZGVkIHBhY2tldCByZWFkeSBmb3IgdHJhbnNtaXNzaW9uLgAAAAAADmVuY29kZWRfcGFja2V0AAAAAAAOAAAAP0xpc3Qgb2YgbmF0aXZlIHRva2VuIGZlZSByZWNpcGllbnRzIChleGVjdXRvciwgRFZOcywgdHJlYXN1cnkpLgAAAAAVbmF0aXZlX2ZlZV9yZWNpcGllbnRzAAAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50AAAALExpc3Qgb2YgWlJPIHRva2VuIGZlZSByZWNpcGllbnRzICh0cmVhc3VyeSkuAAAAEnpyb19mZWVfcmVjaXBpZW50cwAAAAAD6gAAB9AAAAAMRmVlUmVjaXBpZW50",
1552
+ "AAAAAgAAAAAAAAAAAAAAD0VuZHBvaW50U3RvcmFnZQAAAAAPAAAAAAAAAAAAAAADWlJPAAAAAAEAAAAAAAAACERlbGVnYXRlAAAAAQAAABMAAAABAAAAAAAAABBMYXp5SW5ib3VuZE5vbmNlAAAAAwAAABMAAAAEAAAD7gAAACAAAAABAAAAAAAAABJJbmJvdW5kUGF5bG9hZEhhc2gAAAAAAAQAAAATAAAABAAAA+4AAAAgAAAABgAAAAEAAAAAAAAADU91dGJvdW5kTm9uY2UAAAAAAAADAAAAEwAAAAQAAAPuAAAAIAAAAAAAAAAAAAAAFlJlZ2lzdGVyZWRMaWJyYXJ5Q291bnQAAAAAAAEAAAAAAAAADkxpYnJhcnlUb0luZGV4AAAAAAABAAAAEwAAAAEAAAAAAAAADkluZGV4VG9MaWJyYXJ5AAAAAAABAAAABAAAAAEAAAAAAAAAEkRlZmF1bHRTZW5kTGlicmFyeQAAAAAAAQAAAAQAAAABAAAAAAAAABVEZWZhdWx0UmVjZWl2ZUxpYnJhcnkAAAAAAAABAAAABAAAAAEAAAAAAAAAHERlZmF1bHRSZWNlaXZlTGlicmFyeVRpbWVvdXQAAAABAAAABAAAAAEAAAAAAAAAC1NlbmRMaWJyYXJ5AAAAAAIAAAATAAAABAAAAAEAAAAAAAAADlJlY2VpdmVMaWJyYXJ5AAAAAAACAAAAEwAAAAQAAAABAAAAAAAAABVSZWNlaXZlTGlicmFyeVRpbWVvdXQAAAAAAAACAAAAEwAAAAQAAAABAAAAAAAAAAxDb21wb3NlUXVldWUAAAAEAAAAEwAAABMAAAPuAAAAIAAAAAQ=",
1553
+ "AAAABQAAAAAAAAAAAAAADkx6Q29tcG9zZUFsZXJ0AAAAAAABAAAADkx6Q29tcG9zZUFsZXJ0AAAAAAAKAAAAAAAAAARmcm9tAAAAEwAAAAEAAAAAAAAAAnRvAAAAAAATAAAAAQAAAAAAAAAIZXhlY3V0b3IAAAATAAAAAQAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAQAAAAAAAAAFaW5kZXgAAAAAAAAEAAAAAQAAAAAAAAADZ2FzAAAAAAsAAAAAAAAAAAAAAAV2YWx1ZQAAAAAAAAsAAAAAAAAAAAAAAAdtZXNzYWdlAAAAAA4AAAAAAAAAAAAAAApleHRyYV9kYXRhAAAAAAAOAAAAAAAAAAAAAAAGcmVhc29uAAAAAAAOAAAAAAAAAAI=",
1554
+ "AAAABQAAAAAAAAAAAAAAEENvbXBvc2VEZWxpdmVyZWQAAAABAAAAEENvbXBvc2VEZWxpdmVyZWQAAAAEAAAAAAAAAARmcm9tAAAAEwAAAAEAAAAAAAAAAnRvAAAAAAATAAAAAQAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAQAAAAAAAAAFaW5kZXgAAAAAAAAEAAAAAQAAAAI=",
1555
+ "AAAABQAAAAAAAAAAAAAAC0NvbXBvc2VTZW50AAAAAAEAAAALQ29tcG9zZVNlbnQAAAAABQAAAAAAAAAEZnJvbQAAABMAAAABAAAAAAAAAAJ0bwAAAAAAEwAAAAEAAAAAAAAABGd1aWQAAAPuAAAAIAAAAAEAAAAAAAAABWluZGV4AAAAAAAABAAAAAEAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAAAAAAC",
1556
+ "AAAABQAAAAAAAAAAAAAAGFJlY2VpdmVMaWJyYXJ5VGltZW91dFNldAAAAAEAAAAYUmVjZWl2ZUxpYnJhcnlUaW1lb3V0U2V0AAAAAwAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAQAAAAAAAAADZWlkAAAAAAQAAAABAAAAAAAAAAd0aW1lb3V0AAAAA+gAAAfQAAAAB1RpbWVvdXQAAAAAAAAAAAI=",
1557
+ "AAAABQAAAAAAAAAAAAAAEVJlY2VpdmVMaWJyYXJ5U2V0AAAAAAAAAQAAABFSZWNlaXZlTGlicmFyeVNldAAAAAAAAAMAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAAB25ld19saWIAAAAD6AAAABMAAAAAAAAAAg==",
1558
+ "AAAABQAAAAAAAAAAAAAADlNlbmRMaWJyYXJ5U2V0AAAAAAABAAAADlNlbmRMaWJyYXJ5U2V0AAAAAAADAAAAAAAAAAZzZW5kZXIAAAAAABMAAAABAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAAAAAAAAduZXdfbGliAAAAA+gAAAATAAAAAAAAAAI=",
1559
+ "AAAABQAAAAAAAAAAAAAAH0RlZmF1bHRSZWNlaXZlTGlicmFyeVRpbWVvdXRTZXQAAAAAAQAAAB9EZWZhdWx0UmVjZWl2ZUxpYnJhcnlUaW1lb3V0U2V0AAAAAAIAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAAB3RpbWVvdXQAAAAD6AAAB9AAAAAHVGltZW91dAAAAAAAAAAAAg==",
1560
+ "AAAABQAAAAAAAAAAAAAAGERlZmF1bHRSZWNlaXZlTGlicmFyeVNldAAAAAEAAAAYRGVmYXVsdFJlY2VpdmVMaWJyYXJ5U2V0AAAAAgAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAAAAAAAAHbmV3X2xpYgAAAAATAAAAAAAAAAI=",
1561
+ "AAAABQAAAAAAAAAAAAAAFURlZmF1bHRTZW5kTGlicmFyeVNldAAAAAAAAAEAAAAVRGVmYXVsdFNlbmRMaWJyYXJ5U2V0AAAAAAAAAgAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAAAAAAAAHbmV3X2xpYgAAAAATAAAAAAAAAAI=",
1562
+ "AAAABQAAAAAAAAAAAAAAEUxpYnJhcnlSZWdpc3RlcmVkAAAAAAAAAQAAABFMaWJyYXJ5UmVnaXN0ZXJlZAAAAAAAAAEAAAAAAAAAB25ld19saWIAAAAAEwAAAAAAAAAC",
1563
+ "AAAABQAAAAAAAAAAAAAAC1BhY2tldEJ1cm50AAAAAAEAAAALUGFja2V0QnVybnQAAAAABQAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAAAAAAAAGc2VuZGVyAAAAAAPuAAAAIAAAAAEAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAEAAAAAAAAABW5vbmNlAAAAAAAABgAAAAEAAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAAAAAAI=",
1564
+ "AAAABQAAAAAAAAAAAAAADlBhY2tldE5pbGlmaWVkAAAAAAABAAAADlBhY2tldE5pbGlmaWVkAAAAAAAFAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAABAAAAAAAAAAZzZW5kZXIAAAAAA+4AAAAgAAAAAQAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAQAAAAAAAAAFbm9uY2UAAAAAAAAGAAAAAQAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD6AAAA+4AAAAgAAAAAAAAAAI=",
1565
+ "AAAABQAAAAAAAAAAAAAAE0luYm91bmROb25jZVNraXBwZWQAAAAAAQAAABNJbmJvdW5kTm9uY2VTa2lwcGVkAAAAAAQAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAVub25jZQAAAAAAAAYAAAABAAAAAg==",
1566
+ "AAAABQAAAAAAAAAAAAAAC0RlbGVnYXRlU2V0AAAAAAEAAAALRGVsZWdhdGVTZXQAAAAAAgAAAAAAAAAEb2FwcAAAABMAAAABAAAAAAAAAAhkZWxlZ2F0ZQAAA+gAAAATAAAAAAAAAAI=",
1567
+ "AAAABQAAAAAAAAAAAAAABlpST1NldAAAAAAAAQAAAAZaUk9TZXQAAAAAAAEAAAAAAAAAA3pybwAAAAATAAAAAAAAAAI=",
1568
+ "AAAABQAAAAAAAAAAAAAADkx6UmVjZWl2ZUFsZXJ0AAAAAAABAAAADkx6UmVjZWl2ZUFsZXJ0AAAAAAAJAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAhleGVjdXRvcgAAABMAAAABAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAARndWlkAAAD7gAAACAAAAABAAAAAAAAAANnYXMAAAAACwAAAAAAAAAAAAAABXZhbHVlAAAAAAAACwAAAAAAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAAAAAAAAAAACmV4dHJhX2RhdGEAAAAAAA4AAAAAAAAAAAAAAAZyZWFzb24AAAAAAA4AAAAAAAAAAg==",
1569
+ "AAAABQAAAAAAAAAAAAAAD1BhY2tldERlbGl2ZXJlZAAAAAABAAAAD1BhY2tldERlbGl2ZXJlZAAAAAACAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAg==",
1570
+ "AAAABQAAAAAAAAAAAAAADlBhY2tldFZlcmlmaWVkAAAAAAABAAAADlBhY2tldFZlcmlmaWVkAAAAAAADAAAAAAAAAAZvcmlnaW4AAAAAB9AAAAAGT3JpZ2luAAAAAAABAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPuAAAAIAAAAAAAAAAC",
1571
+ "AAAABQAAAAAAAAAAAAAAClBhY2tldFNlbnQAAAAAAAEAAAAKUGFja2V0U2VudAAAAAAAAwAAAAAAAAAOZW5jb2RlZF9wYWNrZXQAAAAAAA4AAAAAAAAAAAAAAAdvcHRpb25zAAAAAA4AAAAAAAAAAAAAAAxzZW5kX2xpYnJhcnkAAAATAAAAAAAAAAI=",
1572
+ "AAAABAAAAAAAAAAAAAAADUVuZHBvaW50RXJyb3IAAAAAAAAYAAAAAAAAABFBbHJlYWR5UmVnaXN0ZXJlZAAAAAAAAAEAAAAAAAAADUNvbXBvc2VFeGlzdHMAAAAAAAACAAAAAAAAAA9Db21wb3NlTm90Rm91bmQAAAAAAwAAAAAAAAAcRGVmYXVsdFJlY2VpdmVMaWJVbmF2YWlsYWJsZQAAAAQAAAAAAAAAGURlZmF1bHRTZW5kTGliVW5hdmFpbGFibGUAAAAAAAAFAAAAAAAAABVJbnN1ZmZpY2llbnROYXRpdmVGZWUAAAAAAAAGAAAAAAAAABJJbnN1ZmZpY2llbnRaUk9GZWUAAAAAAAcAAAAAAAAADUludmFsaWRFeHBpcnkAAAAAAAAIAAAAAAAAAAxJbnZhbGlkSW5kZXgAAAAJAAAAAAAAAAxJbnZhbGlkTm9uY2UAAAAKAAAAAAAAABJJbnZhbGlkUGF5bG9hZEhhc2gAAAAAAAsAAAAAAAAAFUludmFsaWRSZWNlaXZlTGlicmFyeQAAAAAAAAwAAAAAAAAAEU9ubHlOb25EZWZhdWx0TGliAAAAAAAADQAAAAAAAAAOT25seVJlY2VpdmVMaWIAAAAAAA4AAAAAAAAAEU9ubHlSZWdpc3RlcmVkTGliAAAAAAAADwAAAAAAAAALT25seVNlbmRMaWIAAAAAEAAAAAAAAAAUUGF0aE5vdEluaXRpYWxpemFibGUAAAARAAAAAAAAABFQYXRoTm90VmVyaWZpYWJsZQAAAAAAABIAAAAAAAAAE1BheWxvYWRIYXNoTm90Rm91bmQAAAAAEwAAAAAAAAAJU2FtZVZhbHVlAAAAAAAAFAAAAAAAAAAMVW5hdXRob3JpemVkAAAAFQAAAAAAAAAOVW5zdXBwb3J0ZWRFaWQAAAAAABYAAAAAAAAAClplcm9aUk9GZWUAAAAAABcAAAAAAAAADlpST1VuYXZhaWxhYmxlAAAAAAAY",
1573
+ "AAAAAAAAAOdTZW5kcyBhIGNvbXBvc2VkIG1lc3NhZ2UgZnJvbSBhbiBPQXBwIHRvIGEgY29tcG9zZXIuCgpUaGUgY29tcG9zZXIgTVVTVCBhc3NlcnQgdGhlIHNlbmRlciBiZWNhdXNlIGFueW9uZSBjYW4gc2VuZCBjb21wb3NlIG1zZyB3aXRoIHRoaXMgZnVuY3Rpb24uCldpdGggdGhlIHNhbWUgR1VJRCwgdGhlIE9BcHAgY2FuIHNlbmQgY29tcG9zZSB0byBtdWx0aXBsZSBjb21wb3NlcnMgYXQgdGhlIHNhbWUgdGltZS4AAAAADHNlbmRfY29tcG9zZQAAAAUAAAAAAAAABGZyb20AAAATAAAAAAAAAAJ0bwAAAAAAEwAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAAAAAAVpbmRleAAAAAAAAAQAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAA=",
1574
+ "AAAAAAAAAGVDbGVhcnMgYSBjb21wb3NlZCBtZXNzYWdlIGJ5IHRoZSBjb21wb3Nlci4KClRoaXMgaXMgYSBQVUxMIG1vZGUgdmVyc3VzIHRoZSBQVVNIIG1vZGUgb2YgYGx6X2NvbXBvc2VgLgAAAAAAAA1jbGVhcl9jb21wb3NlAAAAAAAABQAAAAAAAAAIY29tcG9zZXIAAAATAAAAAAAAAARmcm9tAAAAEwAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAAAAAAVpbmRleAAAAAAAAAQAAAAAAAAAB21lc3NhZ2UAAAAADgAAAAA=",
1575
+ "AAAAAAAAAIlFbWl0cyBhbiBhbGVydCBldmVudCB3aGVuIGBsel9jb21wb3NlYCBleGVjdXRpb24gZmFpbHMuCgpDYWxsZWQgYnkgdGhlIGV4ZWN1dG9yIHRvIG5vdGlmeSBhYm91dCBmYWlsZWQgY29tcG9zZSBtZXNzYWdlIGRlbGl2ZXJ5IGF0dGVtcHRzLgAAAAAAABBsel9jb21wb3NlX2FsZXJ0AAAACgAAAAAAAAAIZXhlY3V0b3IAAAATAAAAAAAAAARmcm9tAAAAEwAAAAAAAAACdG8AAAAAABMAAAAAAAAABGd1aWQAAAPuAAAAIAAAAAAAAAAFaW5kZXgAAAAAAAAEAAAAAAAAAANnYXMAAAAACwAAAAAAAAAFdmFsdWUAAAAAAAALAAAAAAAAAAdtZXNzYWdlAAAAAA4AAAAAAAAACmV4dHJhX2RhdGEAAAAAAA4AAAAAAAAABnJlYXNvbgAAAAAADgAAAAA=",
1576
+ "AAAAAAAAAEhSZXR1cm5zIHRoZSBzdG9yZWQgaGFzaCBmb3IgYSBjb21wb3NlZCBtZXNzYWdlLCBvciBgTm9uZWAgaWYgbm90IHF1ZXVlZC4AAAANY29tcG9zZV9xdWV1ZQAAAAAAAAQAAAAAAAAABGZyb20AAAATAAAAAAAAAAJ0bwAAAAAAEwAAAAAAAAAEZ3VpZAAAA+4AAAAgAAAAAAAAAAVpbmRleAAAAAAAAAQAAAABAAAD6AAAA+4AAAAg",
1577
+ "AAAAAAAAAGxTa2lwcyB0aGUgbmV4dCBleHBlY3RlZCBpbmJvdW5kIG5vbmNlIHdpdGhvdXQgdmVyaWZ5aW5nLgoKVGhlIG5vbmNlIHRvIHNraXAgbXVzdCBiZSB0aGUgbmV4dCBleHBlY3RlZCBub25jZS4AAAAEc2tpcAAAAAUAAAAAAAAABmNhbGxlcgAAAAAAEwAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAAAAAAABW5vbmNlAAAAAAAABgAAAAA=",
1578
+ "AAAAAAAAAHpNYXJrcyBhIHBhY2tldCBhcyB2ZXJpZmllZCwgYnV0IGRpc2FsbG93cyBleGVjdXRpb24gdW50aWwgaXQgaXMgcmUtdmVyaWZpZWQuCgpSZXF1aXJlcyB0aGUgcGF5bG9hZCBoYXNoIG5vdCBiZWVuIGV4ZWN1dGVkLgAAAAAABm5pbGlmeQAAAAAABgAAAAAAAAAGY2FsbGVyAAAAAAATAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAAB3NyY19laWQAAAAABAAAAAAAAAAGc2VuZGVyAAAAAAPuAAAAIAAAAAAAAAAFbm9uY2UAAAAAAAAGAAAAAAAAAAxwYXlsb2FkX2hhc2gAAAPoAAAD7gAAACAAAAAA",
1579
+ "AAAAAAAAAGBNYXJrcyBhIG5vbmNlIGFzIHVuZXhlY3V0YWJsZSBhbmQgdW4tdmVyaWZpYWJsZS4gVGhlIG5vbmNlIGNhbiBuZXZlciBiZSByZS12ZXJpZmllZCBvciBleGVjdXRlZC4AAAAEYnVybgAAAAYAAAAAAAAABmNhbGxlcgAAAAAAEwAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAAAAAAABnNlbmRlcgAAAAAD7gAAACAAAAAAAAAABW5vbmNlAAAAAAAABgAAAAAAAAAMcGF5bG9hZF9oYXNoAAAD7gAAACAAAAAA",
1580
+ "AAAAAAAAAC9HZW5lcmF0ZXMgdGhlIG5leHQgR1VJRCBmb3IgYW4gb3V0Ym91bmQgcGFja2V0LgAAAAAJbmV4dF9ndWlkAAAAAAAAAwAAAAAAAAAGc2VuZGVyAAAAAAATAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAAAAAAACHJlY2VpdmVyAAAD7gAAACAAAAABAAAD7gAAACA=",
1581
+ "AAAAAAAAAD5SZXR1cm5zIHRoZSBjdXJyZW50IG91dGJvdW5kIG5vbmNlIGZvciBhIHNwZWNpZmljIGRlc3RpbmF0aW9uLgAAAAAADm91dGJvdW5kX25vbmNlAAAAAAADAAAAAAAAAAZzZW5kZXIAAAAAABMAAAAAAAAAB2RzdF9laWQAAAAABAAAAAAAAAAIcmVjZWl2ZXIAAAPuAAAAIAAAAAEAAAAG",
1582
+ "AAAAAAAAAZpSZXR1cm5zIHRoZSBtYXggaW5kZXggb2YgdGhlIGxvbmdlc3QgZ2FwbGVzcyBzZXF1ZW5jZSBvZiB2ZXJpZmllZCBtZXNzYWdlIG5vbmNlcy4KClRoZSB1bmluaXRpYWxpemVkIHZhbHVlIGlzIDAuIFRoZSBmaXJzdCBub25jZSBpcyBhbHdheXMgMS4KSXQgc3RhcnRzIGZyb20gdGhlIGBsYXp5X2luYm91bmRfbm9uY2VgIChsYXN0IGNoZWNrcG9pbnQpIGFuZCBpdGVyYXRpdmVseSBjaGVja3MKaWYgdGhlIG5leHQgbm9uY2UgaGFzIGJlZW4gdmVyaWZpZWQuCgpOb3RlOiBPQXBwIGV4cGxpY2l0bHkgc2tpcHBlZCBub25jZXMgY291bnQgYXMgInZlcmlmaWVkIiBmb3IgdGhlc2UgcHVycG9zZXMuCgpFeGFtcGxlczogYFsxLDIsMyw0LDYsN10gPT4gNGAsIGBbMSwyLDYsOCwxMF0gPT4gMmAsIGBbMSwzLDQsNSw2XSA9PiAxYAAAAAAADWluYm91bmRfbm9uY2UAAAAAAAADAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAAB3NyY19laWQAAAAABAAAAAAAAAAGc2VuZGVyAAAAAAPuAAAAIAAAAAEAAAAG",
1583
+ "AAAAAAAAAEVSZXR1cm5zIHRoZSBsYXp5IGluYm91bmQgbm9uY2UgKGxhc3QgY2hlY2twb2ludCkgZm9yIGEgc3BlY2lmaWMgcGF0aC4AAAAAAAASbGF6eV9pbmJvdW5kX25vbmNlAAAAAAADAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAAB3NyY19laWQAAAAABAAAAAAAAAAGc2VuZGVyAAAAAAPuAAAAIAAAAAEAAAAG",
1584
+ "AAAAAAAAADZSZXR1cm5zIHRoZSBwYXlsb2FkIGhhc2ggZm9yIGEgc3BlY2lmaWMgaW5ib3VuZCBub25jZS4AAAAAABRpbmJvdW5kX3BheWxvYWRfaGFzaAAAAAQAAAAAAAAACHJlY2VpdmVyAAAAEwAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAAAAAAZzZW5kZXIAAAAAA+4AAAAgAAAAAAAAAAVub25jZQAAAAAAAAYAAAABAAAD6AAAA+4AAAAg",
1585
+ "AAAAAAAAADJSZWdpc3RlcnMgYSBuZXcgbWVzc2FnZSBsaWJyYXJ5IHdpdGggdGhlIGVuZHBvaW50LgAAAAAAEHJlZ2lzdGVyX2xpYnJhcnkAAAABAAAAAAAAAAduZXdfbGliAAAAABMAAAAA",
1586
+ "AAAAAAAAADlTZXRzIHRoZSBkZWZhdWx0IHNlbmQgbGlicmFyeSBmb3IgYSBkZXN0aW5hdGlvbiBlbmRwb2ludC4AAAAAAAAYc2V0X2RlZmF1bHRfc2VuZF9saWJyYXJ5AAAAAgAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAAAAAAduZXdfbGliAAAAABMAAAAA",
1587
+ "AAAAAAAAALZTZXRzIHRoZSBkZWZhdWx0IHJlY2VpdmUgbGlicmFyeSBmb3IgYSBzb3VyY2UgZW5kcG9pbnQuCgpJZiBhIGdyYWNlIHBlcmlvZCBpcyBwcm92aWRlZCBhbmQgdGhlcmUgd2FzIGEgcHJldmlvdXMgbGlicmFyeSwgdGhlIG9sZCBsaWJyYXJ5CnJlbWFpbnMgdmFsaWQgdW50aWwgdGhlIGdyYWNlIHBlcmlvZCBleHBpcmVzLgAAAAAAG3NldF9kZWZhdWx0X3JlY2VpdmVfbGlicmFyeQAAAAADAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAAAAAAAB25ld19saWIAAAAAEwAAAAAAAAAMZ3JhY2VfcGVyaW9kAAAABgAAAAA=",
1588
+ "AAAAAAAAANJTZXRzIG9yIHJlbW92ZXMgdGhlIGRlZmF1bHQgcmVjZWl2ZSBsaWJyYXJ5IHRpbWVvdXQgZm9yIGEgc291cmNlIGVuZHBvaW50LgoKSWYgYSB0aW1lb3V0IGlzIHByb3ZpZGVkLCBpdCBtdXN0IGJlIHZhbGlkIGFuZCBub3QgZXhwaXJlZC4gSWYgbm8gdGltZW91dCBpcyBwcm92aWRlZCwKdGhlIGRlZmF1bHQgcmVjZWl2ZSBsaWJyYXJ5IHRpbWVvdXQgaXMgcmVtb3ZlZC4AAAAAAB9zZXRfZGVmYXVsdF9yZWNlaXZlX2xpYl90aW1lb3V0AAAAAAIAAAAAAAAAB3NyY19laWQAAAAABAAAAAAAAAAHdGltZW91dAAAAAPoAAAH0AAAAAdUaW1lb3V0AAAAAAA=",
1589
+ "AAAAAAAAAFVTZXRzIG9yIHJlbW92ZXMgYSBjdXN0b20gc2VuZCBsaWJyYXJ5IGZvciBhbiBPQXBwIHRvIGEgc3BlY2lmaWMgZGVzdGluYXRpb24gZW5kcG9pbnQuAAAAAAAAEHNldF9zZW5kX2xpYnJhcnkAAAAEAAAAAAAAAAZjYWxsZXIAAAAAABMAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAAAAAAduZXdfbGliAAAAA+gAAAATAAAAAA==",
1590
+ "AAAAAAAAANJTZXRzIG9yIHJlbW92ZXMgYSBjdXN0b20gcmVjZWl2ZSBsaWJyYXJ5IGZvciBhbiBPQXBwIHRvIGEgc3BlY2lmaWMgc291cmNlIGVuZHBvaW50LgoKSWYgYSBncmFjZSBwZXJpb2QgaXMgcHJvdmlkZWQgYW5kIHRoZXJlIHdhcyBhIHByZXZpb3VzIGxpYnJhcnksIHRoZSBvbGQgbGlicmFyeQpyZW1haW5zIHZhbGlkIHVudGlsIHRoZSBncmFjZSBwZXJpb2QgZXhwaXJlcy4AAAAAABNzZXRfcmVjZWl2ZV9saWJyYXJ5AAAAAAUAAAAAAAAABmNhbGxlcgAAAAAAEwAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAAAAAAAB25ld19saWIAAAAD6AAAABMAAAAAAAAADGdyYWNlX3BlcmlvZAAAAAYAAAAA",
1591
+ "AAAAAAAAALFTZXRzIG9yIHJlbW92ZXMgdGhlIGN1c3RvbSByZWNlaXZlIGxpYnJhcnkgdGltZW91dCBmb3IgYW4gT0FwcC4KCkFsbG93cyBhbiBPQXBwIHRvIGV4dGVuZCBvciByZW1vdmUgdGhlIHZhbGlkaXR5IHBlcmlvZCBvZiBhIHByZXZpb3VzbHkgc2V0IGxpYnJhcnkKYWZ0ZXIgc3dpdGNoaW5nIHRvIGEgbmV3IG9uZS4AAAAAAAAbc2V0X3JlY2VpdmVfbGlicmFyeV90aW1lb3V0AAAAAAQAAAAAAAAABmNhbGxlcgAAAAAAEwAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAAAAAAAB3RpbWVvdXQAAAAD6AAAB9AAAAAHVGltZW91dAAAAAAA",
1592
+ "AAAAAAAAAINTZXRzIHRoZSBjb25maWd1cmF0aW9uIGZvciBhIG1lc3NhZ2UgbGlicmFyeS4KClJlcXVpcmVzIHRoZSBjYWxsZXIgdG8gYmUgdGhlIE9BcHAgb3IgaXRzIGRlbGVnYXRlIGFuZCB0aGUgbGlicmFyeSB0byBiZSByZWdpc3RlcmVkLgAAAAAKc2V0X2NvbmZpZwAAAAAABAAAAAAAAAAGY2FsbGVyAAAAAAATAAAAAAAAAARvYXBwAAAAEwAAAAAAAAADbGliAAAAABMAAAAAAAAABnBhcmFtcwAAAAAD6gAAB9AAAAAOU2V0Q29uZmlnUGFyYW0AAAAAAAA=",
1593
+ "AAAAAAAAACpDaGVja3MgaWYgYSBtZXNzYWdlIGxpYnJhcnkgaXMgcmVnaXN0ZXJlZC4AAAAAABVpc19yZWdpc3RlcmVkX2xpYnJhcnkAAAAAAAABAAAAAAAAAANsaWIAAAAAEwAAAAEAAAAB",
1594
+ "AAAAAAAAACdSZXR1cm5zIHRoZSBpbmRleCBvZiBhIG1lc3NhZ2UgbGlicmFyeS4AAAAAEWdldF9saWJyYXJ5X2luZGV4AAAAAAAAAQAAAAAAAAADbGliAAAAABMAAAABAAAD6AAAAAQ=",
1595
+ "AAAAAAAAADNSZXR1cm5zIHRoZSBudW1iZXIgb2YgcmVnaXN0ZXJlZCBtZXNzYWdlIGxpYnJhcmllcy4AAAAAGnJlZ2lzdGVyZWRfbGlicmFyaWVzX2NvdW50AAAAAAAAAAAAAQAAAAQ=",
1596
+ "AAAAAAAAAEpSZXR1cm5zIGEgbGlzdCBvZiByZWdpc3RlcmVkIG1lc3NhZ2UgbGlicmFyaWVzIHdpdGhpbiB0aGUgc3BlY2lmaWVkIHJhbmdlLgAAAAAAGGdldF9yZWdpc3RlcmVkX2xpYnJhcmllcwAAAAIAAAAAAAAABXN0YXJ0AAAAAAAABAAAAAAAAAAJbWF4X2NvdW50AAAAAAAABAAAAAEAAAPqAAAAEw==",
1597
+ "AAAAAAAAAH1DaGVja3MgaWYgYW4gZW5kcG9pbnQgSUQgaXMgc3VwcG9ydGVkLgpSZXR1cm5zIHRydWUgb25seSBpZiBib3RoIHRoZSBkZWZhdWx0IHNlbmQvcmVjZWl2ZSBsaWJyYXJpZXMgYXJlIHNldCBmb3IgdGhlIGdpdmVuIGVpZAAAAAAAABBpc19zdXBwb3J0ZWRfZWlkAAAAAQAAAAAAAAADZWlkAAAAAAQAAAABAAAAAQ==",
1598
+ "AAAAAAAAADxSZXR1cm5zIHRoZSBkZWZhdWx0IHNlbmQgbGlicmFyeSBmb3IgYSBkZXN0aW5hdGlvbiBlbmRwb2ludC4AAAAUZGVmYXVsdF9zZW5kX2xpYnJhcnkAAAABAAAAAAAAAAdkc3RfZWlkAAAAAAQAAAABAAAD6AAAABM=",
1599
+ "AAAAAAAAADpSZXR1cm5zIHRoZSBkZWZhdWx0IHJlY2VpdmUgbGlicmFyeSBmb3IgYSBzb3VyY2UgZW5kcG9pbnQuAAAAAAAXZGVmYXVsdF9yZWNlaXZlX2xpYnJhcnkAAAAAAQAAAAAAAAAHc3JjX2VpZAAAAAAEAAAAAQAAA+gAAAAT",
1600
+ "AAAAAAAAAEJSZXR1cm5zIHRoZSBkZWZhdWx0IHJlY2VpdmUgbGlicmFyeSB0aW1lb3V0IGZvciBhIHNvdXJjZSBlbmRwb2ludC4AAAAAAB9kZWZhdWx0X3JlY2VpdmVfbGlicmFyeV90aW1lb3V0AAAAAAEAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAPoAAAH0AAAAAdUaW1lb3V0AA==",
1601
+ "AAAAAAAAAEhSZXR1cm5zIHRoZSBlZmZlY3RpdmUgc2VuZCBsaWJyYXJ5IGZvciBhbiBPQXBwIGFuZCBkZXN0aW5hdGlvbiBlbmRwb2ludC4AAAAQZ2V0X3NlbmRfbGlicmFyeQAAAAIAAAAAAAAABnNlbmRlcgAAAAAAEwAAAAAAAAAHZHN0X2VpZAAAAAAEAAAAAQAAB9AAAAAPUmVzb2x2ZWRMaWJyYXJ5AA==",
1602
+ "AAAAAAAAAEZSZXR1cm5zIHRoZSBlZmZlY3RpdmUgcmVjZWl2ZSBsaWJyYXJ5IGZvciBhbiBPQXBwIGFuZCBzb3VyY2UgZW5kcG9pbnQuAAAAAAATZ2V0X3JlY2VpdmVfbGlicmFyeQAAAAACAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAfQAAAAD1Jlc29sdmVkTGlicmFyeQA=",
1603
+ "AAAAAAAAAERSZXR1cm5zIHRoZSByZWNlaXZlIGxpYnJhcnkgdGltZW91dCBmb3IgYW4gT0FwcCBhbmQgc291cmNlIGVuZHBvaW50LgAAABdyZWNlaXZlX2xpYnJhcnlfdGltZW91dAAAAAACAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAAB3NyY19laWQAAAAABAAAAAEAAAPoAAAH0AAAAAdUaW1lb3V0AA==",
1604
+ "AAAAAAAAAEVDaGVja3MgaWYgYSByZWNlaXZlIGxpYnJhcnkgaXMgdmFsaWQgZm9yIGFuIE9BcHAgYW5kIHNvdXJjZSBlbmRwb2ludC4AAAAAAAAYaXNfdmFsaWRfcmVjZWl2ZV9saWJyYXJ5AAAAAwAAAAAAAAAIcmVjZWl2ZXIAAAATAAAAAAAAAAdzcmNfZWlkAAAAAAQAAAAAAAAACmFjdHVhbF9saWIAAAAAABMAAAABAAAAAQ==",
1605
+ "AAAAAAAAAGJSZXR1cm5zIHRoZSBjb25maWd1cmF0aW9uIGZvciBhIG1lc3NhZ2UgbGlicmFyeSBmb3IgYSBzcGVjaWZpYyBlbmRwb2ludCBJRCBhbmQgY29uZmlndXJhdGlvbiB0eXBlLgAAAAAACmdldF9jb25maWcAAAAAAAQAAAAAAAAABG9hcHAAAAATAAAAAAAAAANsaWIAAAAAEwAAAAAAAAADZWlkAAAAAAQAAAAAAAAAC2NvbmZpZ190eXBlAAAAAAQAAAABAAAADg==",
1606
+ "AAAAAAAAADtRdW90ZXMgdGhlIG1lc3NhZ2luZyBmZWUgZm9yIHNlbmRpbmcgYSBjcm9zcy1jaGFpbiBtZXNzYWdlLgAAAAAFcXVvdGUAAAAAAAACAAAAAAAAAAZzZW5kZXIAAAAAABMAAAAAAAAABnBhcmFtcwAAAAAH0AAAAA9NZXNzYWdpbmdQYXJhbXMAAAAAAQAAB9AAAAAMTWVzc2FnaW5nRmVl",
1607
+ "AAAAAAAAAIlTZW5kcyBhIGNyb3NzLWNoYWluIG1lc3NhZ2UgdG8gYSBkZXN0aW5hdGlvbiBlbmRwb2ludC4KCk9BcHAgc2VuZGVyIG5lZWRzIHRvIHRyYW5zZmVyIHRoZSBmZWVzIHRvIHRoZSBlbmRwb2ludCBiZWZvcmUgc2VuZGluZyB0aGUgbWVzc2FnZQAAAAAAAARzZW5kAAAAAwAAAAAAAAAGc2VuZGVyAAAAAAATAAAAAAAAAAZwYXJhbXMAAAAAB9AAAAAPTWVzc2FnaW5nUGFyYW1zAAAAAAAAAAAOcmVmdW5kX2FkZHJlc3MAAAAAABMAAAABAAAH0AAAABBNZXNzYWdpbmdSZWNlaXB0",
1608
+ "AAAAAAAAAEpWZXJpZmllcyBhbiBpbmJvdW5kIGNyb3NzLWNoYWluIG1lc3NhZ2UgZnJvbSBhIGNvbmZpZ3VyZWQgcmVjZWl2ZSBsaWJyYXJ5LgAAAAAABnZlcmlmeQAAAAAABAAAAAAAAAALcmVjZWl2ZV9saWIAAAAAEwAAAAAAAAAGb3JpZ2luAAAAAAfQAAAABk9yaWdpbgAAAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAADHBheWxvYWRfaGFzaAAAA+4AAAAgAAAAAA==",
1609
+ "AAAAAAAAAGdDbGVhcnMgYSB2ZXJpZmllZCBtZXNzYWdlIGZyb20gdGhlIGVuZHBvaW50LgoKVGhpcyBpcyBhIFBVTEwgbW9kZSB2ZXJzdXMgdGhlIFBVU0ggbW9kZSBvZiBgbHpfcmVjZWl2ZWAuAAAAAAVjbGVhcgAAAAAAAAUAAAAAAAAABmNhbGxlcgAAAAAAEwAAAAAAAAAGb3JpZ2luAAAAAAfQAAAABk9yaWdpbgAAAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAABGd1aWQAAAPuAAAAIAAAAAAAAAAHbWVzc2FnZQAAAAAOAAAAAA==",
1610
+ "AAAAAAAAAIFFbWl0cyBhbiBhbGVydCBldmVudCB3aGVuIGBsel9yZWNlaXZlYCBleGVjdXRpb24gZmFpbHMuCgpDYWxsZWQgYnkgdGhlIGV4ZWN1dG9yIHRvIG5vdGlmeSBhYm91dCBmYWlsZWQgbWVzc2FnZSBkZWxpdmVyeSBhdHRlbXB0cy4AAAAAAAAQbHpfcmVjZWl2ZV9hbGVydAAAAAkAAAAAAAAACGV4ZWN1dG9yAAAAEwAAAAAAAAAGb3JpZ2luAAAAAAfQAAAABk9yaWdpbgAAAAAAAAAAAAhyZWNlaXZlcgAAABMAAAAAAAAABGd1aWQAAAPuAAAAIAAAAAAAAAADZ2FzAAAAAAsAAAAAAAAABXZhbHVlAAAAAAAACwAAAAAAAAAHbWVzc2FnZQAAAAAOAAAAAAAAAApleHRyYV9kYXRhAAAAAAAOAAAAAAAAAAZyZWFzb24AAAAAAA4AAAAA",
1611
+ "AAAAAAAAACxTZXRzIHRoZSBaUk8gdG9rZW4gYWRkcmVzcyBmb3IgZmVlIHBheW1lbnRzLgAAAAdzZXRfenJvAAAAAAEAAAAAAAAAA3pybwAAAAATAAAAAA==",
1612
+ "AAAAAAAAAEZTZXRzIG9yIHJlbW92ZXMgYSBkZWxlZ2F0ZSBhZGRyZXNzIHRoYXQgY2FuIGFjdCBvbiBiZWhhbGYgb2YgdGhlIE9BcHAuAAAAAAAMc2V0X2RlbGVnYXRlAAAAAgAAAAAAAAAEb2FwcAAAABMAAAAAAAAADG5ld19kZWxlZ2F0ZQAAA+gAAAATAAAAAA==",
1613
+ "AAAAAAAAABhSZXR1cm5zIHRoZSBlbmRwb2ludCBJRC4AAAADZWlkAAAAAAAAAAABAAAABA==",
1614
+ "AAAAAAAAAFlDaGVja3MgaWYgYSBtZXNzYWdpbmcgcGF0aCBjYW4gYmUvaGFzIGJlZW4gaW5pdGlhbGl6ZWQgZm9yIHRoZSBnaXZlbiBvcmlnaW4gYW5kIHJlY2VpdmVyLgAAAAAAAA1pbml0aWFsaXphYmxlAAAAAAAAAgAAAAAAAAAGb3JpZ2luAAAAAAfQAAAABk9yaWdpbgAAAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAQ==",
1615
+ "AAAAAAAAAEZDaGVja3MgaWYgYSBtZXNzYWdlIGNhbiBiZSB2ZXJpZmllZCBmb3IgdGhlIGdpdmVuIG9yaWdpbiBhbmQgcmVjZWl2ZXIuAAAAAAAKdmVyaWZpYWJsZQAAAAAAAgAAAAAAAAAGb3JpZ2luAAAAAAfQAAAABk9yaWdpbgAAAAAAAAAAAAhyZWNlaXZlcgAAABMAAAABAAAAAQ==",
1616
+ "AAAAAAAAADdSZXR1cm5zIHRoZSBuYXRpdmUgdG9rZW4gYWRkcmVzcyB1c2VkIGZvciBmZWUgcGF5bWVudHMuAAAAAAxuYXRpdmVfdG9rZW4AAAAAAAAAAQAAABM=",
1617
+ "AAAAAAAAACVSZXR1cm5zIHRoZSBaUk8gdG9rZW4gYWRkcmVzcyBpZiBzZXQuAAAAAAAAA3pybwAAAAAAAAAAAQAAA+gAAAAT",
1618
+ "AAAAAAAAADBSZXR1cm5zIHRoZSBkZWxlZ2F0ZSBhZGRyZXNzIGZvciBhbiBPQXBwIGlmIHNldC4AAAAIZGVsZWdhdGUAAAABAAAAAAAAAARvYXBwAAAAEwAAAAEAAAPoAAAAEw==",
1619
+ "AAAAAAAAAAAAAAANX19jb25zdHJ1Y3RvcgAAAAAAAAEAAAAAAAAABW93bmVyAAAAAAAAEwAAAAA=",
1620
+ "AAAAAAAAALFSZWNvdmVycyB0b2tlbnMgc2VudCB0byB0aGlzIGNvbnRyYWN0IGJ5IG1pc3Rha2UuCgojIEFyZ3VtZW50cwoqIGB0b2tlbmAgLSBUaGUgdG9rZW4gYWRkcmVzcyB0byByZWNvdmVyCiogYHRvYCAtIFRoZSBhZGRyZXNzIHRvIHNlbmQgdGhlIHRva2VuIHRvCiogYGFtb3VudGAgLSBUaGUgYW1vdW50IHRvIHNlbmQAAAAAAAANcmVjb3Zlcl90b2tlbgAAAAAAAAMAAAAAAAAABXRva2VuAAAAAAAAEwAAAAAAAAACdG8AAAAAABMAAAAAAAAABmFtb3VudAAAAAAACwAAAAA=",
1621
+ "AAAAAAAAAAAAAAAFb3duZXIAAAAAAAAAAAAAAQAAA+gAAAAT",
1622
+ "AAAAAAAAAAAAAAASdHJhbnNmZXJfb3duZXJzaGlwAAAAAAABAAAAAAAAAAluZXdfb3duZXIAAAAAAAATAAAAAA==",
1623
+ "AAAAAAAAAAAAAAAScmVub3VuY2Vfb3duZXJzaGlwAAAAAAAAAAAAAA==",
1624
+ "AAAAAAAAAAAAAAAOc2V0X3R0bF9jb25maWcAAAAAAAMAAAAAAAAACGluc3RhbmNlAAAD6AAAB9AAAAAJVHRsQ29uZmlnAAAAAAAAAAAAAApwZXJzaXN0ZW50AAAAAAPoAAAH0AAAAAlUdGxDb25maWcAAAAAAAAAAAAACXRlbXBvcmFyeQAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAAAA=",
1625
+ "AAAAAAAAAAAAAAAKdHRsX2NvbmZpZwAAAAAAAAAAAAEAAAPtAAAAAwAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAAAAA+gAAAfQAAAACVR0bENvbmZpZwAAAA==",
1626
+ "AAAAAAAAAAAAAAARZnJlZXplX3R0bF9jb25maWcAAAAAAAAAAAAAAA==",
1627
+ "AAAAAAAAAAAAAAAUaXNfdHRsX2NvbmZpZ19mcm96ZW4AAAAAAAAAAQAAAAE=",
1628
+ "AAAABAAAAAAAAAAAAAAAEUJ1ZmZlclJlYWRlckVycm9yAAAAAAAAAgAAAAAAAAANSW52YWxpZExlbmd0aAAAAAAAJxAAAAAAAAAAFUludmFsaWRBZGRyZXNzUGF5bG9hZAAAAAAAJxE=",
1629
+ "AAAABAAAAAAAAAAAAAAAEUJ1ZmZlcldyaXRlckVycm9yAAAAAAAAAQAAAAAAAAAVSW52YWxpZEFkZHJlc3NQYXlsb2FkAAAAAAAndA==",
1630
+ "AAAABAAAAAAAAAAAAAAACFR0bEVycm9yAAAAAwAAAAAAAAAQSW52YWxpZFR0bENvbmZpZwAAJ9gAAAAAAAAAD1R0bENvbmZpZ0Zyb3plbgAAACfZAAAAAAAAABZUdGxDb25maWdBbHJlYWR5RnJvemVuAAAAACfa",
1631
+ "AAAABAAAAAAAAAAAAAAADE93bmFibGVFcnJvcgAAAAIAAAAAAAAAD093bmVyQWxyZWFkeVNldAAAACg8AAAAAAAAAAtPd25lck5vdFNldAAAACg9",
1632
+ "AAAABAAAAAAAAAAAAAAADUJ5dGVzRXh0RXJyb3IAAAAAAAABAAAAAAAAAA5MZW5ndGhNaXNtYXRjaAAAAAAooA==",
1633
+ "AAAABQAAACxFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHRyYW5zZmVycmVkLgAAAAAAAAAUT3duZXJzaGlwVHJhbnNmZXJyZWQAAAABAAAAFE93bmVyc2hpcFRyYW5zZmVycmVkAAAAAgAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAAAAAACW5ld19vd25lcgAAAAAAABMAAAAAAAAAAg==",
1634
+ "AAAABQAAACpFdmVudCBlbWl0dGVkIHdoZW4gb3duZXJzaGlwIGlzIHJlbm91bmNlZC4AAAAAAAAAAAAST3duZXJzaGlwUmVub3VuY2VkAAAAAAABAAAAEk93bmVyc2hpcFJlbm91bmNlZAAAAAAAAQAAAAAAAAAJb2xkX293bmVyAAAAAAAAEwAAAAAAAAAC",
1635
+ "AAAAAgAAAAAAAAAAAAAAFURlZmF1bHRPd25hYmxlU3RvcmFnZQAAAAAAAAEAAAAAAAAAAAAAAAVPd25lcgAAAA==",
1636
+ "AAAAAQAAAFdBIHBhaXIgb2YgVFRMIHZhbHVlczogdGhyZXNob2xkICh3aGVuIHRvIHRyaWdnZXIgZXh0ZW5zaW9uKSBhbmQgZXh0ZW5kX3RvICh0YXJnZXQgVFRMKS4AAAAAAAAAAAlUdGxDb25maWcAAAAAAAACAAAAKFRhcmdldCBUVEwgYWZ0ZXIgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAJZXh0ZW5kX3RvAAAAAAAABAAAADNUVEwgdGhyZXNob2xkIHRoYXQgdHJpZ2dlcnMgZXh0ZW5zaW9uIChpbiBsZWRnZXJzKS4AAAAACXRocmVzaG9sZAAAAAAAAAQ=",
1637
+ "AAAAAgAAAAAAAAAAAAAADVR0bENvbmZpZ0RhdGEAAAAAAAAEAAAAAAAAAAAAAAAGRnJvemVuAAAAAAAAAAAAAAAAAAhJbnN0YW5jZQAAAAAAAAAAAAAAClBlcnNpc3RlbnQAAAAAAAAAAAAAAAAACVRlbXBvcmFyeQAAAA==" ]),
1638
+ options
1639
+ )
1640
+ }
1641
+ public readonly fromJSON = {
1642
+ send_compose: this.txFromJSON<null>,
1643
+ clear_compose: this.txFromJSON<null>,
1644
+ lz_compose_alert: this.txFromJSON<null>,
1645
+ compose_queue: this.txFromJSON<Option<Buffer>>,
1646
+ skip: this.txFromJSON<null>,
1647
+ nilify: this.txFromJSON<null>,
1648
+ burn: this.txFromJSON<null>,
1649
+ next_guid: this.txFromJSON<Buffer>,
1650
+ outbound_nonce: this.txFromJSON<u64>,
1651
+ inbound_nonce: this.txFromJSON<u64>,
1652
+ lazy_inbound_nonce: this.txFromJSON<u64>,
1653
+ inbound_payload_hash: this.txFromJSON<Option<Buffer>>,
1654
+ register_library: this.txFromJSON<null>,
1655
+ set_default_send_library: this.txFromJSON<null>,
1656
+ set_default_receive_library: this.txFromJSON<null>,
1657
+ set_default_receive_lib_timeout: this.txFromJSON<null>,
1658
+ set_send_library: this.txFromJSON<null>,
1659
+ set_receive_library: this.txFromJSON<null>,
1660
+ set_receive_library_timeout: this.txFromJSON<null>,
1661
+ set_config: this.txFromJSON<null>,
1662
+ is_registered_library: this.txFromJSON<boolean>,
1663
+ get_library_index: this.txFromJSON<Option<u32>>,
1664
+ registered_libraries_count: this.txFromJSON<u32>,
1665
+ get_registered_libraries: this.txFromJSON<Array<string>>,
1666
+ is_supported_eid: this.txFromJSON<boolean>,
1667
+ default_send_library: this.txFromJSON<Option<string>>,
1668
+ default_receive_library: this.txFromJSON<Option<string>>,
1669
+ default_receive_library_timeout: this.txFromJSON<Option<Timeout>>,
1670
+ get_send_library: this.txFromJSON<ResolvedLibrary>,
1671
+ get_receive_library: this.txFromJSON<ResolvedLibrary>,
1672
+ receive_library_timeout: this.txFromJSON<Option<Timeout>>,
1673
+ is_valid_receive_library: this.txFromJSON<boolean>,
1674
+ get_config: this.txFromJSON<Buffer>,
1675
+ quote: this.txFromJSON<MessagingFee>,
1676
+ send: this.txFromJSON<MessagingReceipt>,
1677
+ verify: this.txFromJSON<null>,
1678
+ clear: this.txFromJSON<null>,
1679
+ lz_receive_alert: this.txFromJSON<null>,
1680
+ set_zro: this.txFromJSON<null>,
1681
+ set_delegate: this.txFromJSON<null>,
1682
+ eid: this.txFromJSON<u32>,
1683
+ initializable: this.txFromJSON<boolean>,
1684
+ verifiable: this.txFromJSON<boolean>,
1685
+ native_token: this.txFromJSON<string>,
1686
+ zro: this.txFromJSON<Option<string>>,
1687
+ delegate: this.txFromJSON<Option<string>>,
1688
+ recover_token: this.txFromJSON<null>,
1689
+ owner: this.txFromJSON<Option<string>>,
1690
+ transfer_ownership: this.txFromJSON<null>,
1691
+ renounce_ownership: this.txFromJSON<null>,
1692
+ set_ttl_config: this.txFromJSON<null>,
1693
+ ttl_config: this.txFromJSON<readonly [Option<TtlConfig>, Option<TtlConfig>, Option<TtlConfig>]>,
1694
+ freeze_ttl_config: this.txFromJSON<null>,
1695
+ is_ttl_config_frozen: this.txFromJSON<boolean>
1696
+ }
1697
+ }