@layerzerolabs/lz-evm-sdk-v2 2.0.21 → 2.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/deployments/joc-testnet/DVN.json +1929 -0
  2. package/deployments/joc-testnet/DVNFeeLib.json +398 -0
  3. package/deployments/joc-testnet/DefaultProxyAdmin.json +258 -0
  4. package/deployments/joc-testnet/EndpointV2.json +3000 -0
  5. package/deployments/joc-testnet/EndpointV2View.json +435 -0
  6. package/deployments/joc-testnet/EndpointV2View_Implementation.json +313 -0
  7. package/deployments/joc-testnet/EndpointV2View_Proxy.json +230 -0
  8. package/deployments/joc-testnet/Executor.json +1532 -0
  9. package/deployments/joc-testnet/ExecutorFeeLib.json +423 -0
  10. package/deployments/joc-testnet/ExecutorProxyAdmin.json +283 -0
  11. package/deployments/joc-testnet/Executor_Implementation.json +1591 -0
  12. package/deployments/joc-testnet/Executor_Proxy.json +365 -0
  13. package/deployments/joc-testnet/LzExecutor.json +757 -0
  14. package/deployments/joc-testnet/LzExecutor_Implementation.json +703 -0
  15. package/deployments/joc-testnet/LzExecutor_Proxy.json +244 -0
  16. package/deployments/joc-testnet/ReceiveUln301.json +1292 -0
  17. package/deployments/joc-testnet/ReceiveUln301View.json +354 -0
  18. package/deployments/joc-testnet/ReceiveUln301View_Implementation.json +231 -0
  19. package/deployments/joc-testnet/ReceiveUln301View_Proxy.json +230 -0
  20. package/deployments/joc-testnet/ReceiveUln302.json +1006 -0
  21. package/deployments/joc-testnet/ReceiveUln302View.json +478 -0
  22. package/deployments/joc-testnet/ReceiveUln302View_Implementation.json +384 -0
  23. package/deployments/joc-testnet/ReceiveUln302View_Proxy.json +230 -0
  24. package/deployments/joc-testnet/SendUln301.json +1569 -0
  25. package/deployments/joc-testnet/SendUln302.json +1527 -0
  26. package/deployments/joc-testnet/Treasury.json +412 -0
  27. package/deployments/joc-testnet/TreasuryFeeHandler.json +125 -0
  28. package/package.json +8 -8
@@ -0,0 +1,3000 @@
1
+ {
2
+ "address": "0x6EDCE65403992e310A62460808c4b910D972f10f",
3
+ "abi": [
4
+ {
5
+ "inputs": [
6
+ {
7
+ "internalType": "uint32",
8
+ "name": "_eid",
9
+ "type": "uint32"
10
+ },
11
+ {
12
+ "internalType": "address",
13
+ "name": "_owner",
14
+ "type": "address"
15
+ }
16
+ ],
17
+ "stateMutability": "nonpayable",
18
+ "type": "constructor"
19
+ },
20
+ {
21
+ "inputs": [],
22
+ "name": "LZ_AlreadyRegistered",
23
+ "type": "error"
24
+ },
25
+ {
26
+ "inputs": [],
27
+ "name": "LZ_ComposeExists",
28
+ "type": "error"
29
+ },
30
+ {
31
+ "inputs": [
32
+ {
33
+ "internalType": "bytes32",
34
+ "name": "expected",
35
+ "type": "bytes32"
36
+ },
37
+ {
38
+ "internalType": "bytes32",
39
+ "name": "actual",
40
+ "type": "bytes32"
41
+ }
42
+ ],
43
+ "name": "LZ_ComposeNotFound",
44
+ "type": "error"
45
+ },
46
+ {
47
+ "inputs": [],
48
+ "name": "LZ_DefaultReceiveLibUnavailable",
49
+ "type": "error"
50
+ },
51
+ {
52
+ "inputs": [],
53
+ "name": "LZ_DefaultSendLibUnavailable",
54
+ "type": "error"
55
+ },
56
+ {
57
+ "inputs": [
58
+ {
59
+ "internalType": "uint256",
60
+ "name": "requiredNative",
61
+ "type": "uint256"
62
+ },
63
+ {
64
+ "internalType": "uint256",
65
+ "name": "suppliedNative",
66
+ "type": "uint256"
67
+ },
68
+ {
69
+ "internalType": "uint256",
70
+ "name": "requiredLzToken",
71
+ "type": "uint256"
72
+ },
73
+ {
74
+ "internalType": "uint256",
75
+ "name": "suppliedLzToken",
76
+ "type": "uint256"
77
+ }
78
+ ],
79
+ "name": "LZ_InsufficientFee",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [],
84
+ "name": "LZ_InvalidExpiry",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "uint64",
91
+ "name": "nonce",
92
+ "type": "uint64"
93
+ }
94
+ ],
95
+ "name": "LZ_InvalidNonce",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [],
100
+ "name": "LZ_InvalidPayloadHash",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [],
105
+ "name": "LZ_InvalidReceiveLibrary",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [],
110
+ "name": "LZ_LzTokenUnavailable",
111
+ "type": "error"
112
+ },
113
+ {
114
+ "inputs": [],
115
+ "name": "LZ_OnlyNonDefaultLib",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "LZ_OnlyReceiveLib",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "inputs": [],
125
+ "name": "LZ_OnlyRegisteredLib",
126
+ "type": "error"
127
+ },
128
+ {
129
+ "inputs": [],
130
+ "name": "LZ_OnlyRegisteredOrDefaultLib",
131
+ "type": "error"
132
+ },
133
+ {
134
+ "inputs": [],
135
+ "name": "LZ_OnlySendLib",
136
+ "type": "error"
137
+ },
138
+ {
139
+ "inputs": [],
140
+ "name": "LZ_PathNotInitializable",
141
+ "type": "error"
142
+ },
143
+ {
144
+ "inputs": [],
145
+ "name": "LZ_PathNotVerifiable",
146
+ "type": "error"
147
+ },
148
+ {
149
+ "inputs": [
150
+ {
151
+ "internalType": "bytes32",
152
+ "name": "expected",
153
+ "type": "bytes32"
154
+ },
155
+ {
156
+ "internalType": "bytes32",
157
+ "name": "actual",
158
+ "type": "bytes32"
159
+ }
160
+ ],
161
+ "name": "LZ_PayloadHashNotFound",
162
+ "type": "error"
163
+ },
164
+ {
165
+ "inputs": [],
166
+ "name": "LZ_SameValue",
167
+ "type": "error"
168
+ },
169
+ {
170
+ "inputs": [],
171
+ "name": "LZ_SendReentrancy",
172
+ "type": "error"
173
+ },
174
+ {
175
+ "inputs": [],
176
+ "name": "LZ_Unauthorized",
177
+ "type": "error"
178
+ },
179
+ {
180
+ "inputs": [],
181
+ "name": "LZ_UnsupportedEid",
182
+ "type": "error"
183
+ },
184
+ {
185
+ "inputs": [],
186
+ "name": "LZ_UnsupportedInterface",
187
+ "type": "error"
188
+ },
189
+ {
190
+ "inputs": [],
191
+ "name": "LZ_ZeroLzTokenFee",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [
196
+ {
197
+ "internalType": "address",
198
+ "name": "_to",
199
+ "type": "address"
200
+ },
201
+ {
202
+ "internalType": "uint256",
203
+ "name": "_value",
204
+ "type": "uint256"
205
+ }
206
+ ],
207
+ "name": "Transfer_NativeFailed",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "inputs": [],
212
+ "name": "Transfer_ToAddressIsZero",
213
+ "type": "error"
214
+ },
215
+ {
216
+ "anonymous": false,
217
+ "inputs": [
218
+ {
219
+ "indexed": false,
220
+ "internalType": "address",
221
+ "name": "from",
222
+ "type": "address"
223
+ },
224
+ {
225
+ "indexed": false,
226
+ "internalType": "address",
227
+ "name": "to",
228
+ "type": "address"
229
+ },
230
+ {
231
+ "indexed": false,
232
+ "internalType": "bytes32",
233
+ "name": "guid",
234
+ "type": "bytes32"
235
+ },
236
+ {
237
+ "indexed": false,
238
+ "internalType": "uint16",
239
+ "name": "index",
240
+ "type": "uint16"
241
+ }
242
+ ],
243
+ "name": "ComposeDelivered",
244
+ "type": "event"
245
+ },
246
+ {
247
+ "anonymous": false,
248
+ "inputs": [
249
+ {
250
+ "indexed": false,
251
+ "internalType": "address",
252
+ "name": "from",
253
+ "type": "address"
254
+ },
255
+ {
256
+ "indexed": false,
257
+ "internalType": "address",
258
+ "name": "to",
259
+ "type": "address"
260
+ },
261
+ {
262
+ "indexed": false,
263
+ "internalType": "bytes32",
264
+ "name": "guid",
265
+ "type": "bytes32"
266
+ },
267
+ {
268
+ "indexed": false,
269
+ "internalType": "uint16",
270
+ "name": "index",
271
+ "type": "uint16"
272
+ },
273
+ {
274
+ "indexed": false,
275
+ "internalType": "bytes",
276
+ "name": "message",
277
+ "type": "bytes"
278
+ }
279
+ ],
280
+ "name": "ComposeSent",
281
+ "type": "event"
282
+ },
283
+ {
284
+ "anonymous": false,
285
+ "inputs": [
286
+ {
287
+ "indexed": false,
288
+ "internalType": "uint32",
289
+ "name": "eid",
290
+ "type": "uint32"
291
+ },
292
+ {
293
+ "indexed": false,
294
+ "internalType": "address",
295
+ "name": "newLib",
296
+ "type": "address"
297
+ }
298
+ ],
299
+ "name": "DefaultReceiveLibrarySet",
300
+ "type": "event"
301
+ },
302
+ {
303
+ "anonymous": false,
304
+ "inputs": [
305
+ {
306
+ "indexed": false,
307
+ "internalType": "uint32",
308
+ "name": "eid",
309
+ "type": "uint32"
310
+ },
311
+ {
312
+ "indexed": false,
313
+ "internalType": "address",
314
+ "name": "oldLib",
315
+ "type": "address"
316
+ },
317
+ {
318
+ "indexed": false,
319
+ "internalType": "uint256",
320
+ "name": "expiry",
321
+ "type": "uint256"
322
+ }
323
+ ],
324
+ "name": "DefaultReceiveLibraryTimeoutSet",
325
+ "type": "event"
326
+ },
327
+ {
328
+ "anonymous": false,
329
+ "inputs": [
330
+ {
331
+ "indexed": false,
332
+ "internalType": "uint32",
333
+ "name": "eid",
334
+ "type": "uint32"
335
+ },
336
+ {
337
+ "indexed": false,
338
+ "internalType": "address",
339
+ "name": "newLib",
340
+ "type": "address"
341
+ }
342
+ ],
343
+ "name": "DefaultSendLibrarySet",
344
+ "type": "event"
345
+ },
346
+ {
347
+ "anonymous": false,
348
+ "inputs": [
349
+ {
350
+ "indexed": false,
351
+ "internalType": "address",
352
+ "name": "sender",
353
+ "type": "address"
354
+ },
355
+ {
356
+ "indexed": false,
357
+ "internalType": "address",
358
+ "name": "delegate",
359
+ "type": "address"
360
+ }
361
+ ],
362
+ "name": "DelegateSet",
363
+ "type": "event"
364
+ },
365
+ {
366
+ "anonymous": false,
367
+ "inputs": [
368
+ {
369
+ "indexed": false,
370
+ "internalType": "uint32",
371
+ "name": "srcEid",
372
+ "type": "uint32"
373
+ },
374
+ {
375
+ "indexed": false,
376
+ "internalType": "bytes32",
377
+ "name": "sender",
378
+ "type": "bytes32"
379
+ },
380
+ {
381
+ "indexed": false,
382
+ "internalType": "address",
383
+ "name": "receiver",
384
+ "type": "address"
385
+ },
386
+ {
387
+ "indexed": false,
388
+ "internalType": "uint64",
389
+ "name": "nonce",
390
+ "type": "uint64"
391
+ }
392
+ ],
393
+ "name": "InboundNonceSkipped",
394
+ "type": "event"
395
+ },
396
+ {
397
+ "anonymous": false,
398
+ "inputs": [
399
+ {
400
+ "indexed": false,
401
+ "internalType": "address",
402
+ "name": "newLib",
403
+ "type": "address"
404
+ }
405
+ ],
406
+ "name": "LibraryRegistered",
407
+ "type": "event"
408
+ },
409
+ {
410
+ "anonymous": false,
411
+ "inputs": [
412
+ {
413
+ "indexed": true,
414
+ "internalType": "address",
415
+ "name": "from",
416
+ "type": "address"
417
+ },
418
+ {
419
+ "indexed": true,
420
+ "internalType": "address",
421
+ "name": "to",
422
+ "type": "address"
423
+ },
424
+ {
425
+ "indexed": true,
426
+ "internalType": "address",
427
+ "name": "executor",
428
+ "type": "address"
429
+ },
430
+ {
431
+ "indexed": false,
432
+ "internalType": "bytes32",
433
+ "name": "guid",
434
+ "type": "bytes32"
435
+ },
436
+ {
437
+ "indexed": false,
438
+ "internalType": "uint16",
439
+ "name": "index",
440
+ "type": "uint16"
441
+ },
442
+ {
443
+ "indexed": false,
444
+ "internalType": "uint256",
445
+ "name": "gas",
446
+ "type": "uint256"
447
+ },
448
+ {
449
+ "indexed": false,
450
+ "internalType": "uint256",
451
+ "name": "value",
452
+ "type": "uint256"
453
+ },
454
+ {
455
+ "indexed": false,
456
+ "internalType": "bytes",
457
+ "name": "message",
458
+ "type": "bytes"
459
+ },
460
+ {
461
+ "indexed": false,
462
+ "internalType": "bytes",
463
+ "name": "extraData",
464
+ "type": "bytes"
465
+ },
466
+ {
467
+ "indexed": false,
468
+ "internalType": "bytes",
469
+ "name": "reason",
470
+ "type": "bytes"
471
+ }
472
+ ],
473
+ "name": "LzComposeAlert",
474
+ "type": "event"
475
+ },
476
+ {
477
+ "anonymous": false,
478
+ "inputs": [
479
+ {
480
+ "indexed": true,
481
+ "internalType": "address",
482
+ "name": "receiver",
483
+ "type": "address"
484
+ },
485
+ {
486
+ "indexed": true,
487
+ "internalType": "address",
488
+ "name": "executor",
489
+ "type": "address"
490
+ },
491
+ {
492
+ "components": [
493
+ {
494
+ "internalType": "uint32",
495
+ "name": "srcEid",
496
+ "type": "uint32"
497
+ },
498
+ {
499
+ "internalType": "bytes32",
500
+ "name": "sender",
501
+ "type": "bytes32"
502
+ },
503
+ {
504
+ "internalType": "uint64",
505
+ "name": "nonce",
506
+ "type": "uint64"
507
+ }
508
+ ],
509
+ "indexed": false,
510
+ "internalType": "struct Origin",
511
+ "name": "origin",
512
+ "type": "tuple"
513
+ },
514
+ {
515
+ "indexed": false,
516
+ "internalType": "bytes32",
517
+ "name": "guid",
518
+ "type": "bytes32"
519
+ },
520
+ {
521
+ "indexed": false,
522
+ "internalType": "uint256",
523
+ "name": "gas",
524
+ "type": "uint256"
525
+ },
526
+ {
527
+ "indexed": false,
528
+ "internalType": "uint256",
529
+ "name": "value",
530
+ "type": "uint256"
531
+ },
532
+ {
533
+ "indexed": false,
534
+ "internalType": "bytes",
535
+ "name": "message",
536
+ "type": "bytes"
537
+ },
538
+ {
539
+ "indexed": false,
540
+ "internalType": "bytes",
541
+ "name": "extraData",
542
+ "type": "bytes"
543
+ },
544
+ {
545
+ "indexed": false,
546
+ "internalType": "bytes",
547
+ "name": "reason",
548
+ "type": "bytes"
549
+ }
550
+ ],
551
+ "name": "LzReceiveAlert",
552
+ "type": "event"
553
+ },
554
+ {
555
+ "anonymous": false,
556
+ "inputs": [
557
+ {
558
+ "indexed": false,
559
+ "internalType": "address",
560
+ "name": "token",
561
+ "type": "address"
562
+ }
563
+ ],
564
+ "name": "LzTokenSet",
565
+ "type": "event"
566
+ },
567
+ {
568
+ "anonymous": false,
569
+ "inputs": [
570
+ {
571
+ "indexed": true,
572
+ "internalType": "address",
573
+ "name": "previousOwner",
574
+ "type": "address"
575
+ },
576
+ {
577
+ "indexed": true,
578
+ "internalType": "address",
579
+ "name": "newOwner",
580
+ "type": "address"
581
+ }
582
+ ],
583
+ "name": "OwnershipTransferred",
584
+ "type": "event"
585
+ },
586
+ {
587
+ "anonymous": false,
588
+ "inputs": [
589
+ {
590
+ "indexed": false,
591
+ "internalType": "uint32",
592
+ "name": "srcEid",
593
+ "type": "uint32"
594
+ },
595
+ {
596
+ "indexed": false,
597
+ "internalType": "bytes32",
598
+ "name": "sender",
599
+ "type": "bytes32"
600
+ },
601
+ {
602
+ "indexed": false,
603
+ "internalType": "address",
604
+ "name": "receiver",
605
+ "type": "address"
606
+ },
607
+ {
608
+ "indexed": false,
609
+ "internalType": "uint64",
610
+ "name": "nonce",
611
+ "type": "uint64"
612
+ },
613
+ {
614
+ "indexed": false,
615
+ "internalType": "bytes32",
616
+ "name": "payloadHash",
617
+ "type": "bytes32"
618
+ }
619
+ ],
620
+ "name": "PacketBurnt",
621
+ "type": "event"
622
+ },
623
+ {
624
+ "anonymous": false,
625
+ "inputs": [
626
+ {
627
+ "components": [
628
+ {
629
+ "internalType": "uint32",
630
+ "name": "srcEid",
631
+ "type": "uint32"
632
+ },
633
+ {
634
+ "internalType": "bytes32",
635
+ "name": "sender",
636
+ "type": "bytes32"
637
+ },
638
+ {
639
+ "internalType": "uint64",
640
+ "name": "nonce",
641
+ "type": "uint64"
642
+ }
643
+ ],
644
+ "indexed": false,
645
+ "internalType": "struct Origin",
646
+ "name": "origin",
647
+ "type": "tuple"
648
+ },
649
+ {
650
+ "indexed": false,
651
+ "internalType": "address",
652
+ "name": "receiver",
653
+ "type": "address"
654
+ }
655
+ ],
656
+ "name": "PacketDelivered",
657
+ "type": "event"
658
+ },
659
+ {
660
+ "anonymous": false,
661
+ "inputs": [
662
+ {
663
+ "indexed": false,
664
+ "internalType": "uint32",
665
+ "name": "srcEid",
666
+ "type": "uint32"
667
+ },
668
+ {
669
+ "indexed": false,
670
+ "internalType": "bytes32",
671
+ "name": "sender",
672
+ "type": "bytes32"
673
+ },
674
+ {
675
+ "indexed": false,
676
+ "internalType": "address",
677
+ "name": "receiver",
678
+ "type": "address"
679
+ },
680
+ {
681
+ "indexed": false,
682
+ "internalType": "uint64",
683
+ "name": "nonce",
684
+ "type": "uint64"
685
+ },
686
+ {
687
+ "indexed": false,
688
+ "internalType": "bytes32",
689
+ "name": "payloadHash",
690
+ "type": "bytes32"
691
+ }
692
+ ],
693
+ "name": "PacketNilified",
694
+ "type": "event"
695
+ },
696
+ {
697
+ "anonymous": false,
698
+ "inputs": [
699
+ {
700
+ "indexed": false,
701
+ "internalType": "bytes",
702
+ "name": "encodedPayload",
703
+ "type": "bytes"
704
+ },
705
+ {
706
+ "indexed": false,
707
+ "internalType": "bytes",
708
+ "name": "options",
709
+ "type": "bytes"
710
+ },
711
+ {
712
+ "indexed": false,
713
+ "internalType": "address",
714
+ "name": "sendLibrary",
715
+ "type": "address"
716
+ }
717
+ ],
718
+ "name": "PacketSent",
719
+ "type": "event"
720
+ },
721
+ {
722
+ "anonymous": false,
723
+ "inputs": [
724
+ {
725
+ "components": [
726
+ {
727
+ "internalType": "uint32",
728
+ "name": "srcEid",
729
+ "type": "uint32"
730
+ },
731
+ {
732
+ "internalType": "bytes32",
733
+ "name": "sender",
734
+ "type": "bytes32"
735
+ },
736
+ {
737
+ "internalType": "uint64",
738
+ "name": "nonce",
739
+ "type": "uint64"
740
+ }
741
+ ],
742
+ "indexed": false,
743
+ "internalType": "struct Origin",
744
+ "name": "origin",
745
+ "type": "tuple"
746
+ },
747
+ {
748
+ "indexed": false,
749
+ "internalType": "address",
750
+ "name": "receiver",
751
+ "type": "address"
752
+ },
753
+ {
754
+ "indexed": false,
755
+ "internalType": "bytes32",
756
+ "name": "payloadHash",
757
+ "type": "bytes32"
758
+ }
759
+ ],
760
+ "name": "PacketVerified",
761
+ "type": "event"
762
+ },
763
+ {
764
+ "anonymous": false,
765
+ "inputs": [
766
+ {
767
+ "indexed": false,
768
+ "internalType": "address",
769
+ "name": "receiver",
770
+ "type": "address"
771
+ },
772
+ {
773
+ "indexed": false,
774
+ "internalType": "uint32",
775
+ "name": "eid",
776
+ "type": "uint32"
777
+ },
778
+ {
779
+ "indexed": false,
780
+ "internalType": "address",
781
+ "name": "newLib",
782
+ "type": "address"
783
+ }
784
+ ],
785
+ "name": "ReceiveLibrarySet",
786
+ "type": "event"
787
+ },
788
+ {
789
+ "anonymous": false,
790
+ "inputs": [
791
+ {
792
+ "indexed": false,
793
+ "internalType": "address",
794
+ "name": "receiver",
795
+ "type": "address"
796
+ },
797
+ {
798
+ "indexed": false,
799
+ "internalType": "uint32",
800
+ "name": "eid",
801
+ "type": "uint32"
802
+ },
803
+ {
804
+ "indexed": false,
805
+ "internalType": "address",
806
+ "name": "oldLib",
807
+ "type": "address"
808
+ },
809
+ {
810
+ "indexed": false,
811
+ "internalType": "uint256",
812
+ "name": "timeout",
813
+ "type": "uint256"
814
+ }
815
+ ],
816
+ "name": "ReceiveLibraryTimeoutSet",
817
+ "type": "event"
818
+ },
819
+ {
820
+ "anonymous": false,
821
+ "inputs": [
822
+ {
823
+ "indexed": false,
824
+ "internalType": "address",
825
+ "name": "sender",
826
+ "type": "address"
827
+ },
828
+ {
829
+ "indexed": false,
830
+ "internalType": "uint32",
831
+ "name": "eid",
832
+ "type": "uint32"
833
+ },
834
+ {
835
+ "indexed": false,
836
+ "internalType": "address",
837
+ "name": "newLib",
838
+ "type": "address"
839
+ }
840
+ ],
841
+ "name": "SendLibrarySet",
842
+ "type": "event"
843
+ },
844
+ {
845
+ "inputs": [],
846
+ "name": "EMPTY_PAYLOAD_HASH",
847
+ "outputs": [
848
+ {
849
+ "internalType": "bytes32",
850
+ "name": "",
851
+ "type": "bytes32"
852
+ }
853
+ ],
854
+ "stateMutability": "view",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [],
859
+ "name": "NIL_PAYLOAD_HASH",
860
+ "outputs": [
861
+ {
862
+ "internalType": "bytes32",
863
+ "name": "",
864
+ "type": "bytes32"
865
+ }
866
+ ],
867
+ "stateMutability": "view",
868
+ "type": "function"
869
+ },
870
+ {
871
+ "inputs": [],
872
+ "name": "blockedLibrary",
873
+ "outputs": [
874
+ {
875
+ "internalType": "address",
876
+ "name": "",
877
+ "type": "address"
878
+ }
879
+ ],
880
+ "stateMutability": "view",
881
+ "type": "function"
882
+ },
883
+ {
884
+ "inputs": [
885
+ {
886
+ "internalType": "address",
887
+ "name": "_oapp",
888
+ "type": "address"
889
+ },
890
+ {
891
+ "internalType": "uint32",
892
+ "name": "_srcEid",
893
+ "type": "uint32"
894
+ },
895
+ {
896
+ "internalType": "bytes32",
897
+ "name": "_sender",
898
+ "type": "bytes32"
899
+ },
900
+ {
901
+ "internalType": "uint64",
902
+ "name": "_nonce",
903
+ "type": "uint64"
904
+ },
905
+ {
906
+ "internalType": "bytes32",
907
+ "name": "_payloadHash",
908
+ "type": "bytes32"
909
+ }
910
+ ],
911
+ "name": "burn",
912
+ "outputs": [],
913
+ "stateMutability": "nonpayable",
914
+ "type": "function"
915
+ },
916
+ {
917
+ "inputs": [
918
+ {
919
+ "internalType": "address",
920
+ "name": "_oapp",
921
+ "type": "address"
922
+ },
923
+ {
924
+ "components": [
925
+ {
926
+ "internalType": "uint32",
927
+ "name": "srcEid",
928
+ "type": "uint32"
929
+ },
930
+ {
931
+ "internalType": "bytes32",
932
+ "name": "sender",
933
+ "type": "bytes32"
934
+ },
935
+ {
936
+ "internalType": "uint64",
937
+ "name": "nonce",
938
+ "type": "uint64"
939
+ }
940
+ ],
941
+ "internalType": "struct Origin",
942
+ "name": "_origin",
943
+ "type": "tuple"
944
+ },
945
+ {
946
+ "internalType": "bytes32",
947
+ "name": "_guid",
948
+ "type": "bytes32"
949
+ },
950
+ {
951
+ "internalType": "bytes",
952
+ "name": "_message",
953
+ "type": "bytes"
954
+ }
955
+ ],
956
+ "name": "clear",
957
+ "outputs": [],
958
+ "stateMutability": "nonpayable",
959
+ "type": "function"
960
+ },
961
+ {
962
+ "inputs": [
963
+ {
964
+ "internalType": "address",
965
+ "name": "from",
966
+ "type": "address"
967
+ },
968
+ {
969
+ "internalType": "address",
970
+ "name": "to",
971
+ "type": "address"
972
+ },
973
+ {
974
+ "internalType": "bytes32",
975
+ "name": "guid",
976
+ "type": "bytes32"
977
+ },
978
+ {
979
+ "internalType": "uint16",
980
+ "name": "index",
981
+ "type": "uint16"
982
+ }
983
+ ],
984
+ "name": "composeQueue",
985
+ "outputs": [
986
+ {
987
+ "internalType": "bytes32",
988
+ "name": "messageHash",
989
+ "type": "bytes32"
990
+ }
991
+ ],
992
+ "stateMutability": "view",
993
+ "type": "function"
994
+ },
995
+ {
996
+ "inputs": [
997
+ {
998
+ "internalType": "uint32",
999
+ "name": "srcEid",
1000
+ "type": "uint32"
1001
+ }
1002
+ ],
1003
+ "name": "defaultReceiveLibrary",
1004
+ "outputs": [
1005
+ {
1006
+ "internalType": "address",
1007
+ "name": "lib",
1008
+ "type": "address"
1009
+ }
1010
+ ],
1011
+ "stateMutability": "view",
1012
+ "type": "function"
1013
+ },
1014
+ {
1015
+ "inputs": [
1016
+ {
1017
+ "internalType": "uint32",
1018
+ "name": "srcEid",
1019
+ "type": "uint32"
1020
+ }
1021
+ ],
1022
+ "name": "defaultReceiveLibraryTimeout",
1023
+ "outputs": [
1024
+ {
1025
+ "internalType": "address",
1026
+ "name": "lib",
1027
+ "type": "address"
1028
+ },
1029
+ {
1030
+ "internalType": "uint256",
1031
+ "name": "expiry",
1032
+ "type": "uint256"
1033
+ }
1034
+ ],
1035
+ "stateMutability": "view",
1036
+ "type": "function"
1037
+ },
1038
+ {
1039
+ "inputs": [
1040
+ {
1041
+ "internalType": "uint32",
1042
+ "name": "dstEid",
1043
+ "type": "uint32"
1044
+ }
1045
+ ],
1046
+ "name": "defaultSendLibrary",
1047
+ "outputs": [
1048
+ {
1049
+ "internalType": "address",
1050
+ "name": "lib",
1051
+ "type": "address"
1052
+ }
1053
+ ],
1054
+ "stateMutability": "view",
1055
+ "type": "function"
1056
+ },
1057
+ {
1058
+ "inputs": [
1059
+ {
1060
+ "internalType": "address",
1061
+ "name": "oapp",
1062
+ "type": "address"
1063
+ }
1064
+ ],
1065
+ "name": "delegates",
1066
+ "outputs": [
1067
+ {
1068
+ "internalType": "address",
1069
+ "name": "delegate",
1070
+ "type": "address"
1071
+ }
1072
+ ],
1073
+ "stateMutability": "view",
1074
+ "type": "function"
1075
+ },
1076
+ {
1077
+ "inputs": [],
1078
+ "name": "eid",
1079
+ "outputs": [
1080
+ {
1081
+ "internalType": "uint32",
1082
+ "name": "",
1083
+ "type": "uint32"
1084
+ }
1085
+ ],
1086
+ "stateMutability": "view",
1087
+ "type": "function"
1088
+ },
1089
+ {
1090
+ "inputs": [
1091
+ {
1092
+ "internalType": "address",
1093
+ "name": "_oapp",
1094
+ "type": "address"
1095
+ },
1096
+ {
1097
+ "internalType": "address",
1098
+ "name": "_lib",
1099
+ "type": "address"
1100
+ },
1101
+ {
1102
+ "internalType": "uint32",
1103
+ "name": "_eid",
1104
+ "type": "uint32"
1105
+ },
1106
+ {
1107
+ "internalType": "uint32",
1108
+ "name": "_configType",
1109
+ "type": "uint32"
1110
+ }
1111
+ ],
1112
+ "name": "getConfig",
1113
+ "outputs": [
1114
+ {
1115
+ "internalType": "bytes",
1116
+ "name": "config",
1117
+ "type": "bytes"
1118
+ }
1119
+ ],
1120
+ "stateMutability": "view",
1121
+ "type": "function"
1122
+ },
1123
+ {
1124
+ "inputs": [
1125
+ {
1126
+ "internalType": "address",
1127
+ "name": "_receiver",
1128
+ "type": "address"
1129
+ },
1130
+ {
1131
+ "internalType": "uint32",
1132
+ "name": "_srcEid",
1133
+ "type": "uint32"
1134
+ }
1135
+ ],
1136
+ "name": "getReceiveLibrary",
1137
+ "outputs": [
1138
+ {
1139
+ "internalType": "address",
1140
+ "name": "lib",
1141
+ "type": "address"
1142
+ },
1143
+ {
1144
+ "internalType": "bool",
1145
+ "name": "isDefault",
1146
+ "type": "bool"
1147
+ }
1148
+ ],
1149
+ "stateMutability": "view",
1150
+ "type": "function"
1151
+ },
1152
+ {
1153
+ "inputs": [],
1154
+ "name": "getRegisteredLibraries",
1155
+ "outputs": [
1156
+ {
1157
+ "internalType": "address[]",
1158
+ "name": "",
1159
+ "type": "address[]"
1160
+ }
1161
+ ],
1162
+ "stateMutability": "view",
1163
+ "type": "function"
1164
+ },
1165
+ {
1166
+ "inputs": [],
1167
+ "name": "getSendContext",
1168
+ "outputs": [
1169
+ {
1170
+ "internalType": "uint32",
1171
+ "name": "",
1172
+ "type": "uint32"
1173
+ },
1174
+ {
1175
+ "internalType": "address",
1176
+ "name": "",
1177
+ "type": "address"
1178
+ }
1179
+ ],
1180
+ "stateMutability": "view",
1181
+ "type": "function"
1182
+ },
1183
+ {
1184
+ "inputs": [
1185
+ {
1186
+ "internalType": "address",
1187
+ "name": "_sender",
1188
+ "type": "address"
1189
+ },
1190
+ {
1191
+ "internalType": "uint32",
1192
+ "name": "_dstEid",
1193
+ "type": "uint32"
1194
+ }
1195
+ ],
1196
+ "name": "getSendLibrary",
1197
+ "outputs": [
1198
+ {
1199
+ "internalType": "address",
1200
+ "name": "lib",
1201
+ "type": "address"
1202
+ }
1203
+ ],
1204
+ "stateMutability": "view",
1205
+ "type": "function"
1206
+ },
1207
+ {
1208
+ "inputs": [
1209
+ {
1210
+ "internalType": "address",
1211
+ "name": "_receiver",
1212
+ "type": "address"
1213
+ },
1214
+ {
1215
+ "internalType": "uint32",
1216
+ "name": "_srcEid",
1217
+ "type": "uint32"
1218
+ },
1219
+ {
1220
+ "internalType": "bytes32",
1221
+ "name": "_sender",
1222
+ "type": "bytes32"
1223
+ }
1224
+ ],
1225
+ "name": "inboundNonce",
1226
+ "outputs": [
1227
+ {
1228
+ "internalType": "uint64",
1229
+ "name": "",
1230
+ "type": "uint64"
1231
+ }
1232
+ ],
1233
+ "stateMutability": "view",
1234
+ "type": "function"
1235
+ },
1236
+ {
1237
+ "inputs": [
1238
+ {
1239
+ "internalType": "address",
1240
+ "name": "receiver",
1241
+ "type": "address"
1242
+ },
1243
+ {
1244
+ "internalType": "uint32",
1245
+ "name": "srcEid",
1246
+ "type": "uint32"
1247
+ },
1248
+ {
1249
+ "internalType": "bytes32",
1250
+ "name": "sender",
1251
+ "type": "bytes32"
1252
+ },
1253
+ {
1254
+ "internalType": "uint64",
1255
+ "name": "inboundNonce",
1256
+ "type": "uint64"
1257
+ }
1258
+ ],
1259
+ "name": "inboundPayloadHash",
1260
+ "outputs": [
1261
+ {
1262
+ "internalType": "bytes32",
1263
+ "name": "payloadHash",
1264
+ "type": "bytes32"
1265
+ }
1266
+ ],
1267
+ "stateMutability": "view",
1268
+ "type": "function"
1269
+ },
1270
+ {
1271
+ "inputs": [
1272
+ {
1273
+ "components": [
1274
+ {
1275
+ "internalType": "uint32",
1276
+ "name": "srcEid",
1277
+ "type": "uint32"
1278
+ },
1279
+ {
1280
+ "internalType": "bytes32",
1281
+ "name": "sender",
1282
+ "type": "bytes32"
1283
+ },
1284
+ {
1285
+ "internalType": "uint64",
1286
+ "name": "nonce",
1287
+ "type": "uint64"
1288
+ }
1289
+ ],
1290
+ "internalType": "struct Origin",
1291
+ "name": "_origin",
1292
+ "type": "tuple"
1293
+ },
1294
+ {
1295
+ "internalType": "address",
1296
+ "name": "_receiver",
1297
+ "type": "address"
1298
+ }
1299
+ ],
1300
+ "name": "initializable",
1301
+ "outputs": [
1302
+ {
1303
+ "internalType": "bool",
1304
+ "name": "",
1305
+ "type": "bool"
1306
+ }
1307
+ ],
1308
+ "stateMutability": "view",
1309
+ "type": "function"
1310
+ },
1311
+ {
1312
+ "inputs": [
1313
+ {
1314
+ "internalType": "address",
1315
+ "name": "_sender",
1316
+ "type": "address"
1317
+ },
1318
+ {
1319
+ "internalType": "uint32",
1320
+ "name": "_dstEid",
1321
+ "type": "uint32"
1322
+ }
1323
+ ],
1324
+ "name": "isDefaultSendLibrary",
1325
+ "outputs": [
1326
+ {
1327
+ "internalType": "bool",
1328
+ "name": "",
1329
+ "type": "bool"
1330
+ }
1331
+ ],
1332
+ "stateMutability": "view",
1333
+ "type": "function"
1334
+ },
1335
+ {
1336
+ "inputs": [
1337
+ {
1338
+ "internalType": "address",
1339
+ "name": "lib",
1340
+ "type": "address"
1341
+ }
1342
+ ],
1343
+ "name": "isRegisteredLibrary",
1344
+ "outputs": [
1345
+ {
1346
+ "internalType": "bool",
1347
+ "name": "",
1348
+ "type": "bool"
1349
+ }
1350
+ ],
1351
+ "stateMutability": "view",
1352
+ "type": "function"
1353
+ },
1354
+ {
1355
+ "inputs": [],
1356
+ "name": "isSendingMessage",
1357
+ "outputs": [
1358
+ {
1359
+ "internalType": "bool",
1360
+ "name": "",
1361
+ "type": "bool"
1362
+ }
1363
+ ],
1364
+ "stateMutability": "view",
1365
+ "type": "function"
1366
+ },
1367
+ {
1368
+ "inputs": [
1369
+ {
1370
+ "internalType": "uint32",
1371
+ "name": "_eid",
1372
+ "type": "uint32"
1373
+ }
1374
+ ],
1375
+ "name": "isSupportedEid",
1376
+ "outputs": [
1377
+ {
1378
+ "internalType": "bool",
1379
+ "name": "",
1380
+ "type": "bool"
1381
+ }
1382
+ ],
1383
+ "stateMutability": "view",
1384
+ "type": "function"
1385
+ },
1386
+ {
1387
+ "inputs": [
1388
+ {
1389
+ "internalType": "address",
1390
+ "name": "_receiver",
1391
+ "type": "address"
1392
+ },
1393
+ {
1394
+ "internalType": "uint32",
1395
+ "name": "_srcEid",
1396
+ "type": "uint32"
1397
+ },
1398
+ {
1399
+ "internalType": "address",
1400
+ "name": "_actualReceiveLib",
1401
+ "type": "address"
1402
+ }
1403
+ ],
1404
+ "name": "isValidReceiveLibrary",
1405
+ "outputs": [
1406
+ {
1407
+ "internalType": "bool",
1408
+ "name": "",
1409
+ "type": "bool"
1410
+ }
1411
+ ],
1412
+ "stateMutability": "view",
1413
+ "type": "function"
1414
+ },
1415
+ {
1416
+ "inputs": [
1417
+ {
1418
+ "internalType": "address",
1419
+ "name": "receiver",
1420
+ "type": "address"
1421
+ },
1422
+ {
1423
+ "internalType": "uint32",
1424
+ "name": "srcEid",
1425
+ "type": "uint32"
1426
+ },
1427
+ {
1428
+ "internalType": "bytes32",
1429
+ "name": "sender",
1430
+ "type": "bytes32"
1431
+ }
1432
+ ],
1433
+ "name": "lazyInboundNonce",
1434
+ "outputs": [
1435
+ {
1436
+ "internalType": "uint64",
1437
+ "name": "nonce",
1438
+ "type": "uint64"
1439
+ }
1440
+ ],
1441
+ "stateMutability": "view",
1442
+ "type": "function"
1443
+ },
1444
+ {
1445
+ "inputs": [
1446
+ {
1447
+ "internalType": "address",
1448
+ "name": "_from",
1449
+ "type": "address"
1450
+ },
1451
+ {
1452
+ "internalType": "address",
1453
+ "name": "_to",
1454
+ "type": "address"
1455
+ },
1456
+ {
1457
+ "internalType": "bytes32",
1458
+ "name": "_guid",
1459
+ "type": "bytes32"
1460
+ },
1461
+ {
1462
+ "internalType": "uint16",
1463
+ "name": "_index",
1464
+ "type": "uint16"
1465
+ },
1466
+ {
1467
+ "internalType": "bytes",
1468
+ "name": "_message",
1469
+ "type": "bytes"
1470
+ },
1471
+ {
1472
+ "internalType": "bytes",
1473
+ "name": "_extraData",
1474
+ "type": "bytes"
1475
+ }
1476
+ ],
1477
+ "name": "lzCompose",
1478
+ "outputs": [],
1479
+ "stateMutability": "payable",
1480
+ "type": "function"
1481
+ },
1482
+ {
1483
+ "inputs": [
1484
+ {
1485
+ "internalType": "address",
1486
+ "name": "_from",
1487
+ "type": "address"
1488
+ },
1489
+ {
1490
+ "internalType": "address",
1491
+ "name": "_to",
1492
+ "type": "address"
1493
+ },
1494
+ {
1495
+ "internalType": "bytes32",
1496
+ "name": "_guid",
1497
+ "type": "bytes32"
1498
+ },
1499
+ {
1500
+ "internalType": "uint16",
1501
+ "name": "_index",
1502
+ "type": "uint16"
1503
+ },
1504
+ {
1505
+ "internalType": "uint256",
1506
+ "name": "_gas",
1507
+ "type": "uint256"
1508
+ },
1509
+ {
1510
+ "internalType": "uint256",
1511
+ "name": "_value",
1512
+ "type": "uint256"
1513
+ },
1514
+ {
1515
+ "internalType": "bytes",
1516
+ "name": "_message",
1517
+ "type": "bytes"
1518
+ },
1519
+ {
1520
+ "internalType": "bytes",
1521
+ "name": "_extraData",
1522
+ "type": "bytes"
1523
+ },
1524
+ {
1525
+ "internalType": "bytes",
1526
+ "name": "_reason",
1527
+ "type": "bytes"
1528
+ }
1529
+ ],
1530
+ "name": "lzComposeAlert",
1531
+ "outputs": [],
1532
+ "stateMutability": "nonpayable",
1533
+ "type": "function"
1534
+ },
1535
+ {
1536
+ "inputs": [
1537
+ {
1538
+ "components": [
1539
+ {
1540
+ "internalType": "uint32",
1541
+ "name": "srcEid",
1542
+ "type": "uint32"
1543
+ },
1544
+ {
1545
+ "internalType": "bytes32",
1546
+ "name": "sender",
1547
+ "type": "bytes32"
1548
+ },
1549
+ {
1550
+ "internalType": "uint64",
1551
+ "name": "nonce",
1552
+ "type": "uint64"
1553
+ }
1554
+ ],
1555
+ "internalType": "struct Origin",
1556
+ "name": "_origin",
1557
+ "type": "tuple"
1558
+ },
1559
+ {
1560
+ "internalType": "address",
1561
+ "name": "_receiver",
1562
+ "type": "address"
1563
+ },
1564
+ {
1565
+ "internalType": "bytes32",
1566
+ "name": "_guid",
1567
+ "type": "bytes32"
1568
+ },
1569
+ {
1570
+ "internalType": "bytes",
1571
+ "name": "_message",
1572
+ "type": "bytes"
1573
+ },
1574
+ {
1575
+ "internalType": "bytes",
1576
+ "name": "_extraData",
1577
+ "type": "bytes"
1578
+ }
1579
+ ],
1580
+ "name": "lzReceive",
1581
+ "outputs": [],
1582
+ "stateMutability": "payable",
1583
+ "type": "function"
1584
+ },
1585
+ {
1586
+ "inputs": [
1587
+ {
1588
+ "components": [
1589
+ {
1590
+ "internalType": "uint32",
1591
+ "name": "srcEid",
1592
+ "type": "uint32"
1593
+ },
1594
+ {
1595
+ "internalType": "bytes32",
1596
+ "name": "sender",
1597
+ "type": "bytes32"
1598
+ },
1599
+ {
1600
+ "internalType": "uint64",
1601
+ "name": "nonce",
1602
+ "type": "uint64"
1603
+ }
1604
+ ],
1605
+ "internalType": "struct Origin",
1606
+ "name": "_origin",
1607
+ "type": "tuple"
1608
+ },
1609
+ {
1610
+ "internalType": "address",
1611
+ "name": "_receiver",
1612
+ "type": "address"
1613
+ },
1614
+ {
1615
+ "internalType": "bytes32",
1616
+ "name": "_guid",
1617
+ "type": "bytes32"
1618
+ },
1619
+ {
1620
+ "internalType": "uint256",
1621
+ "name": "_gas",
1622
+ "type": "uint256"
1623
+ },
1624
+ {
1625
+ "internalType": "uint256",
1626
+ "name": "_value",
1627
+ "type": "uint256"
1628
+ },
1629
+ {
1630
+ "internalType": "bytes",
1631
+ "name": "_message",
1632
+ "type": "bytes"
1633
+ },
1634
+ {
1635
+ "internalType": "bytes",
1636
+ "name": "_extraData",
1637
+ "type": "bytes"
1638
+ },
1639
+ {
1640
+ "internalType": "bytes",
1641
+ "name": "_reason",
1642
+ "type": "bytes"
1643
+ }
1644
+ ],
1645
+ "name": "lzReceiveAlert",
1646
+ "outputs": [],
1647
+ "stateMutability": "nonpayable",
1648
+ "type": "function"
1649
+ },
1650
+ {
1651
+ "inputs": [],
1652
+ "name": "lzToken",
1653
+ "outputs": [
1654
+ {
1655
+ "internalType": "address",
1656
+ "name": "",
1657
+ "type": "address"
1658
+ }
1659
+ ],
1660
+ "stateMutability": "view",
1661
+ "type": "function"
1662
+ },
1663
+ {
1664
+ "inputs": [],
1665
+ "name": "nativeToken",
1666
+ "outputs": [
1667
+ {
1668
+ "internalType": "address",
1669
+ "name": "",
1670
+ "type": "address"
1671
+ }
1672
+ ],
1673
+ "stateMutability": "view",
1674
+ "type": "function"
1675
+ },
1676
+ {
1677
+ "inputs": [
1678
+ {
1679
+ "internalType": "address",
1680
+ "name": "_sender",
1681
+ "type": "address"
1682
+ },
1683
+ {
1684
+ "internalType": "uint32",
1685
+ "name": "_dstEid",
1686
+ "type": "uint32"
1687
+ },
1688
+ {
1689
+ "internalType": "bytes32",
1690
+ "name": "_receiver",
1691
+ "type": "bytes32"
1692
+ }
1693
+ ],
1694
+ "name": "nextGuid",
1695
+ "outputs": [
1696
+ {
1697
+ "internalType": "bytes32",
1698
+ "name": "",
1699
+ "type": "bytes32"
1700
+ }
1701
+ ],
1702
+ "stateMutability": "view",
1703
+ "type": "function"
1704
+ },
1705
+ {
1706
+ "inputs": [
1707
+ {
1708
+ "internalType": "address",
1709
+ "name": "_oapp",
1710
+ "type": "address"
1711
+ },
1712
+ {
1713
+ "internalType": "uint32",
1714
+ "name": "_srcEid",
1715
+ "type": "uint32"
1716
+ },
1717
+ {
1718
+ "internalType": "bytes32",
1719
+ "name": "_sender",
1720
+ "type": "bytes32"
1721
+ },
1722
+ {
1723
+ "internalType": "uint64",
1724
+ "name": "_nonce",
1725
+ "type": "uint64"
1726
+ },
1727
+ {
1728
+ "internalType": "bytes32",
1729
+ "name": "_payloadHash",
1730
+ "type": "bytes32"
1731
+ }
1732
+ ],
1733
+ "name": "nilify",
1734
+ "outputs": [],
1735
+ "stateMutability": "nonpayable",
1736
+ "type": "function"
1737
+ },
1738
+ {
1739
+ "inputs": [
1740
+ {
1741
+ "internalType": "address",
1742
+ "name": "sender",
1743
+ "type": "address"
1744
+ },
1745
+ {
1746
+ "internalType": "uint32",
1747
+ "name": "dstEid",
1748
+ "type": "uint32"
1749
+ },
1750
+ {
1751
+ "internalType": "bytes32",
1752
+ "name": "receiver",
1753
+ "type": "bytes32"
1754
+ }
1755
+ ],
1756
+ "name": "outboundNonce",
1757
+ "outputs": [
1758
+ {
1759
+ "internalType": "uint64",
1760
+ "name": "nonce",
1761
+ "type": "uint64"
1762
+ }
1763
+ ],
1764
+ "stateMutability": "view",
1765
+ "type": "function"
1766
+ },
1767
+ {
1768
+ "inputs": [],
1769
+ "name": "owner",
1770
+ "outputs": [
1771
+ {
1772
+ "internalType": "address",
1773
+ "name": "",
1774
+ "type": "address"
1775
+ }
1776
+ ],
1777
+ "stateMutability": "view",
1778
+ "type": "function"
1779
+ },
1780
+ {
1781
+ "inputs": [
1782
+ {
1783
+ "components": [
1784
+ {
1785
+ "internalType": "uint32",
1786
+ "name": "dstEid",
1787
+ "type": "uint32"
1788
+ },
1789
+ {
1790
+ "internalType": "bytes32",
1791
+ "name": "receiver",
1792
+ "type": "bytes32"
1793
+ },
1794
+ {
1795
+ "internalType": "bytes",
1796
+ "name": "message",
1797
+ "type": "bytes"
1798
+ },
1799
+ {
1800
+ "internalType": "bytes",
1801
+ "name": "options",
1802
+ "type": "bytes"
1803
+ },
1804
+ {
1805
+ "internalType": "bool",
1806
+ "name": "payInLzToken",
1807
+ "type": "bool"
1808
+ }
1809
+ ],
1810
+ "internalType": "struct MessagingParams",
1811
+ "name": "_params",
1812
+ "type": "tuple"
1813
+ },
1814
+ {
1815
+ "internalType": "address",
1816
+ "name": "_sender",
1817
+ "type": "address"
1818
+ }
1819
+ ],
1820
+ "name": "quote",
1821
+ "outputs": [
1822
+ {
1823
+ "components": [
1824
+ {
1825
+ "internalType": "uint256",
1826
+ "name": "nativeFee",
1827
+ "type": "uint256"
1828
+ },
1829
+ {
1830
+ "internalType": "uint256",
1831
+ "name": "lzTokenFee",
1832
+ "type": "uint256"
1833
+ }
1834
+ ],
1835
+ "internalType": "struct MessagingFee",
1836
+ "name": "",
1837
+ "type": "tuple"
1838
+ }
1839
+ ],
1840
+ "stateMutability": "view",
1841
+ "type": "function"
1842
+ },
1843
+ {
1844
+ "inputs": [
1845
+ {
1846
+ "internalType": "address",
1847
+ "name": "receiver",
1848
+ "type": "address"
1849
+ },
1850
+ {
1851
+ "internalType": "uint32",
1852
+ "name": "srcEid",
1853
+ "type": "uint32"
1854
+ }
1855
+ ],
1856
+ "name": "receiveLibraryTimeout",
1857
+ "outputs": [
1858
+ {
1859
+ "internalType": "address",
1860
+ "name": "lib",
1861
+ "type": "address"
1862
+ },
1863
+ {
1864
+ "internalType": "uint256",
1865
+ "name": "expiry",
1866
+ "type": "uint256"
1867
+ }
1868
+ ],
1869
+ "stateMutability": "view",
1870
+ "type": "function"
1871
+ },
1872
+ {
1873
+ "inputs": [
1874
+ {
1875
+ "internalType": "address",
1876
+ "name": "_token",
1877
+ "type": "address"
1878
+ },
1879
+ {
1880
+ "internalType": "address",
1881
+ "name": "_to",
1882
+ "type": "address"
1883
+ },
1884
+ {
1885
+ "internalType": "uint256",
1886
+ "name": "_amount",
1887
+ "type": "uint256"
1888
+ }
1889
+ ],
1890
+ "name": "recoverToken",
1891
+ "outputs": [],
1892
+ "stateMutability": "nonpayable",
1893
+ "type": "function"
1894
+ },
1895
+ {
1896
+ "inputs": [
1897
+ {
1898
+ "internalType": "address",
1899
+ "name": "_lib",
1900
+ "type": "address"
1901
+ }
1902
+ ],
1903
+ "name": "registerLibrary",
1904
+ "outputs": [],
1905
+ "stateMutability": "nonpayable",
1906
+ "type": "function"
1907
+ },
1908
+ {
1909
+ "inputs": [],
1910
+ "name": "renounceOwnership",
1911
+ "outputs": [],
1912
+ "stateMutability": "nonpayable",
1913
+ "type": "function"
1914
+ },
1915
+ {
1916
+ "inputs": [
1917
+ {
1918
+ "components": [
1919
+ {
1920
+ "internalType": "uint32",
1921
+ "name": "dstEid",
1922
+ "type": "uint32"
1923
+ },
1924
+ {
1925
+ "internalType": "bytes32",
1926
+ "name": "receiver",
1927
+ "type": "bytes32"
1928
+ },
1929
+ {
1930
+ "internalType": "bytes",
1931
+ "name": "message",
1932
+ "type": "bytes"
1933
+ },
1934
+ {
1935
+ "internalType": "bytes",
1936
+ "name": "options",
1937
+ "type": "bytes"
1938
+ },
1939
+ {
1940
+ "internalType": "bool",
1941
+ "name": "payInLzToken",
1942
+ "type": "bool"
1943
+ }
1944
+ ],
1945
+ "internalType": "struct MessagingParams",
1946
+ "name": "_params",
1947
+ "type": "tuple"
1948
+ },
1949
+ {
1950
+ "internalType": "address",
1951
+ "name": "_refundAddress",
1952
+ "type": "address"
1953
+ }
1954
+ ],
1955
+ "name": "send",
1956
+ "outputs": [
1957
+ {
1958
+ "components": [
1959
+ {
1960
+ "internalType": "bytes32",
1961
+ "name": "guid",
1962
+ "type": "bytes32"
1963
+ },
1964
+ {
1965
+ "internalType": "uint64",
1966
+ "name": "nonce",
1967
+ "type": "uint64"
1968
+ },
1969
+ {
1970
+ "components": [
1971
+ {
1972
+ "internalType": "uint256",
1973
+ "name": "nativeFee",
1974
+ "type": "uint256"
1975
+ },
1976
+ {
1977
+ "internalType": "uint256",
1978
+ "name": "lzTokenFee",
1979
+ "type": "uint256"
1980
+ }
1981
+ ],
1982
+ "internalType": "struct MessagingFee",
1983
+ "name": "fee",
1984
+ "type": "tuple"
1985
+ }
1986
+ ],
1987
+ "internalType": "struct MessagingReceipt",
1988
+ "name": "",
1989
+ "type": "tuple"
1990
+ }
1991
+ ],
1992
+ "stateMutability": "payable",
1993
+ "type": "function"
1994
+ },
1995
+ {
1996
+ "inputs": [
1997
+ {
1998
+ "internalType": "address",
1999
+ "name": "_to",
2000
+ "type": "address"
2001
+ },
2002
+ {
2003
+ "internalType": "bytes32",
2004
+ "name": "_guid",
2005
+ "type": "bytes32"
2006
+ },
2007
+ {
2008
+ "internalType": "uint16",
2009
+ "name": "_index",
2010
+ "type": "uint16"
2011
+ },
2012
+ {
2013
+ "internalType": "bytes",
2014
+ "name": "_message",
2015
+ "type": "bytes"
2016
+ }
2017
+ ],
2018
+ "name": "sendCompose",
2019
+ "outputs": [],
2020
+ "stateMutability": "nonpayable",
2021
+ "type": "function"
2022
+ },
2023
+ {
2024
+ "inputs": [
2025
+ {
2026
+ "internalType": "address",
2027
+ "name": "_oapp",
2028
+ "type": "address"
2029
+ },
2030
+ {
2031
+ "internalType": "address",
2032
+ "name": "_lib",
2033
+ "type": "address"
2034
+ },
2035
+ {
2036
+ "components": [
2037
+ {
2038
+ "internalType": "uint32",
2039
+ "name": "eid",
2040
+ "type": "uint32"
2041
+ },
2042
+ {
2043
+ "internalType": "uint32",
2044
+ "name": "configType",
2045
+ "type": "uint32"
2046
+ },
2047
+ {
2048
+ "internalType": "bytes",
2049
+ "name": "config",
2050
+ "type": "bytes"
2051
+ }
2052
+ ],
2053
+ "internalType": "struct SetConfigParam[]",
2054
+ "name": "_params",
2055
+ "type": "tuple[]"
2056
+ }
2057
+ ],
2058
+ "name": "setConfig",
2059
+ "outputs": [],
2060
+ "stateMutability": "nonpayable",
2061
+ "type": "function"
2062
+ },
2063
+ {
2064
+ "inputs": [
2065
+ {
2066
+ "internalType": "uint32",
2067
+ "name": "_eid",
2068
+ "type": "uint32"
2069
+ },
2070
+ {
2071
+ "internalType": "address",
2072
+ "name": "_newLib",
2073
+ "type": "address"
2074
+ },
2075
+ {
2076
+ "internalType": "uint256",
2077
+ "name": "_gracePeriod",
2078
+ "type": "uint256"
2079
+ }
2080
+ ],
2081
+ "name": "setDefaultReceiveLibrary",
2082
+ "outputs": [],
2083
+ "stateMutability": "nonpayable",
2084
+ "type": "function"
2085
+ },
2086
+ {
2087
+ "inputs": [
2088
+ {
2089
+ "internalType": "uint32",
2090
+ "name": "_eid",
2091
+ "type": "uint32"
2092
+ },
2093
+ {
2094
+ "internalType": "address",
2095
+ "name": "_lib",
2096
+ "type": "address"
2097
+ },
2098
+ {
2099
+ "internalType": "uint256",
2100
+ "name": "_expiry",
2101
+ "type": "uint256"
2102
+ }
2103
+ ],
2104
+ "name": "setDefaultReceiveLibraryTimeout",
2105
+ "outputs": [],
2106
+ "stateMutability": "nonpayable",
2107
+ "type": "function"
2108
+ },
2109
+ {
2110
+ "inputs": [
2111
+ {
2112
+ "internalType": "uint32",
2113
+ "name": "_eid",
2114
+ "type": "uint32"
2115
+ },
2116
+ {
2117
+ "internalType": "address",
2118
+ "name": "_newLib",
2119
+ "type": "address"
2120
+ }
2121
+ ],
2122
+ "name": "setDefaultSendLibrary",
2123
+ "outputs": [],
2124
+ "stateMutability": "nonpayable",
2125
+ "type": "function"
2126
+ },
2127
+ {
2128
+ "inputs": [
2129
+ {
2130
+ "internalType": "address",
2131
+ "name": "_delegate",
2132
+ "type": "address"
2133
+ }
2134
+ ],
2135
+ "name": "setDelegate",
2136
+ "outputs": [],
2137
+ "stateMutability": "nonpayable",
2138
+ "type": "function"
2139
+ },
2140
+ {
2141
+ "inputs": [
2142
+ {
2143
+ "internalType": "address",
2144
+ "name": "_lzToken",
2145
+ "type": "address"
2146
+ }
2147
+ ],
2148
+ "name": "setLzToken",
2149
+ "outputs": [],
2150
+ "stateMutability": "nonpayable",
2151
+ "type": "function"
2152
+ },
2153
+ {
2154
+ "inputs": [
2155
+ {
2156
+ "internalType": "address",
2157
+ "name": "_oapp",
2158
+ "type": "address"
2159
+ },
2160
+ {
2161
+ "internalType": "uint32",
2162
+ "name": "_eid",
2163
+ "type": "uint32"
2164
+ },
2165
+ {
2166
+ "internalType": "address",
2167
+ "name": "_newLib",
2168
+ "type": "address"
2169
+ },
2170
+ {
2171
+ "internalType": "uint256",
2172
+ "name": "_gracePeriod",
2173
+ "type": "uint256"
2174
+ }
2175
+ ],
2176
+ "name": "setReceiveLibrary",
2177
+ "outputs": [],
2178
+ "stateMutability": "nonpayable",
2179
+ "type": "function"
2180
+ },
2181
+ {
2182
+ "inputs": [
2183
+ {
2184
+ "internalType": "address",
2185
+ "name": "_oapp",
2186
+ "type": "address"
2187
+ },
2188
+ {
2189
+ "internalType": "uint32",
2190
+ "name": "_eid",
2191
+ "type": "uint32"
2192
+ },
2193
+ {
2194
+ "internalType": "address",
2195
+ "name": "_lib",
2196
+ "type": "address"
2197
+ },
2198
+ {
2199
+ "internalType": "uint256",
2200
+ "name": "_expiry",
2201
+ "type": "uint256"
2202
+ }
2203
+ ],
2204
+ "name": "setReceiveLibraryTimeout",
2205
+ "outputs": [],
2206
+ "stateMutability": "nonpayable",
2207
+ "type": "function"
2208
+ },
2209
+ {
2210
+ "inputs": [
2211
+ {
2212
+ "internalType": "address",
2213
+ "name": "_oapp",
2214
+ "type": "address"
2215
+ },
2216
+ {
2217
+ "internalType": "uint32",
2218
+ "name": "_eid",
2219
+ "type": "uint32"
2220
+ },
2221
+ {
2222
+ "internalType": "address",
2223
+ "name": "_newLib",
2224
+ "type": "address"
2225
+ }
2226
+ ],
2227
+ "name": "setSendLibrary",
2228
+ "outputs": [],
2229
+ "stateMutability": "nonpayable",
2230
+ "type": "function"
2231
+ },
2232
+ {
2233
+ "inputs": [
2234
+ {
2235
+ "internalType": "address",
2236
+ "name": "_oapp",
2237
+ "type": "address"
2238
+ },
2239
+ {
2240
+ "internalType": "uint32",
2241
+ "name": "_srcEid",
2242
+ "type": "uint32"
2243
+ },
2244
+ {
2245
+ "internalType": "bytes32",
2246
+ "name": "_sender",
2247
+ "type": "bytes32"
2248
+ },
2249
+ {
2250
+ "internalType": "uint64",
2251
+ "name": "_nonce",
2252
+ "type": "uint64"
2253
+ }
2254
+ ],
2255
+ "name": "skip",
2256
+ "outputs": [],
2257
+ "stateMutability": "nonpayable",
2258
+ "type": "function"
2259
+ },
2260
+ {
2261
+ "inputs": [
2262
+ {
2263
+ "internalType": "address",
2264
+ "name": "newOwner",
2265
+ "type": "address"
2266
+ }
2267
+ ],
2268
+ "name": "transferOwnership",
2269
+ "outputs": [],
2270
+ "stateMutability": "nonpayable",
2271
+ "type": "function"
2272
+ },
2273
+ {
2274
+ "inputs": [
2275
+ {
2276
+ "components": [
2277
+ {
2278
+ "internalType": "uint32",
2279
+ "name": "srcEid",
2280
+ "type": "uint32"
2281
+ },
2282
+ {
2283
+ "internalType": "bytes32",
2284
+ "name": "sender",
2285
+ "type": "bytes32"
2286
+ },
2287
+ {
2288
+ "internalType": "uint64",
2289
+ "name": "nonce",
2290
+ "type": "uint64"
2291
+ }
2292
+ ],
2293
+ "internalType": "struct Origin",
2294
+ "name": "_origin",
2295
+ "type": "tuple"
2296
+ },
2297
+ {
2298
+ "internalType": "address",
2299
+ "name": "_receiver",
2300
+ "type": "address"
2301
+ }
2302
+ ],
2303
+ "name": "verifiable",
2304
+ "outputs": [
2305
+ {
2306
+ "internalType": "bool",
2307
+ "name": "",
2308
+ "type": "bool"
2309
+ }
2310
+ ],
2311
+ "stateMutability": "view",
2312
+ "type": "function"
2313
+ },
2314
+ {
2315
+ "inputs": [
2316
+ {
2317
+ "components": [
2318
+ {
2319
+ "internalType": "uint32",
2320
+ "name": "srcEid",
2321
+ "type": "uint32"
2322
+ },
2323
+ {
2324
+ "internalType": "bytes32",
2325
+ "name": "sender",
2326
+ "type": "bytes32"
2327
+ },
2328
+ {
2329
+ "internalType": "uint64",
2330
+ "name": "nonce",
2331
+ "type": "uint64"
2332
+ }
2333
+ ],
2334
+ "internalType": "struct Origin",
2335
+ "name": "_origin",
2336
+ "type": "tuple"
2337
+ },
2338
+ {
2339
+ "internalType": "address",
2340
+ "name": "_receiver",
2341
+ "type": "address"
2342
+ },
2343
+ {
2344
+ "internalType": "bytes32",
2345
+ "name": "_payloadHash",
2346
+ "type": "bytes32"
2347
+ }
2348
+ ],
2349
+ "name": "verify",
2350
+ "outputs": [],
2351
+ "stateMutability": "nonpayable",
2352
+ "type": "function"
2353
+ }
2354
+ ],
2355
+ "args": [
2356
+ 40242,
2357
+ "0xc13b65f7c53Cd6db2EA205a4b574b4a0858720A6"
2358
+ ],
2359
+ "numDeployments": 1,
2360
+ "solcInputHash": "cc8b972ef3991998357eab663cd2d081",
2361
+ "bytecode": "0x60c06040526001600d553480156200001657600080fd5b50604051620063f0380380620063f08339810160408190526200003991620002d6565b816200004533620000a6565b63ffffffff166080526040516200005c90620002c8565b604051809103906000f08015801562000079573d6000803e3d6000fd5b506001600160a01b031660a08190526200009390620000f6565b6200009e81620000a6565b505062000353565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200010062000267565b6040516301ffc9a760e01b81526325fc096160e21b60048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa1580156200014c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000172919062000328565b620001905760405163eb64f35d60e01b815260040160405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615620001cb5760405163457517f360e11b815260040160405180910390fd5b6001600160a01b0381166000818152600560209081526040808320805460ff191660019081179091556004805491820181559093527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90920180546001600160a01b0319168417905590519182527f6b374d56679ca9463f27c85c6311e2bb7fde69bf201d3da39d53f10bd9d78af5910160405180910390a150565b6000546001600160a01b03163314620002c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b61028f806200616183390190565b60008060408385031215620002ea57600080fd5b825163ffffffff81168114620002ff57600080fd5b60208401519092506001600160a01b03811681146200031d57600080fd5b809150509250929050565b6000602082840312156200033b57600080fd5b815180151581146200034c57600080fd5b9392505050565b60805160a051615dc56200039c60003960006107b101526000818161055f01528181612e270152818161384c015281816138b30152818161408801526140ef0152615dc56000f3fe6080604052600436106103605760003560e01c80639132e5c3116101c6578063c9fc7bcd116100f7578063ddc28c5811610095578063e8964e811161006f578063e8964e8114610bc0578063ef667aa114610be0578063f2fde38b14610c2b578063f64be4c714610c4b57600080fd5b8063ddc28c5814610b5f578063e1758bd814610b8c578063e4fe1d9414610ba057600080fd5b8063d4b4ec8f116100d1578063d4b4ec8f14610aa3578063d70b890214610ac3578063dc706a6214610ae3578063dc93c8a214610b1357600080fd5b8063c9fc7bcd14610a27578063ca5eb5e114610a6e578063cb5026b914610a8e57600080fd5b8063a7229fd911610164578063aafea3121161013e578063aafea312146109a7578063b96a277f146109c7578063c28e0eed146109e7578063c9a54a9914610a0757600080fd5b8063a7229fd914610947578063a825d74714610967578063aafe5e071461098757600080fd5b80639c6d7340116101a05780639c6d73401461089f5780639d7f9775146108e7578063a0dd43fc14610907578063a718531b1461092757600080fd5b80639132e5c31461084a57806391d20fa11461086c5780639535ff301461087f57600080fd5b80635b17bb70116102a05780636f50a8031161023e57806379624ca91161021857806379624ca9146107d35780637cb59012146107ec578063861e1ca51461080c5780638da5cb5b1461082c57600080fd5b80636f50a80314610754578063715018a61461078a578063733180911461079f57600080fd5b80636a14d7151161027a5780636a14d715146106955780636bf73fa3146106b55780636dbd9f90146106d55780636e83f5bb146106f557600080fd5b80635b17bb70146105e45780636750cd4c14610645578063697fe6b61461067557600080fd5b80632baf0be71161030d578063402f8468116102e7578063402f8468146104ee57806340f806831461052d578063416ecebf1461054d578063587cde1e1461059657600080fd5b80632baf0be7146104455780632e80fbf31461048757806335d330b0146104a757600080fd5b80632637a4501161033e5780632637a450146103d85780632a56c1b0146103f85780632b3197b91461041857600080fd5b80630c0c389e1461036557806314f651a91461037a578063183c834f146103b8575b600080fd5b610378610373366004614bce565b610c81565b005b34801561038657600080fd5b5061038f610d98565b6040805163ffffffff90931683526001600160a01b039091166020830152015b60405180910390f35b3480156103c457600080fd5b506103786103d3366004614c7e565b610dca565b6103eb6103e6366004614cc9565b611155565b6040516103af9190614d1c565b34801561040457600080fd5b50610378610413366004614d5f565b6112be565b34801561042457600080fd5b50610438610433366004614dcf565b61137c565b6040516103af9190614e91565b34801561045157600080fd5b506104797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6040519081526020016103af565b34801561049357600080fd5b506103786104a2366004614ebc565b611497565b3480156104b357600080fd5b506104796104c2366004614f23565b600c60209081526000948552604080862082529385528385208152918452828420909152825290205481565b3480156104fa57600080fd5b5061050e610509366004614f65565b61166e565b604080516001600160a01b0390931683529015156020830152016103af565b34801561053957600080fd5b50610378610548366004614ebc565b611705565b34801561055957600080fd5b506105817f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016103af565b3480156105a257600080fd5b506105cc6105b1366004614f8f565b600f602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016103af565b3480156105f057600080fd5b5061062c6105ff366004614faa565b600160209081526000938452604080852082529284528284209052825290205467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016103af565b34801561065157600080fd5b50610665610660366004614fe6565b6118b5565b60405190151581526020016103af565b34801561068157600080fd5b50610378610690366004615001565b611905565b3480156106a157600080fd5b506103786106b0366004614c7e565b61197a565b3480156106c157600080fd5b506103786106d03660046150ff565b611e7a565b3480156106e157600080fd5b506103786106f03660046151e3565b611ee4565b34801561070157600080fd5b50610735610710366004614fe6565b600b60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016103af565b34801561076057600080fd5b506105cc61076f366004614fe6565b600a602052600090815260409020546001600160a01b031681565b34801561079657600080fd5b50610378611fb8565b3480156107ab57600080fd5b506105cc7f000000000000000000000000000000000000000000000000000000000000000081565b3480156107df57600080fd5b50600d5460011415610665565b3480156107f857600080fd5b50610378610807366004615274565b611fcc565b34801561081857600080fd5b506106656108273660046152c6565b6120d1565b34801561083857600080fd5b506000546001600160a01b03166105cc565b34801561085657600080fd5b5061085f61213e565b6040516103af91906152f1565b61037861087a36600461533e565b6121a0565b34801561088b57600080fd5b5061037861089a3660046153e9565b612362565b3480156108ab57600080fd5b5061062c6108ba366004614faa565b600360209081526000938452604080852082529284528284209052825290205467ffffffffffffffff1681565b3480156108f357600080fd5b506106656109023660046153e9565b61265b565b34801561091357600080fd5b5061062c610922366004614faa565b612735565b34801561093357600080fd5b5061037861094236600461542c565b6127ce565b34801561095357600080fd5b50610378610962366004615458565b612bd7565b34801561097357600080fd5b50610378610982366004615476565b612bef565b34801561099357600080fd5b506104796109a2366004614faa565b612d87565b3480156109b357600080fd5b506103786109c23660046154b3565b612e96565b3480156109d357600080fd5b506105cc6109e2366004614f65565b613154565b3480156109f357600080fd5b50610378610a02366004614f8f565b6131dc565b348015610a1357600080fd5b50610665610a223660046152c6565b613251565b348015610a3357600080fd5b50610479610a423660046154cf565b600260209081526000948552604080862082529385528385208152918452828420909152825290205481565b348015610a7a57600080fd5b50610378610a89366004614f8f565b6132b7565b348015610a9a57600080fd5b50610479600081565b348015610aaf57600080fd5b50610378610abe36600461542c565b61332f565b348015610acf57600080fd5b50610378610ade3660046154cf565b613633565b348015610aef57600080fd5b50610665610afe366004614f8f565b60056020526000908152604090205460ff1681565b348015610b1f57600080fd5b50610665610b2e366004614f65565b6001600160a01b03918216600090815260066020908152604080832063ffffffff9490941683529290522054161590565b348015610b6b57600080fd5b50610b7f610b7a366004614cc9565b613756565b6040516103af9190615511565b348015610b9857600080fd5b5060006105cc565b348015610bac57600080fd5b50600e546105cc906001600160a01b031681565b348015610bcc57600080fd5b50610378610bdb366004614f8f565b613a81565b348015610bec57600080fd5b50610735610bfb366004614f65565b6008602090815260009283526040808420909152908252902080546001909101546001600160a01b039091169082565b348015610c3757600080fd5b50610378610c46366004614f8f565b613c7f565b348015610c5757600080fd5b506105cc610c66366004614fe6565b6009602052600090815260409020546001600160a01b031681565b610cd086610c9260208a018a614fe6565b60208a0135610ca760608c0160408d01615528565b898989604051602001610cbc93929190615543565b604051602081830303815290604052613d29565b506040517f13137d650000000000000000000000000000000000000000000000000000000081526001600160a01b038716906313137d65903490610d24908b908a908a908a9033908b908b906004016155e0565b6000604051808303818588803b158015610d3d57600080fd5b505af1158015610d51573d6000803e3d6000fd5b50505050507f3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca048787604051610d87929190615637565b60405180910390a150505050505050565b600080610da8600d546001141590565b610db457600080610dc2565b610dc2600d5460a081901c91565b915091509091565b6001600160a01b038216600090815260056020526040902054829060ff16610e1e576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615610eda576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e92919061568a565b6002811115610ea357610ea361565b565b03610eda576040517f84ead63600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615610fa8576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015610f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7291906156b9565b610fa8576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fb188613f6c565b6000610fbd898961166e565b9150508015610ff8576040517f3c075f7500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b85600003611058576001600160a01b038916600090815260086020908152604080832063ffffffff8c168452909152812080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168155600101556110ef565b438611611091576040517f05df9f2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03898116600090815260086020908152604080832063ffffffff8d168452909152902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169189169190911781556001018690555b604080516001600160a01b03808c16825263ffffffff8b166020830152891691810191909152606081018790527f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb20928906080015b60405180910390a1505050505050505050565b61115d614b15565b61116a6020840184614fe6565b336001600d54146111a7576040517fee120b0900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b77ffffffff000000000000000000000000000000000000000060a083811b919091166001600160a01b03831617600d556111e6908601608087016156d6565b80156111fb5750600e546001600160a01b0316155b15611232576040517f5af6d2aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061123f3388613fd6565b91509150600061124c3490565b9050600061126861126360a08b0160808c016156d6565b6142ba565b905061127984604001518383614388565b600e5460408501516020015161129b916001600160a01b03169083868c6143ef565b6040840151516112ad9083858b61441c565b50506001600d555095945050505050565b6112c785613f6c565b60008383836040516020016112de93929190615543565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052905061133a8661131f6020880188614fe6565b602088013561133460608a0160408b01615528565b85613d29565b507f3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca04858760405161136c929190615637565b60405180910390a1505050505050565b6001600160a01b038316600090815260056020526040902054606090849060ff166113d3576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f9c33abf700000000000000000000000000000000000000000000000000000000815263ffffffff80861660048301526001600160a01b0388811660248401529085166044830152861690639c33abf790606401600060405180830381865afa158015611447573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261148d91908101906157be565b9695505050505050565b6114a085613f6c565b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff8616845290915290205481811461152c576040517f7182306f00000000000000000000000000000000000000000000000000000000815260048101829052602481018390526044015b60405180910390fd5b6001600160a01b038616600090815260016020908152604080832063ffffffff89168452825280832087845290915290205467ffffffffffffffff90811690841611801590611579575080155b156115bc576040517fc09b635000000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401611523565b6001600160a01b038616600081815260026020908152604080832063ffffffff8a16808552908352818420898552835281842067ffffffffffffffff8916808652908452938290207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905581519081529182018890528101929092526060820152608081018390527faf0450c392c4f702515a457a362328c8aa21916048ca6d0419e248b30cb552929060a00161136c565b6001600160a01b03808316600090815260076020908152604080832063ffffffff8616845290915281205490911690816116fe5763ffffffff83166000908152600a60205260409020546001600160a01b03169150816116fa576040517f78e84d0600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060015b9250929050565b61170e85613f6c565b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff86168452909152902054818114611795576040517f7182306f0000000000000000000000000000000000000000000000000000000081526004810182905260248101839052604401611523565b8015806117e057506001600160a01b038616600090815260016020908152604080832063ffffffff89168452825280832087845290915290205467ffffffffffffffff908116908416115b15611823576040517fc09b635000000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401611523565b6001600160a01b038616600081815260026020908152604080832063ffffffff8a16808552908352818420898552835281842067ffffffffffffffff89168086529084528285209490945581519081529182018890528101929092526060820152608081018390527f7f68a37a6e69a0de35024a234558f9efe4b33b58657753d21eaaa82d51c3510e9060a00161136c565b63ffffffff81166000908152600960205260408120546001600160a01b0316158015906118ff575063ffffffff82166000908152600a60205260409020546001600160a01b031615155b92915050565b336001600160a01b03168b6001600160a01b03168d6001600160a01b03167f8a0b1dce321c5c5fb42349bce46d18087c04140de520917661fb923e44a904b98d8d8d8d8d8d8d8d8d8d6040516119649a999897969594939291906157f3565b60405180910390a4505050505050505050505050565b6001600160a01b038216600090815260056020526040902054829060ff161580156119ad57506001600160a01b03811615155b156119e4576040517fa4ff2ec300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615611aa0576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a58919061568a565b6002811115611a6957611a6961565b565b03611aa0576040517f84ead63600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615611b6e576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015611b14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3891906156b9565b611b6e576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7788613f6c565b6001600160a01b03808916600090815260076020908152604080832063ffffffff8c16845290915290205481169087168103611bdf576040517fd0ecb66b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03898116600081815260076020908152604080832063ffffffff8e168085529083529281902080547fffffffffffffffffffffffff000000000000000000000000000000000000000016958d1695861790558051938452908301919091528101919091527fcd6f92f5ac6185a5acfa02c92090746cec64d777269cbcd0ed031e396657a1c29060600160405180910390a18515611dcf576001600160a01b0381161580611c9a57506001600160a01b038716155b15611cd1576040517f3c075f7500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006040518060400160405280836001600160a01b031681526020018843611cf9919061588b565b90526001600160a01b03808c16600090815260086020908152604080832063ffffffff8f1684528252918290208451815494167fffffffffffffffffffffffff00000000000000000000000000000000000000009094169390931783558301516001909201829055519192507f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb2092891611dc1918d918d9187916001600160a01b03948516815263ffffffff93909316602084015292166040820152606081019190915260800190565b60405180910390a150611e6f565b6001600160a01b03898116600081815260086020908152604080832063ffffffff8e1680855290835281842080547fffffffffffffffffffffffff00000000000000000000000000000000000000001681556001018490558151948552918401919091529284169282019290925260608101919091527f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb2092890608001611142565b505050505050505050565b336001600160a01b03168a6001600160a01b03167f7edfa10fe10193301ad8a8bea7e968c7bcabcc64981f368e3aeada40ce26ae2c8d8c8c8c8c8c8c8c8c8c604051611ecf9a9998979695949392919061589e565b60405180910390a35050505050505050505050565b6001600160a01b038316600090815260056020526040902054839060ff16611f38576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f4185613f6c565b6040517f20efd7220000000000000000000000000000000000000000000000000000000081526001600160a01b038516906320efd72290611f8a908890879087906004016158fd565b600060405180830381600087803b158015611fa457600080fd5b505af1158015611e6f573d6000803e3d6000fd5b611fc0614446565b611fca60006144ba565b565b336000908152600c602090815260408083206001600160a01b03891684528252808320878452825280832061ffff871684529091529020541561203b576040517f1508219400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160405161204b929190615a4e565b60408051918290038220336000818152600c60209081528482206001600160a01b038c16835281528482208a8352815284822061ffff8a168352905292909220557f3d52ff888d033fd3dd1d8057da59e850c91d91a72c41dfa445b247dfedeb6dc1916120c2919088908890889088908890615a5e565b60405180910390a15050505050565b6001600160a01b038116600090815260016020908152604082206121379185918591859061210190850185614fe6565b63ffffffff1681526020808201929092526040908101600090812089840135825290925290205467ffffffffffffffff16614522565b9392505050565b6060600480548060200260200160405190810160405280929190818152602001828054801561219657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612178575b5050505050905090565b6001600160a01b038089166000908152600c60209081526040808320938b168352928152828220898352815282822061ffff8916835290528181205491516121eb9087908790615a4e565b60405180910390209050808214612238576040517f35ca595f0000000000000000000000000000000000000000000000000000000081526004810183905260248101829052604401611523565b6001600160a01b03808b166000908152600c60209081526040808320938d168084529382528083208c8452825280832061ffff8c1684529091529081902060019055517fd0a1026000000000000000000000000000000000000000000000000000000000815263d0a102609034906122c0908e908d908c908c9033908d908d90600401615aa7565b6000604051808303818588803b1580156122d957600080fd5b505af11580156122ed573d6000803e3d6000fd5b50505050507e36c98efcf9e6641dfbc9051f66f405253e8e0c2ab4a24dccda15595b7378c88a8a8a8a60405161234e94939291906001600160a01b039485168152929093166020830152604082015261ffff91909116606082015260800190565b60405180910390a150505050505050505050565b6001600160a01b038116600090815260056020526040902054819060ff1615801561239557506001600160a01b03811615155b156123cc576040517fa4ff2ec300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816001600160a01b03811615612488576001816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561241c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612440919061568a565b60028111156124515761245161565b565b03612488576040517f7a01ede200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82846001600160a01b03821615612556576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa1580156124fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252091906156b9565b612556576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61255f87613f6c565b6001600160a01b03878116600090815260066020908152604080832063ffffffff8b1684529091529020548187169116036125c6576040517fd0ecb66b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03878116600081815260066020908152604080832063ffffffff8c168085529083529281902080547fffffffffffffffffffffffff000000000000000000000000000000000000000016958b1695861790558051938452908301919091528101919091527f4cff966ebee29a156dcb34cf72c1d06231fb1777f6bdf6e8089819232f002b1c90606001610d87565b600080600061266a868661166e565b91509150816001600160a01b0316846001600160a01b03160361269257600192505050612137565b6000816126c7576001600160a01b038716600090815260086020908152604080832063ffffffff8a16845290915290206126dd565b63ffffffff86166000908152600b602052604090205b6040805180820190915281546001600160a01b03908116808352600190930154602083015290925086161480156127175750438160200151115b156127285760019350505050612137565b5060009695505050505050565b6001600160a01b038316600090815260016020908152604080832063ffffffff86168452825280832084845290915281205467ffffffffffffffff165b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff60018601168452909152902054156127c657600101612772565b949350505050565b6127d6614446565b6001600160a01b038216600090815260056020526040902054829060ff1661282a576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b038116156128e6576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561287a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061289e919061568a565b60028111156128af576128af61565b565b036128e6576040517f84ead63600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b038216156129b4576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa15801561295a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297e91906156b9565b6129b4576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff87166000908152600a60205260409020546001600160a01b039081169087168103612a10576040517fd0ecb66b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff88166000818152600a602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038c169081179091558251938452908301527fc16891855cffb4a5ac51ac11864a3f3c96ba816cc45fe686c987ae36277de5ec910160405180910390a18515612b425763ffffffff88166000908152600b6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038316178155612ae7874361588b565b600182018190556040805163ffffffff8c1681526001600160a01b038516602082015280820192909252517f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f89181900360600190a150612bcd565b63ffffffff88166000818152600b6020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000016815560010183905580519384526001600160a01b038516918401919091528201527f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f89060600160405180910390a15b5050505050505050565b612bdf614446565b612bea8383836145bd565b505050565b612c0682612c006020860186614fe6565b3361265b565b612c3c576040517f4fa6ecac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03821660009081526001602090815260408220908290612c6590870187614fe6565b63ffffffff1681526020808201929092526040908101600090812087840135825290925290205467ffffffffffffffff169050612ca3848483614522565b612cd9576040517f751cb20f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ce48484836145e0565b612d1a576040517f0177e1ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d4683612d2b6020870187614fe6565b6020870135612d406060890160408a01615528565b866146a0565b7f0d87345f3d1c929caba93e1c3821b54ff3512e12b66aa3cfe54b6bcbc17e59b4848484604051612d7993929190615afb565b60405180910390a150505050565b6001600160a01b038316600090815260036020908152604080832063ffffffff8616845282528083208484529091528120548190612dd09067ffffffffffffffff166001615b23565b604080517fffffffffffffffff00000000000000000000000000000000000000000000000060c084901b166020808301919091527fffffffff000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000060e090811b821660288501526001600160a01b038b16602c85015289901b16604c830152605080830188905283518084039091018152607090920190925280519101209091505b95945050505050565b612e9e614446565b6001600160a01b038116600090815260056020526040902054819060ff16612ef2576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816001600160a01b03811615612fae576001816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f66919061568a565b6002811115612f7757612f7761565b565b03612fae576040517f7a01ede200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82846001600160a01b0382161561307c576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015613022573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304691906156b9565b61307c576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff86166000908152600960205260409020546001600160a01b038087169116036130d6576040517fd0ecb66b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff861660008181526009602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038a169081179091558251938452908301527f16aa0f528038ab41019e95bae5b418a50ba8532c5800e3b7ea2f517d3fa625f5910161136c565b6001600160a01b03808316600090815260066020908152604080832063ffffffff8616845290915290205416806118ff575063ffffffff81166000908152600960205260409020546001600160a01b0316806118ff576040517f6c1ccdb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131e4614446565b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527fd476ec5ec1ac11cec3714d41e7ea49419471aceb9bd0dff1becfc3e363a62396906020015b60405180910390a150565b6001600160a01b038116600090815260016020908152604082206121379185918591859061328190850185614fe6565b63ffffffff1681526020808201929092526040908101600090812089840135825290925290205467ffffffffffffffff166145e0565b336000818152600f602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386169081179091558251938452908301527f6ee10e9ed4d6ce9742703a498707862f4b00f1396a87195eb93267b3d79839819101613246565b6001600160a01b038216600090815260056020526040902054829060ff16613383576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b0381161561343f576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133f7919061568a565b60028111156134085761340861565b565b0361343f576040517f84ead63600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b0382161561350d576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa1580156134b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134d791906156b9565b61350d576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613515614446565b846000036135615763ffffffff87166000908152600b6020526040812080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168155600101556135e7565b43851161359a576040517f05df9f2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff87166000908152600b6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388161781556001018590555b6040805163ffffffff891681526001600160a01b03881660208201529081018690527f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f890606001610d87565b61363c84613f6c565b613647848484612735565b613652906001615b23565b67ffffffffffffffff168167ffffffffffffffff16146136aa576040517fc09b635000000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401611523565b6001600160a01b038416600081815260016020908152604080832063ffffffff881680855290835281842087855283529281902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff8716908117909155815193845291830186905282019290925260608101919091527f28f40053783033ef755556a0c3315379141f51a33aed8334174ffbadd90bde4890608001612d79565b604080518082019091526000808252602082015261377a60a08401608085016156d6565b801561378f5750600e546001600160a01b0316155b156137c6576040517f5af6d2aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038216600090815260036020908152604082209082906137ef90870187614fe6565b63ffffffff1681526020808201929092526040908101600090812087840135825290925290205461382b9067ffffffffffffffff166001615b23565b905060006040518060e001604052808367ffffffffffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001856001600160a01b031681526020018660000160208101906138989190614fe6565b63ffffffff16815260200186602001358152602001613994847f0000000000000000000000000000000000000000000000000000000000000000888a60000160208101906138e69190614fe6565b8b60200135600085856001600160a01b03861660405160c09390931b7fffffffffffffffff00000000000000000000000000000000000000000000000016602084015260e091821b7fffffffff000000000000000000000000000000000000000000000000000000009081166028850152602c8401919091529085901b16604c8201526050810183905260700160405160208183030381529060405280519060200120905095945050505050565b81526020016139a66040880188615b44565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525092935091506139f39050856109e26020890189614fe6565b90506001600160a01b03811663d80e9bd983613a1260608a018a615b44565b613a2260a08c0160808d016156d6565b6040518563ffffffff1660e01b8152600401613a419493929190615ba9565b6040805180830381865afa158015613a5d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148d9190615ca0565b613a89614446565b6040517f01ffc9a70000000000000000000000000000000000000000000000000000000081527f97f025840000000000000000000000000000000000000000000000000000000060048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa158015613b06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b2a91906156b9565b613b60576040517feb64f35d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615613bb3576040517f8aea2fe600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038116600081815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556004805491820181559093527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90920180547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905590519182527f6b374d56679ca9463f27c85c6311e2bb7fde69bf201d3da39d53f10bd9d78af59101613246565b613c87614446565b6001600160a01b038116613d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401611523565b613d26816144ba565b50565b6001600160a01b038516600090815260016020908152604080832063ffffffff88168452825280832086845290915281205467ffffffffffffffff908116908416811015613e8457600181015b8467ffffffffffffffff168167ffffffffffffffff1611613e1f576001600160a01b038816600090815260026020908152604080832063ffffffff8b1684528252808320898452825280832067ffffffffffffffff85168452909152902054613e17576040517fc09b635000000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401611523565b600101613d76565b506001600160a01b038716600090815260016020908152604080832063ffffffff8a1684528252808320888452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff86161790555b82516020808501919091206001600160a01b038916600090815260028352604080822063ffffffff8b1683528452808220898352845280822067ffffffffffffffff891683529093529190912054909250808314613f18576040517f7182306f0000000000000000000000000000000000000000000000000000000081526004810182905260248101849052604401611523565b50506001600160a01b03909516600090815260026020908152604080832063ffffffff909716835295815285822094825293845284812067ffffffffffffffff909316815291909252918220919091555090565b336001600160a01b03821614801590613f9f57506001600160a01b038181166000908152600f6020526040902054163314155b15613d26576040517fc4c5259300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613fde614b15565b60008061406785613ff26020870187614fe6565b6001600160a01b0391909116600090815260036020908152604080832063ffffffff94909416835292815282822081890135835290522080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000008116600167ffffffffffffffff928316019182161790915590565b905060006040518060e001604052808367ffffffffffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001876001600160a01b031681526020018660000160208101906140d49190614fe6565b63ffffffff16815260200186602001358152602001614122847f00000000000000000000000000000000000000000000000000000000000000008a8a60000160208101906138e69190614fe6565b81526020016141346040880188615b44565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525092935091506141819050876109e26020890189614fe6565b90506000806001600160a01b038316634389e58f856141a360608c018c615b44565b6141b360a08e0160808f016156d6565b6040518563ffffffff1660e01b81526004016141d29493929190615ba9565b6000604051808303816000875af11580156141f1573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526142379190810190615cbc565b90925090507f1ab700d4ced0c005b164c0f789fd09fcbb0156d4c2041b8a3bfbcd961cd1567f8161426b60608b018b615b44565b8660405161427c9493929190615d0b565b60405180910390a1506040805160608101825260a090940151845267ffffffffffffffff909416602084015292820192909252925090509250929050565b6000811561438357600e546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015614323573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143479190615d4c565b905080600003614383576040517f1775123700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b825182108061439a5750808360200151115b15612bea57825160208401516040517f4f3ec0d3000000000000000000000000000000000000000000000000000000008152600481019290925260248201849052604482015260648101829052608401611523565b831561440057614400858386614720565b82841015614415576144158582868603614720565b5050505050565b831561442c5761442c8285614774565b828410156144405761444081858503614774565b50505050565b6000546001600160a01b03163314611fca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611523565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000808267ffffffffffffffff1611806127c657506040517fff7bd03d0000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063ff7bd03d9061457c908790600401615d65565b602060405180830381865afa158015614599573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c691906156b9565b6001600160a01b0383166145d557612bea8282614774565b612bea838383614720565b600067ffffffffffffffff82166145fd6060860160408701615528565b67ffffffffffffffff1611806127c657506001600160a01b0383166000908152600260209081526040822090829061463790880188614fe6565b63ffffffff1663ffffffff168152602001908152602001600020600086602001358152602001908152602001600020600086604001602081019061467b9190615528565b67ffffffffffffffff1681526020810191909152604001600020541415949350505050565b806146d7576040517f09beffb600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03909416600090815260026020908152604080832063ffffffff909616835294815284822093825292835283812067ffffffffffffffff909216815291522055565b6001600160a01b038216614760576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bea6001600160a01b0384168383614853565b6001600160a01b0382166147b4576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614801576040519150601f19603f3d011682016040523d82523d6000602084013e614806565b606091505b5050905080612bea576040517f465bc8340000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401611523565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152612bea928692916000916149119185169084906149be565b905080516000148061493257508080602001905181019061493291906156b9565b612bea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401611523565b60606127c6848460008585600080866001600160a01b031685876040516149e59190615d73565b60006040518083038185875af1925050503d8060008114614a22576040519150601f19603f3d011682016040523d82523d6000602084013e614a27565b606091505b5091509150614a3887838387614a43565b979650505050505050565b60608315614acc578251600003614ac5576001600160a01b0385163b614ac5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611523565b50816127c6565b6127c68383815115614ae15781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115239190614e91565b604051806060016040528060008019168152602001600067ffffffffffffffff168152602001614b58604051806040016040528060008152602001600081525090565b905290565b600060608284031215614b6f57600080fd5b50919050565b80356001600160a01b038116811461438357600080fd5b60008083601f840112614b9e57600080fd5b50813567ffffffffffffffff811115614bb657600080fd5b6020830191508360208285010111156116fe57600080fd5b600080600080600080600060e0888a031215614be957600080fd5b614bf38989614b5d565b9650614c0160608901614b75565b95506080880135945060a088013567ffffffffffffffff80821115614c2557600080fd5b614c318b838c01614b8c565b909650945060c08a0135915080821115614c4a57600080fd5b50614c578a828b01614b8c565b989b979a50959850939692959293505050565b803563ffffffff8116811461438357600080fd5b60008060008060808587031215614c9457600080fd5b614c9d85614b75565b9350614cab60208601614c6a565b9250614cb960408601614b75565b9396929550929360600135925050565b60008060408385031215614cdc57600080fd5b823567ffffffffffffffff811115614cf357600080fd5b830160a08186031215614d0557600080fd5b9150614d1360208401614b75565b90509250929050565b60006080820190508251825267ffffffffffffffff60208401511660208301526040830151614d58604084018280518252602090810151910152565b5092915050565b600080600080600060c08688031215614d7757600080fd5b614d8086614b75565b9450614d8f8760208801614b5d565b93506080860135925060a086013567ffffffffffffffff811115614db257600080fd5b614dbe88828901614b8c565b969995985093965092949392505050565b60008060008060808587031215614de557600080fd5b614dee85614b75565b9350614dfc60208601614b75565b9250614e0a60408601614c6a565b9150614e1860608601614c6a565b905092959194509250565b60005b83811015614e3e578181015183820152602001614e26565b50506000910152565b60008151808452614e5f816020860160208601614e23565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006121376020830184614e47565b803567ffffffffffffffff8116811461438357600080fd5b600080600080600060a08688031215614ed457600080fd5b614edd86614b75565b9450614eeb60208701614c6a565b935060408601359250614f0060608701614ea4565b949793965091946080013592915050565b803561ffff8116811461438357600080fd5b60008060008060808587031215614f3957600080fd5b614f4285614b75565b9350614f5060208601614b75565b925060408501359150614e1860608601614f11565b60008060408385031215614f7857600080fd5b614f8183614b75565b9150614d1360208401614c6a565b600060208284031215614fa157600080fd5b61213782614b75565b600080600060608486031215614fbf57600080fd5b614fc884614b75565b9250614fd660208501614c6a565b9150604084013590509250925092565b600060208284031215614ff857600080fd5b61213782614c6a565b6000806000806000806000806000806000806101208d8f03121561502457600080fd5b61502d8d614b75565b9b5061503b60208e01614b75565b9a5060408d0135995061505060608e01614f11565b985060808d0135975060a08d0135965067ffffffffffffffff60c08e0135111561507957600080fd5b6150898e60c08f01358f01614b8c565b909650945067ffffffffffffffff60e08e013511156150a757600080fd5b6150b78e60e08f01358f01614b8c565b909450925067ffffffffffffffff6101008e013511156150d657600080fd5b6150e78e6101008f01358f01614b8c565b81935080925050509295989b509295989b509295989b565b60008060008060008060008060008060006101408c8e03121561512157600080fd5b61512b8d8d614b5d565b9a5061513960608d01614b75565b995060808c0135985060a08c0135975060c08c0135965067ffffffffffffffff8060e08e0135111561516a57600080fd5b61517a8e60e08f01358f01614b8c565b90975095506101008d013581101561519157600080fd5b6151a28e6101008f01358f01614b8c565b90955093506101208d01358110156151b957600080fd5b506151cb8d6101208e01358e01614b8c565b81935080925050509295989b509295989b9093969950565b600080600080606085870312156151f957600080fd5b61520285614b75565b935061521060208601614b75565b9250604085013567ffffffffffffffff8082111561522d57600080fd5b818701915087601f83011261524157600080fd5b81358181111561525057600080fd5b8860208260051b850101111561526557600080fd5b95989497505060200194505050565b60008060008060006080868803121561528c57600080fd5b61529586614b75565b9450602086013593506152aa60408701614f11565b9250606086013567ffffffffffffffff811115614db257600080fd5b600080608083850312156152d957600080fd5b6152e38484614b5d565b9150614d1360608401614b75565b6020808252825182820181905260009190848201906040850190845b818110156153325783516001600160a01b03168352928401929184019160010161530d565b50909695505050505050565b60008060008060008060008060c0898b03121561535a57600080fd5b61536389614b75565b975061537160208a01614b75565b96506040890135955061538660608a01614f11565b9450608089013567ffffffffffffffff808211156153a357600080fd5b6153af8c838d01614b8c565b909650945060a08b01359150808211156153c857600080fd5b506153d58b828c01614b8c565b999c989b5096995094979396929594505050565b6000806000606084860312156153fe57600080fd5b61540784614b75565b925061541560208501614c6a565b915061542360408501614b75565b90509250925092565b60008060006060848603121561544157600080fd5b61544a84614c6a565b9250614fd660208501614b75565b60008060006060848603121561546d57600080fd5b61544a84614b75565b600080600060a0848603121561548b57600080fd5b6154958585614b5d565b92506154a360608501614b75565b9150608084013590509250925092565b600080604083850312156154c657600080fd5b614d0583614c6a565b600080600080608085870312156154e557600080fd5b6154ee85614b75565b93506154fc60208601614c6a565b925060408501359150614e1860608601614ea4565b8151815260208083015190820152604081016118ff565b60006020828403121561553a57600080fd5b61213782614ea4565b838152818360208301376000910160200190815292915050565b63ffffffff61556b82614c6a565b1682526020810135602083015267ffffffffffffffff61558d60408301614ea4565b1660408301525050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6155ea818961555d565b86606082015260e06080820152600061560760e083018789615597565b6001600160a01b03861660a084015282810360c0840152615629818587615597565b9a9950505050505050505050565b60808101615645828561555d565b6001600160a01b03831660608301529392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60006020828403121561569c57600080fd5b81516003811061213757600080fd5b8015158114613d2657600080fd5b6000602082840312156156cb57600080fd5b8151612137816156ab565b6000602082840312156156e857600080fd5b8135612137816156ab565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261573357600080fd5b815167ffffffffffffffff8082111561574e5761574e6156f3565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715615794576157946156f3565b816040528381528660208588010111156157ad57600080fd5b61148d846020830160208901614e23565b6000602082840312156157d057600080fd5b815167ffffffffffffffff8111156157e757600080fd5b6127c684828501615722565b8a815261ffff8a16602082015288604082015287606082015260e06080820152600061582360e08301888a615597565b82810360a0840152615836818789615597565b905082810360c084015261584b818587615597565b9d9c50505050505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156118ff576118ff61585c565b60006101206158ad838e61555d565b8b60608401528a60808401528960a08401528060c08401526158d2818401898b615597565b905082810360e08401526158e7818789615597565b905082810361010084015261584b818587615597565b600060408083016001600160a01b03871684526020604081860152818683526060925060608601905060608760051b8701018860005b89811015615a3e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa089840301845281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18c360301811261599457600080fd5b8b0163ffffffff806159a583614c6a565b168552806159b4888401614c6a565b168786015250878101357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18236030181126159ee57600080fd5b01858101903567ffffffffffffffff811115615a0957600080fd5b803603821315615a1857600080fd5b8789860152615a2a8886018284615597565b958701959450505090840190600101615933565b50909a9950505050505050505050565b8183823760009101908152919050565b60006001600160a01b03808916835280881660208401525085604083015261ffff8516606083015260a06080830152615a9b60a083018486615597565b98975050505050505050565b60006001600160a01b03808a16835288602084015260a06040840152615ad160a08401888a615597565b81871660608501528381036080850152615aec818688615597565b9b9a5050505050505050505050565b60a08101615b09828661555d565b6001600160a01b0393909316606082015260800152919050565b67ffffffffffffffff818116838216019080821115614d5857614d5861585c565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112615b7957600080fd5b83018035915067ffffffffffffffff821115615b9457600080fd5b6020019150368190038213156116fe57600080fd5b6060815267ffffffffffffffff855116606082015263ffffffff60208601511660808201526001600160a01b0360408601511660a082015260006060860151615bfa60c084018263ffffffff169052565b50608086015160e083015260a086015161010083015260c086015160e0610120840152615c2b610140840182614e47565b90508281036020840152615c40818688615597565b915050612e8d604083018415159052565b600060408284031215615c6357600080fd5b6040516040810181811067ffffffffffffffff82111715615c8657615c866156f3565b604052825181526020928301519281019290925250919050565b600060408284031215615cb257600080fd5b6121378383615c51565b60008060608385031215615ccf57600080fd5b615cd98484615c51565b9150604083015167ffffffffffffffff811115615cf557600080fd5b615d0185828601615722565b9150509250929050565b606081526000615d1e6060830187614e47565b8281036020840152615d31818688615597565b9150506001600160a01b038316604083015295945050505050565b600060208284031215615d5e57600080fd5b5051919050565b606081016118ff828461555d565b60008251615d85818460208701614e23565b919091019291505056fea2646970667358221220bfa54d9f72a7e33863fed8cbfb5a6c79e011449577471d66d39e1d67bf130fd764736f6c63430008160033608060405234801561001057600080fd5b5061026f806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806301ffc9a71461007e5780631881d94d146100a657806354fd4d50146100b55780636750cd4c146100dc575b6040517f2657b6c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61009161008c366004610189565b6100f0565b60405190151581526020015b60405180910390f35b600260405161009d91906101d2565b6040805167ffffffffffffffff815260ff602082015260029181019190915260600161009d565b6100916100ea366004610213565b50600190565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f97f0258400000000000000000000000000000000000000000000000000000000148061018357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60006020828403121561019b57600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146101cb57600080fd5b9392505050565b602081016003831061020d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60006020828403121561022557600080fd5b813563ffffffff811681146101cb57600080fdfea26469706673582212207325c273f24f61163cfdb1e23c56b38901e8e28127e69a8ee9f84318afd4358e64736f6c63430008160033",
2362
+ "deployedBytecode": "0x6080604052600436106103605760003560e01c80639132e5c3116101c6578063c9fc7bcd116100f7578063ddc28c5811610095578063e8964e811161006f578063e8964e8114610bc0578063ef667aa114610be0578063f2fde38b14610c2b578063f64be4c714610c4b57600080fd5b8063ddc28c5814610b5f578063e1758bd814610b8c578063e4fe1d9414610ba057600080fd5b8063d4b4ec8f116100d1578063d4b4ec8f14610aa3578063d70b890214610ac3578063dc706a6214610ae3578063dc93c8a214610b1357600080fd5b8063c9fc7bcd14610a27578063ca5eb5e114610a6e578063cb5026b914610a8e57600080fd5b8063a7229fd911610164578063aafea3121161013e578063aafea312146109a7578063b96a277f146109c7578063c28e0eed146109e7578063c9a54a9914610a0757600080fd5b8063a7229fd914610947578063a825d74714610967578063aafe5e071461098757600080fd5b80639c6d7340116101a05780639c6d73401461089f5780639d7f9775146108e7578063a0dd43fc14610907578063a718531b1461092757600080fd5b80639132e5c31461084a57806391d20fa11461086c5780639535ff301461087f57600080fd5b80635b17bb70116102a05780636f50a8031161023e57806379624ca91161021857806379624ca9146107d35780637cb59012146107ec578063861e1ca51461080c5780638da5cb5b1461082c57600080fd5b80636f50a80314610754578063715018a61461078a578063733180911461079f57600080fd5b80636a14d7151161027a5780636a14d715146106955780636bf73fa3146106b55780636dbd9f90146106d55780636e83f5bb146106f557600080fd5b80635b17bb70146105e45780636750cd4c14610645578063697fe6b61461067557600080fd5b80632baf0be71161030d578063402f8468116102e7578063402f8468146104ee57806340f806831461052d578063416ecebf1461054d578063587cde1e1461059657600080fd5b80632baf0be7146104455780632e80fbf31461048757806335d330b0146104a757600080fd5b80632637a4501161033e5780632637a450146103d85780632a56c1b0146103f85780632b3197b91461041857600080fd5b80630c0c389e1461036557806314f651a91461037a578063183c834f146103b8575b600080fd5b610378610373366004614bce565b610c81565b005b34801561038657600080fd5b5061038f610d98565b6040805163ffffffff90931683526001600160a01b039091166020830152015b60405180910390f35b3480156103c457600080fd5b506103786103d3366004614c7e565b610dca565b6103eb6103e6366004614cc9565b611155565b6040516103af9190614d1c565b34801561040457600080fd5b50610378610413366004614d5f565b6112be565b34801561042457600080fd5b50610438610433366004614dcf565b61137c565b6040516103af9190614e91565b34801561045157600080fd5b506104797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b6040519081526020016103af565b34801561049357600080fd5b506103786104a2366004614ebc565b611497565b3480156104b357600080fd5b506104796104c2366004614f23565b600c60209081526000948552604080862082529385528385208152918452828420909152825290205481565b3480156104fa57600080fd5b5061050e610509366004614f65565b61166e565b604080516001600160a01b0390931683529015156020830152016103af565b34801561053957600080fd5b50610378610548366004614ebc565b611705565b34801561055957600080fd5b506105817f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016103af565b3480156105a257600080fd5b506105cc6105b1366004614f8f565b600f602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016103af565b3480156105f057600080fd5b5061062c6105ff366004614faa565b600160209081526000938452604080852082529284528284209052825290205467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016103af565b34801561065157600080fd5b50610665610660366004614fe6565b6118b5565b60405190151581526020016103af565b34801561068157600080fd5b50610378610690366004615001565b611905565b3480156106a157600080fd5b506103786106b0366004614c7e565b61197a565b3480156106c157600080fd5b506103786106d03660046150ff565b611e7a565b3480156106e157600080fd5b506103786106f03660046151e3565b611ee4565b34801561070157600080fd5b50610735610710366004614fe6565b600b60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016103af565b34801561076057600080fd5b506105cc61076f366004614fe6565b600a602052600090815260409020546001600160a01b031681565b34801561079657600080fd5b50610378611fb8565b3480156107ab57600080fd5b506105cc7f000000000000000000000000000000000000000000000000000000000000000081565b3480156107df57600080fd5b50600d5460011415610665565b3480156107f857600080fd5b50610378610807366004615274565b611fcc565b34801561081857600080fd5b506106656108273660046152c6565b6120d1565b34801561083857600080fd5b506000546001600160a01b03166105cc565b34801561085657600080fd5b5061085f61213e565b6040516103af91906152f1565b61037861087a36600461533e565b6121a0565b34801561088b57600080fd5b5061037861089a3660046153e9565b612362565b3480156108ab57600080fd5b5061062c6108ba366004614faa565b600360209081526000938452604080852082529284528284209052825290205467ffffffffffffffff1681565b3480156108f357600080fd5b506106656109023660046153e9565b61265b565b34801561091357600080fd5b5061062c610922366004614faa565b612735565b34801561093357600080fd5b5061037861094236600461542c565b6127ce565b34801561095357600080fd5b50610378610962366004615458565b612bd7565b34801561097357600080fd5b50610378610982366004615476565b612bef565b34801561099357600080fd5b506104796109a2366004614faa565b612d87565b3480156109b357600080fd5b506103786109c23660046154b3565b612e96565b3480156109d357600080fd5b506105cc6109e2366004614f65565b613154565b3480156109f357600080fd5b50610378610a02366004614f8f565b6131dc565b348015610a1357600080fd5b50610665610a223660046152c6565b613251565b348015610a3357600080fd5b50610479610a423660046154cf565b600260209081526000948552604080862082529385528385208152918452828420909152825290205481565b348015610a7a57600080fd5b50610378610a89366004614f8f565b6132b7565b348015610a9a57600080fd5b50610479600081565b348015610aaf57600080fd5b50610378610abe36600461542c565b61332f565b348015610acf57600080fd5b50610378610ade3660046154cf565b613633565b348015610aef57600080fd5b50610665610afe366004614f8f565b60056020526000908152604090205460ff1681565b348015610b1f57600080fd5b50610665610b2e366004614f65565b6001600160a01b03918216600090815260066020908152604080832063ffffffff9490941683529290522054161590565b348015610b6b57600080fd5b50610b7f610b7a366004614cc9565b613756565b6040516103af9190615511565b348015610b9857600080fd5b5060006105cc565b348015610bac57600080fd5b50600e546105cc906001600160a01b031681565b348015610bcc57600080fd5b50610378610bdb366004614f8f565b613a81565b348015610bec57600080fd5b50610735610bfb366004614f65565b6008602090815260009283526040808420909152908252902080546001909101546001600160a01b039091169082565b348015610c3757600080fd5b50610378610c46366004614f8f565b613c7f565b348015610c5757600080fd5b506105cc610c66366004614fe6565b6009602052600090815260409020546001600160a01b031681565b610cd086610c9260208a018a614fe6565b60208a0135610ca760608c0160408d01615528565b898989604051602001610cbc93929190615543565b604051602081830303815290604052613d29565b506040517f13137d650000000000000000000000000000000000000000000000000000000081526001600160a01b038716906313137d65903490610d24908b908a908a908a9033908b908b906004016155e0565b6000604051808303818588803b158015610d3d57600080fd5b505af1158015610d51573d6000803e3d6000fd5b50505050507f3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca048787604051610d87929190615637565b60405180910390a150505050505050565b600080610da8600d546001141590565b610db457600080610dc2565b610dc2600d5460a081901c91565b915091509091565b6001600160a01b038216600090815260056020526040902054829060ff16610e1e576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615610eda576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e92919061568a565b6002811115610ea357610ea361565b565b03610eda576040517f84ead63600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615610fa8576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015610f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7291906156b9565b610fa8576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fb188613f6c565b6000610fbd898961166e565b9150508015610ff8576040517f3c075f7500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b85600003611058576001600160a01b038916600090815260086020908152604080832063ffffffff8c168452909152812080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168155600101556110ef565b438611611091576040517f05df9f2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03898116600090815260086020908152604080832063ffffffff8d168452909152902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169189169190911781556001018690555b604080516001600160a01b03808c16825263ffffffff8b166020830152891691810191909152606081018790527f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb20928906080015b60405180910390a1505050505050505050565b61115d614b15565b61116a6020840184614fe6565b336001600d54146111a7576040517fee120b0900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b77ffffffff000000000000000000000000000000000000000060a083811b919091166001600160a01b03831617600d556111e6908601608087016156d6565b80156111fb5750600e546001600160a01b0316155b15611232576040517f5af6d2aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061123f3388613fd6565b91509150600061124c3490565b9050600061126861126360a08b0160808c016156d6565b6142ba565b905061127984604001518383614388565b600e5460408501516020015161129b916001600160a01b03169083868c6143ef565b6040840151516112ad9083858b61441c565b50506001600d555095945050505050565b6112c785613f6c565b60008383836040516020016112de93929190615543565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052905061133a8661131f6020880188614fe6565b602088013561133460608a0160408b01615528565b85613d29565b507f3cd5e48f9730b129dc7550f0fcea9c767b7be37837cd10e55eb35f734f4bca04858760405161136c929190615637565b60405180910390a1505050505050565b6001600160a01b038316600090815260056020526040902054606090849060ff166113d3576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f9c33abf700000000000000000000000000000000000000000000000000000000815263ffffffff80861660048301526001600160a01b0388811660248401529085166044830152861690639c33abf790606401600060405180830381865afa158015611447573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261148d91908101906157be565b9695505050505050565b6114a085613f6c565b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff8616845290915290205481811461152c576040517f7182306f00000000000000000000000000000000000000000000000000000000815260048101829052602481018390526044015b60405180910390fd5b6001600160a01b038616600090815260016020908152604080832063ffffffff89168452825280832087845290915290205467ffffffffffffffff90811690841611801590611579575080155b156115bc576040517fc09b635000000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401611523565b6001600160a01b038616600081815260026020908152604080832063ffffffff8a16808552908352818420898552835281842067ffffffffffffffff8916808652908452938290207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905581519081529182018890528101929092526060820152608081018390527faf0450c392c4f702515a457a362328c8aa21916048ca6d0419e248b30cb552929060a00161136c565b6001600160a01b03808316600090815260076020908152604080832063ffffffff8616845290915281205490911690816116fe5763ffffffff83166000908152600a60205260409020546001600160a01b03169150816116fa576040517f78e84d0600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060015b9250929050565b61170e85613f6c565b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff86168452909152902054818114611795576040517f7182306f0000000000000000000000000000000000000000000000000000000081526004810182905260248101839052604401611523565b8015806117e057506001600160a01b038616600090815260016020908152604080832063ffffffff89168452825280832087845290915290205467ffffffffffffffff908116908416115b15611823576040517fc09b635000000000000000000000000000000000000000000000000000000000815267ffffffffffffffff84166004820152602401611523565b6001600160a01b038616600081815260026020908152604080832063ffffffff8a16808552908352818420898552835281842067ffffffffffffffff89168086529084528285209490945581519081529182018890528101929092526060820152608081018390527f7f68a37a6e69a0de35024a234558f9efe4b33b58657753d21eaaa82d51c3510e9060a00161136c565b63ffffffff81166000908152600960205260408120546001600160a01b0316158015906118ff575063ffffffff82166000908152600a60205260409020546001600160a01b031615155b92915050565b336001600160a01b03168b6001600160a01b03168d6001600160a01b03167f8a0b1dce321c5c5fb42349bce46d18087c04140de520917661fb923e44a904b98d8d8d8d8d8d8d8d8d8d6040516119649a999897969594939291906157f3565b60405180910390a4505050505050505050505050565b6001600160a01b038216600090815260056020526040902054829060ff161580156119ad57506001600160a01b03811615155b156119e4576040517fa4ff2ec300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b03811615611aa0576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a58919061568a565b6002811115611a6957611a6961565b565b03611aa0576040517f84ead63600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b03821615611b6e576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015611b14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3891906156b9565b611b6e576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b7788613f6c565b6001600160a01b03808916600090815260076020908152604080832063ffffffff8c16845290915290205481169087168103611bdf576040517fd0ecb66b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03898116600081815260076020908152604080832063ffffffff8e168085529083529281902080547fffffffffffffffffffffffff000000000000000000000000000000000000000016958d1695861790558051938452908301919091528101919091527fcd6f92f5ac6185a5acfa02c92090746cec64d777269cbcd0ed031e396657a1c29060600160405180910390a18515611dcf576001600160a01b0381161580611c9a57506001600160a01b038716155b15611cd1576040517f3c075f7500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006040518060400160405280836001600160a01b031681526020018843611cf9919061588b565b90526001600160a01b03808c16600090815260086020908152604080832063ffffffff8f1684528252918290208451815494167fffffffffffffffffffffffff00000000000000000000000000000000000000009094169390931783558301516001909201829055519192507f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb2092891611dc1918d918d9187916001600160a01b03948516815263ffffffff93909316602084015292166040820152606081019190915260800190565b60405180910390a150611e6f565b6001600160a01b03898116600081815260086020908152604080832063ffffffff8e1680855290835281842080547fffffffffffffffffffffffff00000000000000000000000000000000000000001681556001018490558151948552918401919091529284169282019290925260608101919091527f4e0a5bbfa0c11a64effb1ada324b5437a17272e1aed9320398715ef71bb2092890608001611142565b505050505050505050565b336001600160a01b03168a6001600160a01b03167f7edfa10fe10193301ad8a8bea7e968c7bcabcc64981f368e3aeada40ce26ae2c8d8c8c8c8c8c8c8c8c8c604051611ecf9a9998979695949392919061589e565b60405180910390a35050505050505050505050565b6001600160a01b038316600090815260056020526040902054839060ff16611f38576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f4185613f6c565b6040517f20efd7220000000000000000000000000000000000000000000000000000000081526001600160a01b038516906320efd72290611f8a908890879087906004016158fd565b600060405180830381600087803b158015611fa457600080fd5b505af1158015611e6f573d6000803e3d6000fd5b611fc0614446565b611fca60006144ba565b565b336000908152600c602090815260408083206001600160a01b03891684528252808320878452825280832061ffff871684529091529020541561203b576040517f1508219400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160405161204b929190615a4e565b60408051918290038220336000818152600c60209081528482206001600160a01b038c16835281528482208a8352815284822061ffff8a168352905292909220557f3d52ff888d033fd3dd1d8057da59e850c91d91a72c41dfa445b247dfedeb6dc1916120c2919088908890889088908890615a5e565b60405180910390a15050505050565b6001600160a01b038116600090815260016020908152604082206121379185918591859061210190850185614fe6565b63ffffffff1681526020808201929092526040908101600090812089840135825290925290205467ffffffffffffffff16614522565b9392505050565b6060600480548060200260200160405190810160405280929190818152602001828054801561219657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612178575b5050505050905090565b6001600160a01b038089166000908152600c60209081526040808320938b168352928152828220898352815282822061ffff8916835290528181205491516121eb9087908790615a4e565b60405180910390209050808214612238576040517f35ca595f0000000000000000000000000000000000000000000000000000000081526004810183905260248101829052604401611523565b6001600160a01b03808b166000908152600c60209081526040808320938d168084529382528083208c8452825280832061ffff8c1684529091529081902060019055517fd0a1026000000000000000000000000000000000000000000000000000000000815263d0a102609034906122c0908e908d908c908c9033908d908d90600401615aa7565b6000604051808303818588803b1580156122d957600080fd5b505af11580156122ed573d6000803e3d6000fd5b50505050507e36c98efcf9e6641dfbc9051f66f405253e8e0c2ab4a24dccda15595b7378c88a8a8a8a60405161234e94939291906001600160a01b039485168152929093166020830152604082015261ffff91909116606082015260800190565b60405180910390a150505050505050505050565b6001600160a01b038116600090815260056020526040902054819060ff1615801561239557506001600160a01b03811615155b156123cc576040517fa4ff2ec300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816001600160a01b03811615612488576001816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561241c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612440919061568a565b60028111156124515761245161565b565b03612488576040517f7a01ede200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82846001600160a01b03821615612556576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa1580156124fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252091906156b9565b612556576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61255f87613f6c565b6001600160a01b03878116600090815260066020908152604080832063ffffffff8b1684529091529020548187169116036125c6576040517fd0ecb66b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03878116600081815260066020908152604080832063ffffffff8c168085529083529281902080547fffffffffffffffffffffffff000000000000000000000000000000000000000016958b1695861790558051938452908301919091528101919091527f4cff966ebee29a156dcb34cf72c1d06231fb1777f6bdf6e8089819232f002b1c90606001610d87565b600080600061266a868661166e565b91509150816001600160a01b0316846001600160a01b03160361269257600192505050612137565b6000816126c7576001600160a01b038716600090815260086020908152604080832063ffffffff8a16845290915290206126dd565b63ffffffff86166000908152600b602052604090205b6040805180820190915281546001600160a01b03908116808352600190930154602083015290925086161480156127175750438160200151115b156127285760019350505050612137565b5060009695505050505050565b6001600160a01b038316600090815260016020908152604080832063ffffffff86168452825280832084845290915281205467ffffffffffffffff165b6001600160a01b038516600090815260026020908152604080832063ffffffff881684528252808320868452825280832067ffffffffffffffff60018601168452909152902054156127c657600101612772565b949350505050565b6127d6614446565b6001600160a01b038216600090815260056020526040902054829060ff1661282a576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b038116156128e6576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561287a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061289e919061568a565b60028111156128af576128af61565b565b036128e6576040517f84ead63600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b038216156129b4576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa15801561295a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297e91906156b9565b6129b4576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff87166000908152600a60205260409020546001600160a01b039081169087168103612a10576040517fd0ecb66b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff88166000818152600a602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038c169081179091558251938452908301527fc16891855cffb4a5ac51ac11864a3f3c96ba816cc45fe686c987ae36277de5ec910160405180910390a18515612b425763ffffffff88166000908152600b6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038316178155612ae7874361588b565b600182018190556040805163ffffffff8c1681526001600160a01b038516602082015280820192909252517f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f89181900360600190a150612bcd565b63ffffffff88166000818152600b6020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000016815560010183905580519384526001600160a01b038516918401919091528201527f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f89060600160405180910390a15b5050505050505050565b612bdf614446565b612bea8383836145bd565b505050565b612c0682612c006020860186614fe6565b3361265b565b612c3c576040517f4fa6ecac00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03821660009081526001602090815260408220908290612c6590870187614fe6565b63ffffffff1681526020808201929092526040908101600090812087840135825290925290205467ffffffffffffffff169050612ca3848483614522565b612cd9576040517f751cb20f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ce48484836145e0565b612d1a576040517f0177e1ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d4683612d2b6020870187614fe6565b6020870135612d406060890160408a01615528565b866146a0565b7f0d87345f3d1c929caba93e1c3821b54ff3512e12b66aa3cfe54b6bcbc17e59b4848484604051612d7993929190615afb565b60405180910390a150505050565b6001600160a01b038316600090815260036020908152604080832063ffffffff8616845282528083208484529091528120548190612dd09067ffffffffffffffff166001615b23565b604080517fffffffffffffffff00000000000000000000000000000000000000000000000060c084901b166020808301919091527fffffffff000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000060e090811b821660288501526001600160a01b038b16602c85015289901b16604c830152605080830188905283518084039091018152607090920190925280519101209091505b95945050505050565b612e9e614446565b6001600160a01b038116600090815260056020526040902054819060ff16612ef2576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b816001600160a01b03811615612fae576001816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f66919061568a565b6002811115612f7757612f7761565b565b03612fae576040517f7a01ede200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82846001600160a01b0382161561307c576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa158015613022573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304691906156b9565b61307c576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff86166000908152600960205260409020546001600160a01b038087169116036130d6576040517fd0ecb66b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff861660008181526009602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038a169081179091558251938452908301527f16aa0f528038ab41019e95bae5b418a50ba8532c5800e3b7ea2f517d3fa625f5910161136c565b6001600160a01b03808316600090815260066020908152604080832063ffffffff8616845290915290205416806118ff575063ffffffff81166000908152600960205260409020546001600160a01b0316806118ff576040517f6c1ccdb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131e4614446565b600e80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527fd476ec5ec1ac11cec3714d41e7ea49419471aceb9bd0dff1becfc3e363a62396906020015b60405180910390a150565b6001600160a01b038116600090815260016020908152604082206121379185918591859061328190850185614fe6565b63ffffffff1681526020808201929092526040908101600090812089840135825290925290205467ffffffffffffffff166145e0565b336000818152600f602090815260409182902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386169081179091558251938452908301527f6ee10e9ed4d6ce9742703a498707862f4b00f1396a87195eb93267b3d79839819101613246565b6001600160a01b038216600090815260056020526040902054829060ff16613383576040517f378b1de600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826001600160a01b0381161561343f576000816001600160a01b0316631881d94d6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133f7919061568a565b60028111156134085761340861565b565b0361343f576040517f84ead63600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83856001600160a01b0382161561350d576040517f6750cd4c00000000000000000000000000000000000000000000000000000000815263ffffffff821660048201526001600160a01b03831690636750cd4c90602401602060405180830381865afa1580156134b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134d791906156b9565b61350d576040517f391daaa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613515614446565b846000036135615763ffffffff87166000908152600b6020526040812080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168155600101556135e7565b43851161359a576040517f05df9f2200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff87166000908152600b6020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388161781556001018590555b6040805163ffffffff891681526001600160a01b03881660208201529081018690527f55b28633cdb29709386f555dfc54418592ad475ce7a65a78ac5928af60ffb8f890606001610d87565b61363c84613f6c565b613647848484612735565b613652906001615b23565b67ffffffffffffffff168167ffffffffffffffff16146136aa576040517fc09b635000000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401611523565b6001600160a01b038416600081815260016020908152604080832063ffffffff881680855290835281842087855283529281902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff8716908117909155815193845291830186905282019290925260608101919091527f28f40053783033ef755556a0c3315379141f51a33aed8334174ffbadd90bde4890608001612d79565b604080518082019091526000808252602082015261377a60a08401608085016156d6565b801561378f5750600e546001600160a01b0316155b156137c6576040517f5af6d2aa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038216600090815260036020908152604082209082906137ef90870187614fe6565b63ffffffff1681526020808201929092526040908101600090812087840135825290925290205461382b9067ffffffffffffffff166001615b23565b905060006040518060e001604052808367ffffffffffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001856001600160a01b031681526020018660000160208101906138989190614fe6565b63ffffffff16815260200186602001358152602001613994847f0000000000000000000000000000000000000000000000000000000000000000888a60000160208101906138e69190614fe6565b8b60200135600085856001600160a01b03861660405160c09390931b7fffffffffffffffff00000000000000000000000000000000000000000000000016602084015260e091821b7fffffffff000000000000000000000000000000000000000000000000000000009081166028850152602c8401919091529085901b16604c8201526050810183905260700160405160208183030381529060405280519060200120905095945050505050565b81526020016139a66040880188615b44565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525092935091506139f39050856109e26020890189614fe6565b90506001600160a01b03811663d80e9bd983613a1260608a018a615b44565b613a2260a08c0160808d016156d6565b6040518563ffffffff1660e01b8152600401613a419493929190615ba9565b6040805180830381865afa158015613a5d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148d9190615ca0565b613a89614446565b6040517f01ffc9a70000000000000000000000000000000000000000000000000000000081527f97f025840000000000000000000000000000000000000000000000000000000060048201526001600160a01b038216906301ffc9a790602401602060405180830381865afa158015613b06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b2a91906156b9565b613b60576040517feb64f35d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615613bb3576040517f8aea2fe600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038116600081815260056020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556004805491820181559093527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90920180547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905590519182527f6b374d56679ca9463f27c85c6311e2bb7fde69bf201d3da39d53f10bd9d78af59101613246565b613c87614446565b6001600160a01b038116613d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401611523565b613d26816144ba565b50565b6001600160a01b038516600090815260016020908152604080832063ffffffff88168452825280832086845290915281205467ffffffffffffffff908116908416811015613e8457600181015b8467ffffffffffffffff168167ffffffffffffffff1611613e1f576001600160a01b038816600090815260026020908152604080832063ffffffff8b1684528252808320898452825280832067ffffffffffffffff85168452909152902054613e17576040517fc09b635000000000000000000000000000000000000000000000000000000000815267ffffffffffffffff82166004820152602401611523565b600101613d76565b506001600160a01b038716600090815260016020908152604080832063ffffffff8a1684528252808320888452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff86161790555b82516020808501919091206001600160a01b038916600090815260028352604080822063ffffffff8b1683528452808220898352845280822067ffffffffffffffff891683529093529190912054909250808314613f18576040517f7182306f0000000000000000000000000000000000000000000000000000000081526004810182905260248101849052604401611523565b50506001600160a01b03909516600090815260026020908152604080832063ffffffff909716835295815285822094825293845284812067ffffffffffffffff909316815291909252918220919091555090565b336001600160a01b03821614801590613f9f57506001600160a01b038181166000908152600f6020526040902054163314155b15613d26576040517fc4c5259300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613fde614b15565b60008061406785613ff26020870187614fe6565b6001600160a01b0391909116600090815260036020908152604080832063ffffffff94909416835292815282822081890135835290522080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000008116600167ffffffffffffffff928316019182161790915590565b905060006040518060e001604052808367ffffffffffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001876001600160a01b031681526020018660000160208101906140d49190614fe6565b63ffffffff16815260200186602001358152602001614122847f00000000000000000000000000000000000000000000000000000000000000008a8a60000160208101906138e69190614fe6565b81526020016141346040880188615b44565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525092935091506141819050876109e26020890189614fe6565b90506000806001600160a01b038316634389e58f856141a360608c018c615b44565b6141b360a08e0160808f016156d6565b6040518563ffffffff1660e01b81526004016141d29493929190615ba9565b6000604051808303816000875af11580156141f1573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526142379190810190615cbc565b90925090507f1ab700d4ced0c005b164c0f789fd09fcbb0156d4c2041b8a3bfbcd961cd1567f8161426b60608b018b615b44565b8660405161427c9493929190615d0b565b60405180910390a1506040805160608101825260a090940151845267ffffffffffffffff909416602084015292820192909252925090509250929050565b6000811561438357600e546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015614323573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143479190615d4c565b905080600003614383576040517f1775123700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b825182108061439a5750808360200151115b15612bea57825160208401516040517f4f3ec0d3000000000000000000000000000000000000000000000000000000008152600481019290925260248201849052604482015260648101829052608401611523565b831561440057614400858386614720565b82841015614415576144158582868603614720565b5050505050565b831561442c5761442c8285614774565b828410156144405761444081858503614774565b50505050565b6000546001600160a01b03163314611fca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611523565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000808267ffffffffffffffff1611806127c657506040517fff7bd03d0000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063ff7bd03d9061457c908790600401615d65565b602060405180830381865afa158015614599573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c691906156b9565b6001600160a01b0383166145d557612bea8282614774565b612bea838383614720565b600067ffffffffffffffff82166145fd6060860160408701615528565b67ffffffffffffffff1611806127c657506001600160a01b0383166000908152600260209081526040822090829061463790880188614fe6565b63ffffffff1663ffffffff168152602001908152602001600020600086602001358152602001908152602001600020600086604001602081019061467b9190615528565b67ffffffffffffffff1681526020810191909152604001600020541415949350505050565b806146d7576040517f09beffb600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03909416600090815260026020908152604080832063ffffffff909616835294815284822093825292835283812067ffffffffffffffff909216815291522055565b6001600160a01b038216614760576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bea6001600160a01b0384168383614853565b6001600160a01b0382166147b4576040517f6b7a931000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614801576040519150601f19603f3d011682016040523d82523d6000602084013e614806565b606091505b5050905080612bea576040517f465bc8340000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401611523565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152612bea928692916000916149119185169084906149be565b905080516000148061493257508080602001905181019061493291906156b9565b612bea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401611523565b60606127c6848460008585600080866001600160a01b031685876040516149e59190615d73565b60006040518083038185875af1925050503d8060008114614a22576040519150601f19603f3d011682016040523d82523d6000602084013e614a27565b606091505b5091509150614a3887838387614a43565b979650505050505050565b60608315614acc578251600003614ac5576001600160a01b0385163b614ac5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401611523565b50816127c6565b6127c68383815115614ae15781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115239190614e91565b604051806060016040528060008019168152602001600067ffffffffffffffff168152602001614b58604051806040016040528060008152602001600081525090565b905290565b600060608284031215614b6f57600080fd5b50919050565b80356001600160a01b038116811461438357600080fd5b60008083601f840112614b9e57600080fd5b50813567ffffffffffffffff811115614bb657600080fd5b6020830191508360208285010111156116fe57600080fd5b600080600080600080600060e0888a031215614be957600080fd5b614bf38989614b5d565b9650614c0160608901614b75565b95506080880135945060a088013567ffffffffffffffff80821115614c2557600080fd5b614c318b838c01614b8c565b909650945060c08a0135915080821115614c4a57600080fd5b50614c578a828b01614b8c565b989b979a50959850939692959293505050565b803563ffffffff8116811461438357600080fd5b60008060008060808587031215614c9457600080fd5b614c9d85614b75565b9350614cab60208601614c6a565b9250614cb960408601614b75565b9396929550929360600135925050565b60008060408385031215614cdc57600080fd5b823567ffffffffffffffff811115614cf357600080fd5b830160a08186031215614d0557600080fd5b9150614d1360208401614b75565b90509250929050565b60006080820190508251825267ffffffffffffffff60208401511660208301526040830151614d58604084018280518252602090810151910152565b5092915050565b600080600080600060c08688031215614d7757600080fd5b614d8086614b75565b9450614d8f8760208801614b5d565b93506080860135925060a086013567ffffffffffffffff811115614db257600080fd5b614dbe88828901614b8c565b969995985093965092949392505050565b60008060008060808587031215614de557600080fd5b614dee85614b75565b9350614dfc60208601614b75565b9250614e0a60408601614c6a565b9150614e1860608601614c6a565b905092959194509250565b60005b83811015614e3e578181015183820152602001614e26565b50506000910152565b60008151808452614e5f816020860160208601614e23565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006121376020830184614e47565b803567ffffffffffffffff8116811461438357600080fd5b600080600080600060a08688031215614ed457600080fd5b614edd86614b75565b9450614eeb60208701614c6a565b935060408601359250614f0060608701614ea4565b949793965091946080013592915050565b803561ffff8116811461438357600080fd5b60008060008060808587031215614f3957600080fd5b614f4285614b75565b9350614f5060208601614b75565b925060408501359150614e1860608601614f11565b60008060408385031215614f7857600080fd5b614f8183614b75565b9150614d1360208401614c6a565b600060208284031215614fa157600080fd5b61213782614b75565b600080600060608486031215614fbf57600080fd5b614fc884614b75565b9250614fd660208501614c6a565b9150604084013590509250925092565b600060208284031215614ff857600080fd5b61213782614c6a565b6000806000806000806000806000806000806101208d8f03121561502457600080fd5b61502d8d614b75565b9b5061503b60208e01614b75565b9a5060408d0135995061505060608e01614f11565b985060808d0135975060a08d0135965067ffffffffffffffff60c08e0135111561507957600080fd5b6150898e60c08f01358f01614b8c565b909650945067ffffffffffffffff60e08e013511156150a757600080fd5b6150b78e60e08f01358f01614b8c565b909450925067ffffffffffffffff6101008e013511156150d657600080fd5b6150e78e6101008f01358f01614b8c565b81935080925050509295989b509295989b509295989b565b60008060008060008060008060008060006101408c8e03121561512157600080fd5b61512b8d8d614b5d565b9a5061513960608d01614b75565b995060808c0135985060a08c0135975060c08c0135965067ffffffffffffffff8060e08e0135111561516a57600080fd5b61517a8e60e08f01358f01614b8c565b90975095506101008d013581101561519157600080fd5b6151a28e6101008f01358f01614b8c565b90955093506101208d01358110156151b957600080fd5b506151cb8d6101208e01358e01614b8c565b81935080925050509295989b509295989b9093969950565b600080600080606085870312156151f957600080fd5b61520285614b75565b935061521060208601614b75565b9250604085013567ffffffffffffffff8082111561522d57600080fd5b818701915087601f83011261524157600080fd5b81358181111561525057600080fd5b8860208260051b850101111561526557600080fd5b95989497505060200194505050565b60008060008060006080868803121561528c57600080fd5b61529586614b75565b9450602086013593506152aa60408701614f11565b9250606086013567ffffffffffffffff811115614db257600080fd5b600080608083850312156152d957600080fd5b6152e38484614b5d565b9150614d1360608401614b75565b6020808252825182820181905260009190848201906040850190845b818110156153325783516001600160a01b03168352928401929184019160010161530d565b50909695505050505050565b60008060008060008060008060c0898b03121561535a57600080fd5b61536389614b75565b975061537160208a01614b75565b96506040890135955061538660608a01614f11565b9450608089013567ffffffffffffffff808211156153a357600080fd5b6153af8c838d01614b8c565b909650945060a08b01359150808211156153c857600080fd5b506153d58b828c01614b8c565b999c989b5096995094979396929594505050565b6000806000606084860312156153fe57600080fd5b61540784614b75565b925061541560208501614c6a565b915061542360408501614b75565b90509250925092565b60008060006060848603121561544157600080fd5b61544a84614c6a565b9250614fd660208501614b75565b60008060006060848603121561546d57600080fd5b61544a84614b75565b600080600060a0848603121561548b57600080fd5b6154958585614b5d565b92506154a360608501614b75565b9150608084013590509250925092565b600080604083850312156154c657600080fd5b614d0583614c6a565b600080600080608085870312156154e557600080fd5b6154ee85614b75565b93506154fc60208601614c6a565b925060408501359150614e1860608601614ea4565b8151815260208083015190820152604081016118ff565b60006020828403121561553a57600080fd5b61213782614ea4565b838152818360208301376000910160200190815292915050565b63ffffffff61556b82614c6a565b1682526020810135602083015267ffffffffffffffff61558d60408301614ea4565b1660408301525050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6155ea818961555d565b86606082015260e06080820152600061560760e083018789615597565b6001600160a01b03861660a084015282810360c0840152615629818587615597565b9a9950505050505050505050565b60808101615645828561555d565b6001600160a01b03831660608301529392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60006020828403121561569c57600080fd5b81516003811061213757600080fd5b8015158114613d2657600080fd5b6000602082840312156156cb57600080fd5b8151612137816156ab565b6000602082840312156156e857600080fd5b8135612137816156ab565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011261573357600080fd5b815167ffffffffffffffff8082111561574e5761574e6156f3565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715615794576157946156f3565b816040528381528660208588010111156157ad57600080fd5b61148d846020830160208901614e23565b6000602082840312156157d057600080fd5b815167ffffffffffffffff8111156157e757600080fd5b6127c684828501615722565b8a815261ffff8a16602082015288604082015287606082015260e06080820152600061582360e08301888a615597565b82810360a0840152615836818789615597565b905082810360c084015261584b818587615597565b9d9c50505050505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156118ff576118ff61585c565b60006101206158ad838e61555d565b8b60608401528a60808401528960a08401528060c08401526158d2818401898b615597565b905082810360e08401526158e7818789615597565b905082810361010084015261584b818587615597565b600060408083016001600160a01b03871684526020604081860152818683526060925060608601905060608760051b8701018860005b89811015615a3e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa089840301845281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa18c360301811261599457600080fd5b8b0163ffffffff806159a583614c6a565b168552806159b4888401614c6a565b168786015250878101357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18236030181126159ee57600080fd5b01858101903567ffffffffffffffff811115615a0957600080fd5b803603821315615a1857600080fd5b8789860152615a2a8886018284615597565b958701959450505090840190600101615933565b50909a9950505050505050505050565b8183823760009101908152919050565b60006001600160a01b03808916835280881660208401525085604083015261ffff8516606083015260a06080830152615a9b60a083018486615597565b98975050505050505050565b60006001600160a01b03808a16835288602084015260a06040840152615ad160a08401888a615597565b81871660608501528381036080850152615aec818688615597565b9b9a5050505050505050505050565b60a08101615b09828661555d565b6001600160a01b0393909316606082015260800152919050565b67ffffffffffffffff818116838216019080821115614d5857614d5861585c565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112615b7957600080fd5b83018035915067ffffffffffffffff821115615b9457600080fd5b6020019150368190038213156116fe57600080fd5b6060815267ffffffffffffffff855116606082015263ffffffff60208601511660808201526001600160a01b0360408601511660a082015260006060860151615bfa60c084018263ffffffff169052565b50608086015160e083015260a086015161010083015260c086015160e0610120840152615c2b610140840182614e47565b90508281036020840152615c40818688615597565b915050612e8d604083018415159052565b600060408284031215615c6357600080fd5b6040516040810181811067ffffffffffffffff82111715615c8657615c866156f3565b604052825181526020928301519281019290925250919050565b600060408284031215615cb257600080fd5b6121378383615c51565b60008060608385031215615ccf57600080fd5b615cd98484615c51565b9150604083015167ffffffffffffffff811115615cf557600080fd5b615d0185828601615722565b9150509250929050565b606081526000615d1e6060830187614e47565b8281036020840152615d31818688615597565b9150506001600160a01b038316604083015295945050505050565b600060208284031215615d5e57600080fd5b5051919050565b606081016118ff828461555d565b60008251615d85818460208701614e23565b919091019291505056fea2646970667358221220bfa54d9f72a7e33863fed8cbfb5a6c79e011449577471d66d39e1d67bf130fd764736f6c63430008160033",
2363
+ "devdoc": {
2364
+ "kind": "dev",
2365
+ "methods": {
2366
+ "burn(address,uint32,bytes32,uint64,bytes32)": {
2367
+ "details": "Marks a nonce as unexecutable and un-verifiable. The nonce can never be re-verified or executed.Reverts if the provided _payloadHash does not match the currently verified payload hash.Only packets with nonces less than or equal to the lazy inbound nonce can be burned.Reverts if the nonce has already been executed.Authenticated by the caller"
2368
+ },
2369
+ "clear(address,(uint32,bytes32,uint64),bytes32,bytes)": {
2370
+ "details": "Oapp uses this interface to clear a message.this is a PULL mode versus the PUSH mode of lzReceivethe cleared message can be ignored by the app (effectively burnt)authenticated by oapp",
2371
+ "params": {
2372
+ "_guid": "the guid of the message",
2373
+ "_message": "the message",
2374
+ "_origin": "the origin of the message"
2375
+ }
2376
+ },
2377
+ "constructor": {
2378
+ "params": {
2379
+ "_eid": "the unique Endpoint Id for this deploy that all other Endpoints can use to send to it"
2380
+ }
2381
+ },
2382
+ "getConfig(address,address,uint32,uint32)": {
2383
+ "details": "a view function to query the current configuration of the OApp"
2384
+ },
2385
+ "getReceiveLibrary(address,uint32)": {
2386
+ "details": "the receiveLibrary can be lazily resolved that if not set it will point to the default configured by LayerZero"
2387
+ },
2388
+ "getSendContext()": {
2389
+ "details": "returns (eid, sender) if sending message, (0, 0) otherwise"
2390
+ },
2391
+ "getSendLibrary(address,uint32)": {
2392
+ "details": "If the Oapp does not have a selected Send Library, this function will resolve to the default library configured by LayerZero",
2393
+ "params": {
2394
+ "_dstEid": "The destination endpoint id",
2395
+ "_sender": "The address of the Oapp that is sending the message"
2396
+ },
2397
+ "returns": {
2398
+ "lib": "address of the Send Library"
2399
+ }
2400
+ },
2401
+ "inboundNonce(address,uint32,bytes32)": {
2402
+ "details": "returns the max index of the longest gapless sequence of verified msg nonces.the uninitialized value is 0. the first nonce is always 1it starts from the lazyInboundNonce (last checkpoint) and iteratively check if the next nonce has been verifiedthis function can OOG if too many backlogs, but it can be trivially fixed by just clearing some prior messagesNOTE: Oapp explicitly skipped nonces count as \"verified\" for these purposeseg. [1,2,3,4,6,7] => 4, [1,2,6,8,10] => 2, [1,3,4,5,6] => 1"
2403
+ },
2404
+ "isSendingMessage()": {
2405
+ "details": "returns true if sending message"
2406
+ },
2407
+ "isSupportedEid(uint32)": {
2408
+ "details": "returns true only if both the default send/receive libraries are set"
2409
+ },
2410
+ "isValidReceiveLibrary(address,uint32,address)": {
2411
+ "details": "called when the endpoint checks if the msgLib attempting to verify the msg is the configured msgLib of the Oappthis check provides the ability for Oapp to lock in a trusted msgLibit will fist check if the msgLib is the currently configured one. then check if the msgLib is the one in grace period of msgLib versioning upgrade"
2412
+ },
2413
+ "lzCompose(address,address,bytes32,uint16,bytes,bytes)": {
2414
+ "details": "execute a composed messages from the sender to the composer (receiver)the execution provides the execution context (caller, extraData) to the receiver. the receiver can optionally assert the caller and validate the untrusted extraDatacan not re-entrant",
2415
+ "params": {
2416
+ "_extraData": "the extra data provided by the executor. this data is untrusted and should be validated.",
2417
+ "_from": "the address which sends the composed message. in most cases, it is the Oapp's address.",
2418
+ "_guid": "the message guid",
2419
+ "_message": "the message",
2420
+ "_to": "the address which receives the composed message"
2421
+ }
2422
+ },
2423
+ "lzComposeAlert(address,address,bytes32,uint16,uint256,uint256,bytes,bytes,bytes)": {
2424
+ "params": {
2425
+ "_extraData": "the extra data provided by the executor",
2426
+ "_from": "the address which sends the composed message",
2427
+ "_guid": "the message guid",
2428
+ "_message": "the message",
2429
+ "_reason": "the reason why the message is not received",
2430
+ "_to": "the address which receives the composed message"
2431
+ }
2432
+ },
2433
+ "lzReceive((uint32,bytes32,uint64),address,bytes32,bytes,bytes)": {
2434
+ "details": "MESSAGING STEP 3 - the last stepexecute a verified message to the designated receiverthe execution provides the execution context (caller, extraData) to the receiver. the receiver can optionally assert the caller and validate the untrusted extraDatacant reentrant because the payload is cleared before execution",
2435
+ "params": {
2436
+ "_extraData": "the extra data provided by the executor. this data is untrusted and should be validated.",
2437
+ "_guid": "the guid of the message",
2438
+ "_message": "the message",
2439
+ "_origin": "the origin of the message",
2440
+ "_receiver": "the receiver of the message"
2441
+ }
2442
+ },
2443
+ "lzReceiveAlert((uint32,bytes32,uint64),address,bytes32,uint256,uint256,bytes,bytes,bytes)": {
2444
+ "params": {
2445
+ "_extraData": "the extra data provided by the executor.",
2446
+ "_guid": "the guid of the message",
2447
+ "_message": "the message",
2448
+ "_origin": "the origin of the message",
2449
+ "_reason": "the reason for failure",
2450
+ "_receiver": "the receiver of the message"
2451
+ }
2452
+ },
2453
+ "nativeToken()": {
2454
+ "details": "override this if the endpoint is charging ERC20 tokens as native",
2455
+ "returns": {
2456
+ "_0": "0x0 if using native. otherwise the address of the native ERC20 token"
2457
+ }
2458
+ },
2459
+ "nextGuid(address,uint32,bytes32)": {
2460
+ "details": "returns the GUID for the next message given the paththe Oapp might want to include the GUID into the message in some cases"
2461
+ },
2462
+ "nilify(address,uint32,bytes32,uint64,bytes32)": {
2463
+ "details": "Marks a packet as verified, but disallows execution until it is re-verified.Reverts if the provided _payloadHash does not match the currently verified payload hash.A non-verified nonce can be nilified by passing EMPTY_PAYLOAD_HASH for _payloadHash.Assumes the computational intractability of finding a payload that hashes to bytes32.max.Authenticated by the caller"
2464
+ },
2465
+ "owner()": {
2466
+ "details": "Returns the address of the current owner."
2467
+ },
2468
+ "quote((uint32,bytes32,bytes,bytes,bool),address)": {
2469
+ "details": "MESSAGING STEP 0",
2470
+ "params": {
2471
+ "_params": "the messaging parameters",
2472
+ "_sender": "the sender of the message"
2473
+ }
2474
+ },
2475
+ "recoverToken(address,address,uint256)": {
2476
+ "details": "recover the token sent to this contract by mistakeonly owner",
2477
+ "params": {
2478
+ "_amount": "the amount to send",
2479
+ "_to": "the address to send the token to",
2480
+ "_token": "the token to recover. if 0x0 then it is native token"
2481
+ }
2482
+ },
2483
+ "registerLibrary(address)": {
2484
+ "details": "all libraries have to implement the erc165 interface to prevent wrong configurationsonly owner"
2485
+ },
2486
+ "renounceOwnership()": {
2487
+ "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
2488
+ },
2489
+ "send((uint32,bytes32,bytes,bytes,bool),address)": {
2490
+ "details": "MESSAGING STEP 1 - OApp need to transfer the fees to the endpoint before sending the message",
2491
+ "params": {
2492
+ "_params": "the messaging parameters",
2493
+ "_refundAddress": "the address to refund both the native and lzToken"
2494
+ }
2495
+ },
2496
+ "sendCompose(address,bytes32,uint16,bytes)": {
2497
+ "details": "the Oapp sends the lzCompose message to the endpointthe composer MUST assert the sender because anyone can send compose msg with this functionwith the same GUID, the Oapp can send compose to multiple _composer at the same timeauthenticated by the msg.sender",
2498
+ "params": {
2499
+ "_guid": "the message guid",
2500
+ "_message": "the message",
2501
+ "_to": "the address which will receive the composed message"
2502
+ }
2503
+ },
2504
+ "setConfig(address,address,(uint32,uint32,bytes)[])": {
2505
+ "details": "authenticated by the _oapp"
2506
+ },
2507
+ "setDefaultReceiveLibrary(uint32,address,uint256)": {
2508
+ "details": "owner setting the defaultSendLibrarymust be a registered library (including blockLibrary) with the eid support enabledin version migration, it can add a grace period to the old library. if the grace period is 0, it will delete the timeout configuration.only owner"
2509
+ },
2510
+ "setDefaultReceiveLibraryTimeout(uint32,address,uint256)": {
2511
+ "details": "owner setting the defaultSendLibrarymust be a registered library (including blockLibrary) with the eid support enabledcan used to (1) extend the current configuration (2) force remove the current configuration (3) change to a new configuration",
2512
+ "params": {
2513
+ "_expiry": "the block number when lib expires"
2514
+ }
2515
+ },
2516
+ "setDefaultSendLibrary(uint32,address)": {
2517
+ "details": "owner setting the defaultSendLibrarycan set to the blockedLibrary, which is a registered librarythe msgLib must enable the support before they can be registered to the endpoint as the defaultonly owner"
2518
+ },
2519
+ "setLzToken(address)": {
2520
+ "details": "allows reconfiguration to recover from wrong configurationsusers should never approve the EndpointV2 contract to spend their non-layerzero tokensoverride this function if the endpoint is charging ERC20 tokens as nativeonly owner",
2521
+ "params": {
2522
+ "_lzToken": "the new layer zero token address"
2523
+ }
2524
+ },
2525
+ "setReceiveLibrary(address,uint32,address,uint256)": {
2526
+ "details": "Oapp setting the receiveLibrarymust be a registered library (including blockLibrary) with the eid support enabledin version migration, it can add a grace period to the old library. if the grace period is 0, it will delete the timeout configuration.authenticated by the Oapp",
2527
+ "params": {
2528
+ "_gracePeriod": "the number of blocks from now until oldLib expires"
2529
+ }
2530
+ },
2531
+ "setReceiveLibraryTimeout(address,uint32,address,uint256)": {
2532
+ "details": "Oapp setting the defaultSendLibrarymust be a registered library (including blockLibrary) with the eid support enabledcan used to (1) extend the current configuration (2) force remove the current configuration (3) change to a new configuration",
2533
+ "params": {
2534
+ "_expiry": "the block number when lib expires"
2535
+ }
2536
+ },
2537
+ "setSendLibrary(address,uint32,address)": {
2538
+ "details": "Oapp setting the sendLibrarymust be a registered library (including blockLibrary) with the eid support enabledauthenticated by the Oapp"
2539
+ },
2540
+ "skip(address,uint32,bytes32,uint64)": {
2541
+ "details": "the caller must provide _nonce to prevent skipping the unintended nonceit could happen in some race conditions, e.g. to skip nonce 3, but nonce 3 was consumed firstusage: skipping the next nonce to prevent message verification, e.g. skip a message when Precrime throws alertsif the Oapp wants to skip a verified message, it should call the clear() function insteadafter skipping, the lazyInboundNonce is set to the provided nonce, which makes the inboundNonce also the provided nonceie. allows the Oapp to increment the lazyInboundNonce without having had that corresponding msg be verified"
2542
+ },
2543
+ "transferOwnership(address)": {
2544
+ "details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
2545
+ },
2546
+ "verify((uint32,bytes32,uint64),address,bytes32)": {
2547
+ "details": "MESSAGING STEP 2 - on the destination chainconfigured receive library verifies a message",
2548
+ "params": {
2549
+ "_origin": "a struct holding the srcEid, nonce, and sender of the message",
2550
+ "_payloadHash": "the payload hash of the message",
2551
+ "_receiver": "the receiver of the message"
2552
+ }
2553
+ }
2554
+ },
2555
+ "version": 1
2556
+ },
2557
+ "userdoc": {
2558
+ "kind": "user",
2559
+ "methods": {
2560
+ "getSendLibrary(address,uint32)": {
2561
+ "notice": "The Send Library is the Oapp specified library that will be used to send the message to the destination endpoint. If the Oapp does not specify a Send Library, the default Send Library will be used."
2562
+ },
2563
+ "quote((uint32,bytes32,bytes,bytes,bool),address)": {
2564
+ "notice": "This view function gives the application built on top of LayerZero the ability to requests a quote with the same parameters as they would to send their message. Since the quotes are given on chain there is a race condition in which the prices could change between the time the user gets their quote and the time they submit their message. If the price moves up and the user doesn't send enough funds the transaction will revert, if the price goes down the _refundAddress provided by the app will be refunded the difference."
2565
+ },
2566
+ "setDelegate(address)": {
2567
+ "notice": "delegate is authorized by the oapp to configure anything in layerzero"
2568
+ }
2569
+ },
2570
+ "version": 1
2571
+ },
2572
+ "storageLayout": {
2573
+ "storage": [
2574
+ {
2575
+ "astId": 506,
2576
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2577
+ "label": "_owner",
2578
+ "offset": 0,
2579
+ "slot": "0",
2580
+ "type": "t_address"
2581
+ },
2582
+ {
2583
+ "astId": 4292,
2584
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2585
+ "label": "lazyInboundNonce",
2586
+ "offset": 0,
2587
+ "slot": "1",
2588
+ "type": "t_mapping(t_address,t_mapping(t_uint32,t_mapping(t_bytes32,t_uint64)))"
2589
+ },
2590
+ {
2591
+ "astId": 4302,
2592
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2593
+ "label": "inboundPayloadHash",
2594
+ "offset": 0,
2595
+ "slot": "2",
2596
+ "type": "t_mapping(t_address,t_mapping(t_uint32,t_mapping(t_bytes32,t_mapping(t_uint64,t_bytes32))))"
2597
+ },
2598
+ {
2599
+ "astId": 4310,
2600
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2601
+ "label": "outboundNonce",
2602
+ "offset": 0,
2603
+ "slot": "3",
2604
+ "type": "t_mapping(t_address,t_mapping(t_uint32,t_mapping(t_bytes32,t_uint64)))"
2605
+ },
2606
+ {
2607
+ "astId": 3306,
2608
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2609
+ "label": "registeredLibraries",
2610
+ "offset": 0,
2611
+ "slot": "4",
2612
+ "type": "t_array(t_address)dyn_storage"
2613
+ },
2614
+ {
2615
+ "astId": 3310,
2616
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2617
+ "label": "isRegisteredLibrary",
2618
+ "offset": 0,
2619
+ "slot": "5",
2620
+ "type": "t_mapping(t_address,t_bool)"
2621
+ },
2622
+ {
2623
+ "astId": 3316,
2624
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2625
+ "label": "sendLibrary",
2626
+ "offset": 0,
2627
+ "slot": "6",
2628
+ "type": "t_mapping(t_address,t_mapping(t_uint32,t_address))"
2629
+ },
2630
+ {
2631
+ "astId": 3322,
2632
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2633
+ "label": "receiveLibrary",
2634
+ "offset": 0,
2635
+ "slot": "7",
2636
+ "type": "t_mapping(t_address,t_mapping(t_uint32,t_address))"
2637
+ },
2638
+ {
2639
+ "astId": 3329,
2640
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2641
+ "label": "receiveLibraryTimeout",
2642
+ "offset": 0,
2643
+ "slot": "8",
2644
+ "type": "t_mapping(t_address,t_mapping(t_uint32,t_struct(Timeout)5457_storage))"
2645
+ },
2646
+ {
2647
+ "astId": 3333,
2648
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2649
+ "label": "defaultSendLibrary",
2650
+ "offset": 0,
2651
+ "slot": "9",
2652
+ "type": "t_mapping(t_uint32,t_address)"
2653
+ },
2654
+ {
2655
+ "astId": 3337,
2656
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2657
+ "label": "defaultReceiveLibrary",
2658
+ "offset": 0,
2659
+ "slot": "10",
2660
+ "type": "t_mapping(t_uint32,t_address)"
2661
+ },
2662
+ {
2663
+ "astId": 3342,
2664
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2665
+ "label": "defaultReceiveLibraryTimeout",
2666
+ "offset": 0,
2667
+ "slot": "11",
2668
+ "type": "t_mapping(t_uint32,t_struct(Timeout)5457_storage)"
2669
+ },
2670
+ {
2671
+ "astId": 4847,
2672
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2673
+ "label": "composeQueue",
2674
+ "offset": 0,
2675
+ "slot": "12",
2676
+ "type": "t_mapping(t_address,t_mapping(t_address,t_mapping(t_bytes32,t_mapping(t_uint16,t_bytes32))))"
2677
+ },
2678
+ {
2679
+ "astId": 5035,
2680
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2681
+ "label": "_sendContext",
2682
+ "offset": 0,
2683
+ "slot": "13",
2684
+ "type": "t_uint256"
2685
+ },
2686
+ {
2687
+ "astId": 2074,
2688
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2689
+ "label": "lzToken",
2690
+ "offset": 0,
2691
+ "slot": "14",
2692
+ "type": "t_address"
2693
+ },
2694
+ {
2695
+ "astId": 2078,
2696
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2697
+ "label": "delegates",
2698
+ "offset": 0,
2699
+ "slot": "15",
2700
+ "type": "t_mapping(t_address,t_address)"
2701
+ }
2702
+ ],
2703
+ "types": {
2704
+ "t_address": {
2705
+ "encoding": "inplace",
2706
+ "label": "address",
2707
+ "numberOfBytes": "20"
2708
+ },
2709
+ "t_array(t_address)dyn_storage": {
2710
+ "base": "t_address",
2711
+ "encoding": "dynamic_array",
2712
+ "label": "address[]",
2713
+ "numberOfBytes": "32"
2714
+ },
2715
+ "t_bool": {
2716
+ "encoding": "inplace",
2717
+ "label": "bool",
2718
+ "numberOfBytes": "1"
2719
+ },
2720
+ "t_bytes32": {
2721
+ "encoding": "inplace",
2722
+ "label": "bytes32",
2723
+ "numberOfBytes": "32"
2724
+ },
2725
+ "t_mapping(t_address,t_address)": {
2726
+ "encoding": "mapping",
2727
+ "key": "t_address",
2728
+ "label": "mapping(address => address)",
2729
+ "numberOfBytes": "32",
2730
+ "value": "t_address"
2731
+ },
2732
+ "t_mapping(t_address,t_bool)": {
2733
+ "encoding": "mapping",
2734
+ "key": "t_address",
2735
+ "label": "mapping(address => bool)",
2736
+ "numberOfBytes": "32",
2737
+ "value": "t_bool"
2738
+ },
2739
+ "t_mapping(t_address,t_mapping(t_address,t_mapping(t_bytes32,t_mapping(t_uint16,t_bytes32))))": {
2740
+ "encoding": "mapping",
2741
+ "key": "t_address",
2742
+ "label": "mapping(address => mapping(address => mapping(bytes32 => mapping(uint16 => bytes32))))",
2743
+ "numberOfBytes": "32",
2744
+ "value": "t_mapping(t_address,t_mapping(t_bytes32,t_mapping(t_uint16,t_bytes32)))"
2745
+ },
2746
+ "t_mapping(t_address,t_mapping(t_bytes32,t_mapping(t_uint16,t_bytes32)))": {
2747
+ "encoding": "mapping",
2748
+ "key": "t_address",
2749
+ "label": "mapping(address => mapping(bytes32 => mapping(uint16 => bytes32)))",
2750
+ "numberOfBytes": "32",
2751
+ "value": "t_mapping(t_bytes32,t_mapping(t_uint16,t_bytes32))"
2752
+ },
2753
+ "t_mapping(t_address,t_mapping(t_uint32,t_address))": {
2754
+ "encoding": "mapping",
2755
+ "key": "t_address",
2756
+ "label": "mapping(address => mapping(uint32 => address))",
2757
+ "numberOfBytes": "32",
2758
+ "value": "t_mapping(t_uint32,t_address)"
2759
+ },
2760
+ "t_mapping(t_address,t_mapping(t_uint32,t_mapping(t_bytes32,t_mapping(t_uint64,t_bytes32))))": {
2761
+ "encoding": "mapping",
2762
+ "key": "t_address",
2763
+ "label": "mapping(address => mapping(uint32 => mapping(bytes32 => mapping(uint64 => bytes32))))",
2764
+ "numberOfBytes": "32",
2765
+ "value": "t_mapping(t_uint32,t_mapping(t_bytes32,t_mapping(t_uint64,t_bytes32)))"
2766
+ },
2767
+ "t_mapping(t_address,t_mapping(t_uint32,t_mapping(t_bytes32,t_uint64)))": {
2768
+ "encoding": "mapping",
2769
+ "key": "t_address",
2770
+ "label": "mapping(address => mapping(uint32 => mapping(bytes32 => uint64)))",
2771
+ "numberOfBytes": "32",
2772
+ "value": "t_mapping(t_uint32,t_mapping(t_bytes32,t_uint64))"
2773
+ },
2774
+ "t_mapping(t_address,t_mapping(t_uint32,t_struct(Timeout)5457_storage))": {
2775
+ "encoding": "mapping",
2776
+ "key": "t_address",
2777
+ "label": "mapping(address => mapping(uint32 => struct IMessageLibManager.Timeout))",
2778
+ "numberOfBytes": "32",
2779
+ "value": "t_mapping(t_uint32,t_struct(Timeout)5457_storage)"
2780
+ },
2781
+ "t_mapping(t_bytes32,t_mapping(t_uint16,t_bytes32))": {
2782
+ "encoding": "mapping",
2783
+ "key": "t_bytes32",
2784
+ "label": "mapping(bytes32 => mapping(uint16 => bytes32))",
2785
+ "numberOfBytes": "32",
2786
+ "value": "t_mapping(t_uint16,t_bytes32)"
2787
+ },
2788
+ "t_mapping(t_bytes32,t_mapping(t_uint64,t_bytes32))": {
2789
+ "encoding": "mapping",
2790
+ "key": "t_bytes32",
2791
+ "label": "mapping(bytes32 => mapping(uint64 => bytes32))",
2792
+ "numberOfBytes": "32",
2793
+ "value": "t_mapping(t_uint64,t_bytes32)"
2794
+ },
2795
+ "t_mapping(t_bytes32,t_uint64)": {
2796
+ "encoding": "mapping",
2797
+ "key": "t_bytes32",
2798
+ "label": "mapping(bytes32 => uint64)",
2799
+ "numberOfBytes": "32",
2800
+ "value": "t_uint64"
2801
+ },
2802
+ "t_mapping(t_uint16,t_bytes32)": {
2803
+ "encoding": "mapping",
2804
+ "key": "t_uint16",
2805
+ "label": "mapping(uint16 => bytes32)",
2806
+ "numberOfBytes": "32",
2807
+ "value": "t_bytes32"
2808
+ },
2809
+ "t_mapping(t_uint32,t_address)": {
2810
+ "encoding": "mapping",
2811
+ "key": "t_uint32",
2812
+ "label": "mapping(uint32 => address)",
2813
+ "numberOfBytes": "32",
2814
+ "value": "t_address"
2815
+ },
2816
+ "t_mapping(t_uint32,t_mapping(t_bytes32,t_mapping(t_uint64,t_bytes32)))": {
2817
+ "encoding": "mapping",
2818
+ "key": "t_uint32",
2819
+ "label": "mapping(uint32 => mapping(bytes32 => mapping(uint64 => bytes32)))",
2820
+ "numberOfBytes": "32",
2821
+ "value": "t_mapping(t_bytes32,t_mapping(t_uint64,t_bytes32))"
2822
+ },
2823
+ "t_mapping(t_uint32,t_mapping(t_bytes32,t_uint64))": {
2824
+ "encoding": "mapping",
2825
+ "key": "t_uint32",
2826
+ "label": "mapping(uint32 => mapping(bytes32 => uint64))",
2827
+ "numberOfBytes": "32",
2828
+ "value": "t_mapping(t_bytes32,t_uint64)"
2829
+ },
2830
+ "t_mapping(t_uint32,t_struct(Timeout)5457_storage)": {
2831
+ "encoding": "mapping",
2832
+ "key": "t_uint32",
2833
+ "label": "mapping(uint32 => struct IMessageLibManager.Timeout)",
2834
+ "numberOfBytes": "32",
2835
+ "value": "t_struct(Timeout)5457_storage"
2836
+ },
2837
+ "t_mapping(t_uint64,t_bytes32)": {
2838
+ "encoding": "mapping",
2839
+ "key": "t_uint64",
2840
+ "label": "mapping(uint64 => bytes32)",
2841
+ "numberOfBytes": "32",
2842
+ "value": "t_bytes32"
2843
+ },
2844
+ "t_struct(Timeout)5457_storage": {
2845
+ "encoding": "inplace",
2846
+ "label": "struct IMessageLibManager.Timeout",
2847
+ "members": [
2848
+ {
2849
+ "astId": 5454,
2850
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2851
+ "label": "lib",
2852
+ "offset": 0,
2853
+ "slot": "0",
2854
+ "type": "t_address"
2855
+ },
2856
+ {
2857
+ "astId": 5456,
2858
+ "contract": "contracts/EndpointV2.sol:EndpointV2",
2859
+ "label": "expiry",
2860
+ "offset": 0,
2861
+ "slot": "1",
2862
+ "type": "t_uint256"
2863
+ }
2864
+ ],
2865
+ "numberOfBytes": "64"
2866
+ },
2867
+ "t_uint16": {
2868
+ "encoding": "inplace",
2869
+ "label": "uint16",
2870
+ "numberOfBytes": "2"
2871
+ },
2872
+ "t_uint256": {
2873
+ "encoding": "inplace",
2874
+ "label": "uint256",
2875
+ "numberOfBytes": "32"
2876
+ },
2877
+ "t_uint32": {
2878
+ "encoding": "inplace",
2879
+ "label": "uint32",
2880
+ "numberOfBytes": "4"
2881
+ },
2882
+ "t_uint64": {
2883
+ "encoding": "inplace",
2884
+ "label": "uint64",
2885
+ "numberOfBytes": "8"
2886
+ }
2887
+ }
2888
+ },
2889
+ "transactionHash": "0x2c73f132ab25a2b704bff76bd391a1cee4544b3da6788af1b0a7671195d4a7ad",
2890
+ "receipt": {
2891
+ "to": "0x8Cad6A96B0a287e29bA719257d0eF431Ea6D888B",
2892
+ "from": "0xc13b65f7c53Cd6db2EA205a4b574b4a0858720A6",
2893
+ "contractAddress": null,
2894
+ "transactionIndex": 0,
2895
+ "gasUsed": {
2896
+ "type": "BigNumber",
2897
+ "hex": "0x55a603"
2898
+ },
2899
+ "logsBloom": "0x00000000000000000000000000000000000000000200000020800000000000000000000000000000200000000000000000000000000000000000020000000000000400000000000000000000000000000001000000000000000000000000000000000000030000000200000000000800000000000000000000000000000000400000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000040000000000000000000000000000000004000000000000000000000020000000000000000000000008000000000000000000000000000000000000000000",
2900
+ "blockHash": "0x8d38e212ed9b387851a222605b8bf74082c5376468425ba617816a0299a86ecf",
2901
+ "transactionHash": "0x2c73f132ab25a2b704bff76bd391a1cee4544b3da6788af1b0a7671195d4a7ad",
2902
+ "logs": [
2903
+ {
2904
+ "transactionIndex": 0,
2905
+ "blockNumber": 2936507,
2906
+ "transactionHash": "0x2c73f132ab25a2b704bff76bd391a1cee4544b3da6788af1b0a7671195d4a7ad",
2907
+ "address": "0x6EDCE65403992e310A62460808c4b910D972f10f",
2908
+ "topics": [
2909
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
2910
+ "0x0000000000000000000000000000000000000000000000000000000000000000",
2911
+ "0x0000000000000000000000001ba9bf7dc300049e22ab77acbdbdbe0f27fb1f78"
2912
+ ],
2913
+ "data": "0x",
2914
+ "logIndex": 0,
2915
+ "blockHash": "0x8d38e212ed9b387851a222605b8bf74082c5376468425ba617816a0299a86ecf"
2916
+ },
2917
+ {
2918
+ "transactionIndex": 0,
2919
+ "blockNumber": 2936507,
2920
+ "transactionHash": "0x2c73f132ab25a2b704bff76bd391a1cee4544b3da6788af1b0a7671195d4a7ad",
2921
+ "address": "0x6EDCE65403992e310A62460808c4b910D972f10f",
2922
+ "topics": [
2923
+ "0x6b374d56679ca9463f27c85c6311e2bb7fde69bf201d3da39d53f10bd9d78af5"
2924
+ ],
2925
+ "data": "0x0000000000000000000000000c77d8d771ab35e2e184e7ce127f19ced31ff8c0",
2926
+ "logIndex": 1,
2927
+ "blockHash": "0x8d38e212ed9b387851a222605b8bf74082c5376468425ba617816a0299a86ecf"
2928
+ },
2929
+ {
2930
+ "transactionIndex": 0,
2931
+ "blockNumber": 2936507,
2932
+ "transactionHash": "0x2c73f132ab25a2b704bff76bd391a1cee4544b3da6788af1b0a7671195d4a7ad",
2933
+ "address": "0x6EDCE65403992e310A62460808c4b910D972f10f",
2934
+ "topics": [
2935
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
2936
+ "0x0000000000000000000000001ba9bf7dc300049e22ab77acbdbdbe0f27fb1f78",
2937
+ "0x000000000000000000000000c13b65f7c53cd6db2ea205a4b574b4a0858720a6"
2938
+ ],
2939
+ "data": "0x",
2940
+ "logIndex": 2,
2941
+ "blockHash": "0x8d38e212ed9b387851a222605b8bf74082c5376468425ba617816a0299a86ecf"
2942
+ }
2943
+ ],
2944
+ "blockNumber": 2936507,
2945
+ "confirmations": 1,
2946
+ "cumulativeGasUsed": {
2947
+ "type": "BigNumber",
2948
+ "hex": "0x55a603"
2949
+ },
2950
+ "effectiveGasPrice": {
2951
+ "type": "BigNumber",
2952
+ "hex": "0x18e9b26e07"
2953
+ },
2954
+ "status": 1,
2955
+ "type": 2,
2956
+ "byzantium": true,
2957
+ "events": [
2958
+ {
2959
+ "transactionIndex": 0,
2960
+ "blockNumber": 2936507,
2961
+ "transactionHash": "0x2c73f132ab25a2b704bff76bd391a1cee4544b3da6788af1b0a7671195d4a7ad",
2962
+ "address": "0x6EDCE65403992e310A62460808c4b910D972f10f",
2963
+ "topics": [
2964
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
2965
+ "0x0000000000000000000000000000000000000000000000000000000000000000",
2966
+ "0x0000000000000000000000001ba9bf7dc300049e22ab77acbdbdbe0f27fb1f78"
2967
+ ],
2968
+ "data": "0x",
2969
+ "logIndex": 0,
2970
+ "blockHash": "0x8d38e212ed9b387851a222605b8bf74082c5376468425ba617816a0299a86ecf"
2971
+ },
2972
+ {
2973
+ "transactionIndex": 0,
2974
+ "blockNumber": 2936507,
2975
+ "transactionHash": "0x2c73f132ab25a2b704bff76bd391a1cee4544b3da6788af1b0a7671195d4a7ad",
2976
+ "address": "0x6EDCE65403992e310A62460808c4b910D972f10f",
2977
+ "topics": [
2978
+ "0x6b374d56679ca9463f27c85c6311e2bb7fde69bf201d3da39d53f10bd9d78af5"
2979
+ ],
2980
+ "data": "0x0000000000000000000000000c77d8d771ab35e2e184e7ce127f19ced31ff8c0",
2981
+ "logIndex": 1,
2982
+ "blockHash": "0x8d38e212ed9b387851a222605b8bf74082c5376468425ba617816a0299a86ecf"
2983
+ },
2984
+ {
2985
+ "transactionIndex": 0,
2986
+ "blockNumber": 2936507,
2987
+ "transactionHash": "0x2c73f132ab25a2b704bff76bd391a1cee4544b3da6788af1b0a7671195d4a7ad",
2988
+ "address": "0x6EDCE65403992e310A62460808c4b910D972f10f",
2989
+ "topics": [
2990
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
2991
+ "0x0000000000000000000000001ba9bf7dc300049e22ab77acbdbdbe0f27fb1f78",
2992
+ "0x000000000000000000000000c13b65f7c53cd6db2ea205a4b574b4a0858720a6"
2993
+ ],
2994
+ "data": "0x",
2995
+ "logIndex": 2,
2996
+ "blockHash": "0x8d38e212ed9b387851a222605b8bf74082c5376468425ba617816a0299a86ecf"
2997
+ }
2998
+ ]
2999
+ }
3000
+ }