@venusprotocol/oracle 2.5.0-dev.5 → 2.5.0-dev.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,941 @@
1
+ {
2
+ "address": "0xDe564a4C887d5ad315a19a96DC81991c98b12182",
3
+ "abi": [
4
+ {
5
+ "anonymous": false,
6
+ "inputs": [
7
+ {
8
+ "indexed": false,
9
+ "internalType": "address",
10
+ "name": "previousAdmin",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "indexed": false,
15
+ "internalType": "address",
16
+ "name": "newAdmin",
17
+ "type": "address"
18
+ }
19
+ ],
20
+ "name": "AdminChanged",
21
+ "type": "event"
22
+ },
23
+ {
24
+ "anonymous": false,
25
+ "inputs": [
26
+ {
27
+ "indexed": true,
28
+ "internalType": "address",
29
+ "name": "beacon",
30
+ "type": "address"
31
+ }
32
+ ],
33
+ "name": "BeaconUpgraded",
34
+ "type": "event"
35
+ },
36
+ {
37
+ "anonymous": false,
38
+ "inputs": [
39
+ {
40
+ "indexed": true,
41
+ "internalType": "address",
42
+ "name": "implementation",
43
+ "type": "address"
44
+ }
45
+ ],
46
+ "name": "Upgraded",
47
+ "type": "event"
48
+ },
49
+ {
50
+ "stateMutability": "payable",
51
+ "type": "fallback"
52
+ },
53
+ {
54
+ "inputs": [],
55
+ "name": "admin",
56
+ "outputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "admin_",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "stateMutability": "nonpayable",
64
+ "type": "function"
65
+ },
66
+ {
67
+ "inputs": [],
68
+ "name": "implementation",
69
+ "outputs": [
70
+ {
71
+ "internalType": "address",
72
+ "name": "implementation_",
73
+ "type": "address"
74
+ }
75
+ ],
76
+ "stateMutability": "nonpayable",
77
+ "type": "function"
78
+ },
79
+ {
80
+ "inputs": [
81
+ {
82
+ "internalType": "address",
83
+ "name": "newImplementation",
84
+ "type": "address"
85
+ }
86
+ ],
87
+ "name": "upgradeTo",
88
+ "outputs": [],
89
+ "stateMutability": "nonpayable",
90
+ "type": "function"
91
+ },
92
+ {
93
+ "inputs": [
94
+ {
95
+ "internalType": "address",
96
+ "name": "newImplementation",
97
+ "type": "address"
98
+ },
99
+ {
100
+ "internalType": "bytes",
101
+ "name": "data",
102
+ "type": "bytes"
103
+ }
104
+ ],
105
+ "name": "upgradeToAndCall",
106
+ "outputs": [],
107
+ "stateMutability": "payable",
108
+ "type": "function"
109
+ },
110
+ {
111
+ "stateMutability": "payable",
112
+ "type": "receive"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "sender",
119
+ "type": "address"
120
+ },
121
+ {
122
+ "internalType": "address",
123
+ "name": "calledContract",
124
+ "type": "address"
125
+ },
126
+ {
127
+ "internalType": "string",
128
+ "name": "methodSignature",
129
+ "type": "string"
130
+ }
131
+ ],
132
+ "name": "Unauthorized",
133
+ "type": "error"
134
+ },
135
+ {
136
+ "anonymous": false,
137
+ "inputs": [
138
+ {
139
+ "indexed": false,
140
+ "internalType": "uint8",
141
+ "name": "version",
142
+ "type": "uint8"
143
+ }
144
+ ],
145
+ "name": "Initialized",
146
+ "type": "event"
147
+ },
148
+ {
149
+ "anonymous": false,
150
+ "inputs": [
151
+ {
152
+ "indexed": false,
153
+ "internalType": "address",
154
+ "name": "oldAccessControlManager",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "indexed": false,
159
+ "internalType": "address",
160
+ "name": "newAccessControlManager",
161
+ "type": "address"
162
+ }
163
+ ],
164
+ "name": "NewAccessControlManager",
165
+ "type": "event"
166
+ },
167
+ {
168
+ "anonymous": false,
169
+ "inputs": [
170
+ {
171
+ "indexed": true,
172
+ "internalType": "address",
173
+ "name": "asset",
174
+ "type": "address"
175
+ },
176
+ {
177
+ "indexed": true,
178
+ "internalType": "uint256",
179
+ "name": "role",
180
+ "type": "uint256"
181
+ },
182
+ {
183
+ "indexed": true,
184
+ "internalType": "bool",
185
+ "name": "enable",
186
+ "type": "bool"
187
+ }
188
+ ],
189
+ "name": "OracleEnabled",
190
+ "type": "event"
191
+ },
192
+ {
193
+ "anonymous": false,
194
+ "inputs": [
195
+ {
196
+ "indexed": true,
197
+ "internalType": "address",
198
+ "name": "asset",
199
+ "type": "address"
200
+ },
201
+ {
202
+ "indexed": true,
203
+ "internalType": "address",
204
+ "name": "oracle",
205
+ "type": "address"
206
+ },
207
+ {
208
+ "indexed": true,
209
+ "internalType": "uint256",
210
+ "name": "role",
211
+ "type": "uint256"
212
+ }
213
+ ],
214
+ "name": "OracleSet",
215
+ "type": "event"
216
+ },
217
+ {
218
+ "anonymous": false,
219
+ "inputs": [
220
+ {
221
+ "indexed": true,
222
+ "internalType": "address",
223
+ "name": "previousOwner",
224
+ "type": "address"
225
+ },
226
+ {
227
+ "indexed": true,
228
+ "internalType": "address",
229
+ "name": "newOwner",
230
+ "type": "address"
231
+ }
232
+ ],
233
+ "name": "OwnershipTransferStarted",
234
+ "type": "event"
235
+ },
236
+ {
237
+ "anonymous": false,
238
+ "inputs": [
239
+ {
240
+ "indexed": true,
241
+ "internalType": "address",
242
+ "name": "previousOwner",
243
+ "type": "address"
244
+ },
245
+ {
246
+ "indexed": true,
247
+ "internalType": "address",
248
+ "name": "newOwner",
249
+ "type": "address"
250
+ }
251
+ ],
252
+ "name": "OwnershipTransferred",
253
+ "type": "event"
254
+ },
255
+ {
256
+ "anonymous": false,
257
+ "inputs": [
258
+ {
259
+ "indexed": false,
260
+ "internalType": "address",
261
+ "name": "account",
262
+ "type": "address"
263
+ }
264
+ ],
265
+ "name": "Paused",
266
+ "type": "event"
267
+ },
268
+ {
269
+ "anonymous": false,
270
+ "inputs": [
271
+ {
272
+ "indexed": true,
273
+ "internalType": "address",
274
+ "name": "asset",
275
+ "type": "address"
276
+ },
277
+ {
278
+ "indexed": true,
279
+ "internalType": "address",
280
+ "name": "mainOracle",
281
+ "type": "address"
282
+ },
283
+ {
284
+ "indexed": true,
285
+ "internalType": "address",
286
+ "name": "pivotOracle",
287
+ "type": "address"
288
+ },
289
+ {
290
+ "indexed": false,
291
+ "internalType": "address",
292
+ "name": "fallbackOracle",
293
+ "type": "address"
294
+ }
295
+ ],
296
+ "name": "TokenConfigAdded",
297
+ "type": "event"
298
+ },
299
+ {
300
+ "anonymous": false,
301
+ "inputs": [
302
+ {
303
+ "indexed": false,
304
+ "internalType": "address",
305
+ "name": "account",
306
+ "type": "address"
307
+ }
308
+ ],
309
+ "name": "Unpaused",
310
+ "type": "event"
311
+ },
312
+ {
313
+ "inputs": [],
314
+ "name": "INVALID_PRICE",
315
+ "outputs": [
316
+ {
317
+ "internalType": "uint256",
318
+ "name": "",
319
+ "type": "uint256"
320
+ }
321
+ ],
322
+ "stateMutability": "view",
323
+ "type": "function"
324
+ },
325
+ {
326
+ "inputs": [],
327
+ "name": "NATIVE_TOKEN_ADDR",
328
+ "outputs": [
329
+ {
330
+ "internalType": "address",
331
+ "name": "",
332
+ "type": "address"
333
+ }
334
+ ],
335
+ "stateMutability": "view",
336
+ "type": "function"
337
+ },
338
+ {
339
+ "inputs": [],
340
+ "name": "acceptOwnership",
341
+ "outputs": [],
342
+ "stateMutability": "nonpayable",
343
+ "type": "function"
344
+ },
345
+ {
346
+ "inputs": [],
347
+ "name": "accessControlManager",
348
+ "outputs": [
349
+ {
350
+ "internalType": "contract IAccessControlManagerV8",
351
+ "name": "",
352
+ "type": "address"
353
+ }
354
+ ],
355
+ "stateMutability": "view",
356
+ "type": "function"
357
+ },
358
+ {
359
+ "inputs": [],
360
+ "name": "boundValidator",
361
+ "outputs": [
362
+ {
363
+ "internalType": "contract BoundValidatorInterface",
364
+ "name": "",
365
+ "type": "address"
366
+ }
367
+ ],
368
+ "stateMutability": "view",
369
+ "type": "function"
370
+ },
371
+ {
372
+ "inputs": [
373
+ {
374
+ "internalType": "address",
375
+ "name": "asset",
376
+ "type": "address"
377
+ },
378
+ {
379
+ "internalType": "enum ResilientOracle.OracleRole",
380
+ "name": "role",
381
+ "type": "uint8"
382
+ },
383
+ {
384
+ "internalType": "bool",
385
+ "name": "enable",
386
+ "type": "bool"
387
+ }
388
+ ],
389
+ "name": "enableOracle",
390
+ "outputs": [],
391
+ "stateMutability": "nonpayable",
392
+ "type": "function"
393
+ },
394
+ {
395
+ "inputs": [
396
+ {
397
+ "internalType": "address",
398
+ "name": "asset",
399
+ "type": "address"
400
+ },
401
+ {
402
+ "internalType": "enum ResilientOracle.OracleRole",
403
+ "name": "role",
404
+ "type": "uint8"
405
+ }
406
+ ],
407
+ "name": "getOracle",
408
+ "outputs": [
409
+ {
410
+ "internalType": "address",
411
+ "name": "oracle",
412
+ "type": "address"
413
+ },
414
+ {
415
+ "internalType": "bool",
416
+ "name": "enabled",
417
+ "type": "bool"
418
+ }
419
+ ],
420
+ "stateMutability": "view",
421
+ "type": "function"
422
+ },
423
+ {
424
+ "inputs": [
425
+ {
426
+ "internalType": "address",
427
+ "name": "asset",
428
+ "type": "address"
429
+ }
430
+ ],
431
+ "name": "getPrice",
432
+ "outputs": [
433
+ {
434
+ "internalType": "uint256",
435
+ "name": "",
436
+ "type": "uint256"
437
+ }
438
+ ],
439
+ "stateMutability": "view",
440
+ "type": "function"
441
+ },
442
+ {
443
+ "inputs": [
444
+ {
445
+ "internalType": "address",
446
+ "name": "asset",
447
+ "type": "address"
448
+ }
449
+ ],
450
+ "name": "getTokenConfig",
451
+ "outputs": [
452
+ {
453
+ "components": [
454
+ {
455
+ "internalType": "address",
456
+ "name": "asset",
457
+ "type": "address"
458
+ },
459
+ {
460
+ "internalType": "address[3]",
461
+ "name": "oracles",
462
+ "type": "address[3]"
463
+ },
464
+ {
465
+ "internalType": "bool[3]",
466
+ "name": "enableFlagsForOracles",
467
+ "type": "bool[3]"
468
+ }
469
+ ],
470
+ "internalType": "struct ResilientOracle.TokenConfig",
471
+ "name": "",
472
+ "type": "tuple"
473
+ }
474
+ ],
475
+ "stateMutability": "view",
476
+ "type": "function"
477
+ },
478
+ {
479
+ "inputs": [
480
+ {
481
+ "internalType": "address",
482
+ "name": "vToken",
483
+ "type": "address"
484
+ }
485
+ ],
486
+ "name": "getUnderlyingPrice",
487
+ "outputs": [
488
+ {
489
+ "internalType": "uint256",
490
+ "name": "",
491
+ "type": "uint256"
492
+ }
493
+ ],
494
+ "stateMutability": "view",
495
+ "type": "function"
496
+ },
497
+ {
498
+ "inputs": [
499
+ {
500
+ "internalType": "address",
501
+ "name": "accessControlManager_",
502
+ "type": "address"
503
+ }
504
+ ],
505
+ "name": "initialize",
506
+ "outputs": [],
507
+ "stateMutability": "nonpayable",
508
+ "type": "function"
509
+ },
510
+ {
511
+ "inputs": [],
512
+ "name": "nativeMarket",
513
+ "outputs": [
514
+ {
515
+ "internalType": "address",
516
+ "name": "",
517
+ "type": "address"
518
+ }
519
+ ],
520
+ "stateMutability": "view",
521
+ "type": "function"
522
+ },
523
+ {
524
+ "inputs": [],
525
+ "name": "owner",
526
+ "outputs": [
527
+ {
528
+ "internalType": "address",
529
+ "name": "",
530
+ "type": "address"
531
+ }
532
+ ],
533
+ "stateMutability": "view",
534
+ "type": "function"
535
+ },
536
+ {
537
+ "inputs": [],
538
+ "name": "pause",
539
+ "outputs": [],
540
+ "stateMutability": "nonpayable",
541
+ "type": "function"
542
+ },
543
+ {
544
+ "inputs": [],
545
+ "name": "paused",
546
+ "outputs": [
547
+ {
548
+ "internalType": "bool",
549
+ "name": "",
550
+ "type": "bool"
551
+ }
552
+ ],
553
+ "stateMutability": "view",
554
+ "type": "function"
555
+ },
556
+ {
557
+ "inputs": [],
558
+ "name": "pendingOwner",
559
+ "outputs": [
560
+ {
561
+ "internalType": "address",
562
+ "name": "",
563
+ "type": "address"
564
+ }
565
+ ],
566
+ "stateMutability": "view",
567
+ "type": "function"
568
+ },
569
+ {
570
+ "inputs": [],
571
+ "name": "renounceOwnership",
572
+ "outputs": [],
573
+ "stateMutability": "nonpayable",
574
+ "type": "function"
575
+ },
576
+ {
577
+ "inputs": [
578
+ {
579
+ "internalType": "address",
580
+ "name": "accessControlManager_",
581
+ "type": "address"
582
+ }
583
+ ],
584
+ "name": "setAccessControlManager",
585
+ "outputs": [],
586
+ "stateMutability": "nonpayable",
587
+ "type": "function"
588
+ },
589
+ {
590
+ "inputs": [
591
+ {
592
+ "internalType": "address",
593
+ "name": "asset",
594
+ "type": "address"
595
+ },
596
+ {
597
+ "internalType": "address",
598
+ "name": "oracle",
599
+ "type": "address"
600
+ },
601
+ {
602
+ "internalType": "enum ResilientOracle.OracleRole",
603
+ "name": "role",
604
+ "type": "uint8"
605
+ }
606
+ ],
607
+ "name": "setOracle",
608
+ "outputs": [],
609
+ "stateMutability": "nonpayable",
610
+ "type": "function"
611
+ },
612
+ {
613
+ "inputs": [
614
+ {
615
+ "components": [
616
+ {
617
+ "internalType": "address",
618
+ "name": "asset",
619
+ "type": "address"
620
+ },
621
+ {
622
+ "internalType": "address[3]",
623
+ "name": "oracles",
624
+ "type": "address[3]"
625
+ },
626
+ {
627
+ "internalType": "bool[3]",
628
+ "name": "enableFlagsForOracles",
629
+ "type": "bool[3]"
630
+ }
631
+ ],
632
+ "internalType": "struct ResilientOracle.TokenConfig",
633
+ "name": "tokenConfig",
634
+ "type": "tuple"
635
+ }
636
+ ],
637
+ "name": "setTokenConfig",
638
+ "outputs": [],
639
+ "stateMutability": "nonpayable",
640
+ "type": "function"
641
+ },
642
+ {
643
+ "inputs": [
644
+ {
645
+ "components": [
646
+ {
647
+ "internalType": "address",
648
+ "name": "asset",
649
+ "type": "address"
650
+ },
651
+ {
652
+ "internalType": "address[3]",
653
+ "name": "oracles",
654
+ "type": "address[3]"
655
+ },
656
+ {
657
+ "internalType": "bool[3]",
658
+ "name": "enableFlagsForOracles",
659
+ "type": "bool[3]"
660
+ }
661
+ ],
662
+ "internalType": "struct ResilientOracle.TokenConfig[]",
663
+ "name": "tokenConfigs_",
664
+ "type": "tuple[]"
665
+ }
666
+ ],
667
+ "name": "setTokenConfigs",
668
+ "outputs": [],
669
+ "stateMutability": "nonpayable",
670
+ "type": "function"
671
+ },
672
+ {
673
+ "inputs": [
674
+ {
675
+ "internalType": "address",
676
+ "name": "newOwner",
677
+ "type": "address"
678
+ }
679
+ ],
680
+ "name": "transferOwnership",
681
+ "outputs": [],
682
+ "stateMutability": "nonpayable",
683
+ "type": "function"
684
+ },
685
+ {
686
+ "inputs": [],
687
+ "name": "unpause",
688
+ "outputs": [],
689
+ "stateMutability": "nonpayable",
690
+ "type": "function"
691
+ },
692
+ {
693
+ "inputs": [
694
+ {
695
+ "internalType": "address",
696
+ "name": "asset",
697
+ "type": "address"
698
+ }
699
+ ],
700
+ "name": "updateAssetPrice",
701
+ "outputs": [],
702
+ "stateMutability": "nonpayable",
703
+ "type": "function"
704
+ },
705
+ {
706
+ "inputs": [
707
+ {
708
+ "internalType": "address",
709
+ "name": "vToken",
710
+ "type": "address"
711
+ }
712
+ ],
713
+ "name": "updatePrice",
714
+ "outputs": [],
715
+ "stateMutability": "nonpayable",
716
+ "type": "function"
717
+ },
718
+ {
719
+ "inputs": [],
720
+ "name": "vai",
721
+ "outputs": [
722
+ {
723
+ "internalType": "address",
724
+ "name": "",
725
+ "type": "address"
726
+ }
727
+ ],
728
+ "stateMutability": "view",
729
+ "type": "function"
730
+ },
731
+ {
732
+ "inputs": [
733
+ {
734
+ "internalType": "address",
735
+ "name": "_logic",
736
+ "type": "address"
737
+ },
738
+ {
739
+ "internalType": "address",
740
+ "name": "admin_",
741
+ "type": "address"
742
+ },
743
+ {
744
+ "internalType": "bytes",
745
+ "name": "_data",
746
+ "type": "bytes"
747
+ }
748
+ ],
749
+ "stateMutability": "payable",
750
+ "type": "constructor"
751
+ }
752
+ ],
753
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
754
+ "receipt": {
755
+ "to": "0x0000000000000000000000000000000000008006",
756
+ "from": "0x7f423E50147930e197dAaE9F637198E66746D597",
757
+ "contractAddress": "0xDe564a4C887d5ad315a19a96DC81991c98b12182",
758
+ "transactionIndex": 2,
759
+ "gasUsed": "182944",
760
+ "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
761
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a",
762
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
763
+ "logs": [
764
+ {
765
+ "transactionIndex": 2,
766
+ "blockNumber": 42315257,
767
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
768
+ "address": "0x000000000000000000000000000000000000800A",
769
+ "topics": [
770
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
771
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597",
772
+ "0x0000000000000000000000000000000000000000000000000000000000008001"
773
+ ],
774
+ "data": "0x00000000000000000000000000000000000000000000000000000ccb1d104560",
775
+ "logIndex": 12,
776
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a"
777
+ },
778
+ {
779
+ "transactionIndex": 2,
780
+ "blockNumber": 42315257,
781
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
782
+ "address": "0xDe564a4C887d5ad315a19a96DC81991c98b12182",
783
+ "topics": [
784
+ "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b",
785
+ "0x00000000000000000000000088dcfe18ace5a75659177c9f980c2771d9736e66"
786
+ ],
787
+ "data": "0x",
788
+ "logIndex": 13,
789
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a"
790
+ },
791
+ {
792
+ "transactionIndex": 2,
793
+ "blockNumber": 42315257,
794
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
795
+ "address": "0xDe564a4C887d5ad315a19a96DC81991c98b12182",
796
+ "topics": [
797
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
798
+ "0x0000000000000000000000000000000000000000000000000000000000000000",
799
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597"
800
+ ],
801
+ "data": "0x",
802
+ "logIndex": 14,
803
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a"
804
+ },
805
+ {
806
+ "transactionIndex": 2,
807
+ "blockNumber": 42315257,
808
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
809
+ "address": "0xDe564a4C887d5ad315a19a96DC81991c98b12182",
810
+ "topics": ["0x66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa0"],
811
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000526159a92a82afe5327d37ef446b68fd9a5ca914",
812
+ "logIndex": 15,
813
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a"
814
+ },
815
+ {
816
+ "transactionIndex": 2,
817
+ "blockNumber": 42315257,
818
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
819
+ "address": "0xDe564a4C887d5ad315a19a96DC81991c98b12182",
820
+ "topics": ["0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498"],
821
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000001",
822
+ "logIndex": 16,
823
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a"
824
+ },
825
+ {
826
+ "transactionIndex": 2,
827
+ "blockNumber": 42315257,
828
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
829
+ "address": "0xDe564a4C887d5ad315a19a96DC81991c98b12182",
830
+ "topics": ["0x7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f"],
831
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000008ea1a989b036f7ef21bb95ce4e7961522ca00287",
832
+ "logIndex": 17,
833
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a"
834
+ },
835
+ {
836
+ "transactionIndex": 2,
837
+ "blockNumber": 42315257,
838
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
839
+ "address": "0x0000000000000000000000000000000000008006",
840
+ "topics": [
841
+ "0x290afdae231a3fc0bbae8b1af63698b0a1d79b21ad17df0342dfb952fe74f8e5",
842
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597",
843
+ "0x010001af281cd0d5f17a9675ccab91f77b0aeccf4e157621227489f96d1984e5",
844
+ "0x000000000000000000000000de564a4c887d5ad315a19a96dc81991c98b12182"
845
+ ],
846
+ "data": "0x",
847
+ "logIndex": 18,
848
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a"
849
+ },
850
+ {
851
+ "transactionIndex": 2,
852
+ "blockNumber": 42315257,
853
+ "transactionHash": "0x15b45fa707b5ed0911254fe31ea125a029a7db4b2c76ac2cf08459b455cc2310",
854
+ "address": "0x000000000000000000000000000000000000800A",
855
+ "topics": [
856
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
857
+ "0x0000000000000000000000000000000000000000000000000000000000008001",
858
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597"
859
+ ],
860
+ "data": "0x00000000000000000000000000000000000000000000000000000543b0f08360",
861
+ "logIndex": 19,
862
+ "blockHash": "0xd1ad805125e0aaef40ab05ba479965b56eec3bca8378860d6a115b2ffecd292a"
863
+ }
864
+ ],
865
+ "blockNumber": 42315257,
866
+ "cumulativeGasUsed": "0",
867
+ "status": 1,
868
+ "byzantium": true
869
+ },
870
+ "args": [
871
+ "0x88DcFE18AcE5a75659177c9F980C2771D9736e66",
872
+ "0x8Ea1A989B036f7Ef21bb95CE4E7961522Ca00287",
873
+ "0xc4d66de8000000000000000000000000526159a92a82afe5327d37ef446b68fd9a5ca914"
874
+ ],
875
+ "numDeployments": 1,
876
+ "solcInputHash": "d14112d82bb23a35dc687350b4e61e84",
877
+ "metadata": {
878
+ "llvm_options": [],
879
+ "optimizer_settings": {
880
+ "is_debug_logging_enabled": false,
881
+ "is_fallback_to_size_enabled": false,
882
+ "is_verify_each_enabled": false,
883
+ "level_back_end": "Aggressive",
884
+ "level_middle_end": "Aggressive",
885
+ "level_middle_end_size": "Zero"
886
+ },
887
+ "solc_metadata": "{\"compiler\":{\"version\":\"0.8.25+commit.47b979f3\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_logic\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"admin_\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"admin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"admin_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"implementation_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"}],\"name\":\"upgradeTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This contract implements a proxy that is upgradeable by an admin. To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector clashing], which can potentially be used in an attack, this contract uses the https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two things that go hand in hand: 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if that call matches one of the admin functions exposed by the proxy itself. 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the implementation. If the admin tries to call a function on the implementation it will fail with an error that says \\\"admin cannot fallback to proxy target\\\". These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to call a function from the proxy implementation. Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is upgraded.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"admin()\":{\"details\":\"Returns the current admin. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\"},\"constructor\":{\"details\":\"Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.\"},\"implementation()\":{\"details\":\"Returns the current implementation. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\"},\"upgradeTo(address)\":{\"details\":\"Upgrade the implementation of the proxy. NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.\"},\"upgradeToAndCall(address,bytes)\":{\"details\":\"Upgrade the implementation of the proxy, and then call a function from the new implementation as specified by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the proxied contract. NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"hardhat-deploy/solc_0.8/proxy/OptimizedTransparentUpgradeableProxy.sol\":\"OptimizedTransparentUpgradeableProxy\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"details\":{\"constantOptimizer\":false,\"cse\":false,\"deduplicate\":false,\"inliner\":false,\"jumpdestRemover\":false,\"orderLiterals\":false,\"peephole\":false,\"simpleCounterForLoopUncheckedIncrement\":true,\"yul\":true,\"yulDetails\":{\"optimizerSteps\":\"dhfoDgvulfnTUtnIf[xa[r]EscLMcCTUtTOntnfDIulLculVcul [j]Tpeulxa[rul]xa[r]cLgvifCTUca[r]LSsTFOtfDnca[r]Iulc]jmul[jul] VcTOcul jmul:fDnTOcmu\",\"stackAllocation\":true}},\"runs\":200},\"remappings\":[]},\"sources\":{\"hardhat-deploy/solc_0.8/openzeppelin/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x93b4e21c931252739a1ec13ea31d3d35a5c068be3163ccab83e4d70c40355f03\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bec47f69510a4ace724a15533969ce9479ea9dfef773b1da341c64e8f507cb9b\",\"dweb:/ipfs/QmSu6KnnhhcRAEtdqYncLKw6JEByiptoZR7paqQv2x5CVu\"]},\"hardhat-deploy/solc_0.8/openzeppelin/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0x6309f9f39dc6f4f45a24f296543867aa358e32946cd6b2874627a996d606b3a0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4f5abfc32db1d44fd3d38d902879eaeaad827781bb9f954d3ccb8639c55db3c0\",\"dweb:/ipfs/QmVSkxFgWphaUx6w9XdvgwJJuxABdpuVQEbABbRmzd3XFc\"]},\"hardhat-deploy/solc_0.8/openzeppelin/proxy/ERC1967/ERC1967Upgrade.sol\":{\"keccak256\":\"0x17668652127feebed0ce8d9431ef95ccc8c4292f03e3b8cf06c6ca16af396633\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9cbd3212cc9e1dbc383b66ef6b750d58c07c4d73d404c6ec55e4bfed25a8fb6f\",\"dweb:/ipfs/QmPN8XajdLkydiQv2146q1M7nGqYk67Z5SNSjbzFU9MiM5\"]},\"hardhat-deploy/solc_0.8/openzeppelin/proxy/Proxy.sol\":{\"keccak256\":\"0xd5d1fd16e9faff7fcb3a52e02a8d49156f42a38a03f07b5f1810c21c2149a8ab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60941294a981f6e3ee77c19e503b64c4114b4e7f3261cf489d6898fdd4916522\",\"dweb:/ipfs/QmQVmckpCRrtkCwyPG7ksVo59yjZdtpNerJDzw3hQVB62A\"]},\"hardhat-deploy/solc_0.8/openzeppelin/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xd50a3421ac379ccb1be435fa646d66a65c986b4924f0849839f08692f39dde61\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ada1e030c0231db8d143b44ce92b4d1158eedb087880cad6d8cc7bd7ebe7b354\",\"dweb:/ipfs/QmWZ2NHZweRpz1U9GF6R1h65ri76dnX7fNxLBeM2t5N5Ce\"]},\"hardhat-deploy/solc_0.8/openzeppelin/utils/Address.sol\":{\"keccak256\":\"0x3777e696b62134e6177440dbe6e6601c0c156a443f57167194b67e75527439de\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0bc227c71372eb216b7965a91a09c843e9e9670369af0410d924cf4208a8dabe\",\"dweb:/ipfs/QmTR55ug3diUCsVedV8C6ShstCcbqSNPVEvmCpqc91pEDf\"]},\"hardhat-deploy/solc_0.8/openzeppelin/utils/StorageSlot.sol\":{\"keccak256\":\"0xfe1b7a9aa2a530a9e705b220e26cd584e2fbdc9602a3a1066032b12816b46aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://dbaba7fe0fe556cc5ed291e03d271fd27d395250141ecfb57a4b30d528958ff9\",\"dweb:/ipfs/QmWT653X2DyZo8nqEcmFe3yTkrCJv3ptbZLhbgLU3y6abe\"]},\"hardhat-deploy/solc_0.8/proxy/OptimizedTransparentUpgradeableProxy.sol\":{\"keccak256\":\"0xa30117644e27fa5b49e162aae2f62b36c1aca02f801b8c594d46e2024963a534\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c270574add213952363bf451bd512acab5fc48c5a06fc05ad75e99eb4b044b99\",\"dweb:/ipfs/QmNQyg2ZvM59Q6FFg1ukJah2xpg8kvDZnTLRVLtMGKuHL1\"]}},\"version\":1}",
888
+ "solc_version": "0.8.25",
889
+ "solc_zkvm_edition": "1.0.1",
890
+ "zk_version": "1.5.1"
891
+ },
892
+ "bytecode": "0x0004000000000002000600000000000200000000030100190000006004300270000001870340019700030000003103550002000000010355000001870040019d0000000100200190000000bc0000c13d0000008005000039000000400050043f000000040030008c000000fa0000413d000000000201043b000000e0022002700000019c0020009c0000013d0000213d0000019f0020009c000001880000613d000001a00020009c0000015e0000c13d000000440030008c000002680000413d0000000402100370000000000602043b000001890060009c000002680000213d0000002402100370000000000202043b0000018a0020009c000002680000213d0000002304200039000000000034004b000002680000813d0000000407200039000000000171034f000000000401043b0000018a0040009c000002680000213d00000000014200190000002401100039000000000031004b000002680000213d000400000007001d000600000004001d000500000006001d000300000005001d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b0000034b0000c13d00000006090000290000001f01900039000001ae011001970000003f01100039000001ae01100197000000400300043d0000000001130019000000000031004b000000000200001900000001020040390000018a0010009c000000f40000213d0000000100200190000000f40000c13d000000400010043f0000001f0190018f000200000003001d000000000893043600000004020000290000002002200039000000020220036700000005039002720000000503300210000000620000613d0000000004380019000000000502034f0000000006080019000000005705043c0000000006760436000000000046004b0000005e0000c13d000000000001004b000000700000613d000000000232034f00000000033800190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f0000000000130435000400000008001d000000000198001900000000000104350000018c010000410000000000100439000000050100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000003370000613d0000018e01000041000000000201041a0000018f022001970000000505000029000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000100200190000002680000613d000000400100043d000600000001001d000001920010009c000000f40000213d00000006030000290000006001300039000000400010043f000000400130003900000193020000410000000000210435000000270100003900000000021304360000019401000041000100000002001d00000000001204350000018c010000410000000000100439000000050100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004170000613d0000000201000029000000000201043300000000010004140000000503000029000000040030008c000005030000c13d00000001020000390000000103000031000005160000013d0000001f023000390000018802200197000000a002200039000000400020043f0000001f0230018f00000005043002720000000504400210000000cb0000613d000000a005000039000000a006400039000000000701034f000000007807043c0000000005850436000000000065004b000000c70000c13d000000000002004b000000d90000613d000000000141034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f0000000000140435000000600030008c000002680000413d000000a00700043d000001890070009c000002680000213d000000c00600043d000001890060009c000002680000213d000000e00200043d0000018a0020009c000002680000213d0000001f01200039000000000031004b00000000040000190000018b040080410000018b01100197000000000001004b00000000050000190000018b050040410000018b0010009c000000000504c019000000000005004b000002680000c13d000000a00120003900000000010104330000018a0010009c000002540000a13d000001a80100004100000000001004350000004101000039000000040010043f000001a9010000410000061700010430000000000003004b0000015e0000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a000000050410027200000005044002100000011d0000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001190000c13d0000018902200197000000000005004b0000012b0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c0000026a0000c13d000000030200036700000001030000310000001f0430018f000000050130027200000005011002100000013a0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000001360000c13d000000000004004b000002900000613d000002210000013d0000019d0020009c000001d40000613d0000019e0020009c0000015e0000c13d0000000001000416000000000001004b000002680000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000002960000c13d000000400100043d0000000000210435000001870010009c00000187010080410000004001100210000001a1011001c7000006160001042e0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001f40000c13d000000400100043d0000008402100039000001aa0300004100000000003204350000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000004203000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001ad011001c70000061700010430000000240030008c000002680000413d0000000002000416000000000002004b000002680000c13d0000000401100370000000000101043b000001890010009c000002680000213d000600000001001d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b0000034b0000c13d000000400200043d000001a20020009c000000f40000213d0000002001200039000400000001001d000000400010043f000500000002001d00000000000204350000018c010000410000000000100439000000060100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000003370000613d0000018e01000041000000000201041a0000018f022001970000000605000029000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000100200190000002680000613d00000005010000290000000001010433000000000001004b000003f90000c13d0000000001000019000006160001042e0000000001000416000000000001004b000002680000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000002d70000c13d0000018e01000041000000000101041a0000018901100197000000400200043d0000000000120435000001870020009c00000187020080410000004001200210000001a1011001c7000006160001042e000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002020000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001fe0000c13d0000018902200197000000000005004b000002100000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c0000022d0000c13d000000030200036700000001030000310000001f0430018f000000050130027200000005011002100000021f0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b0000021b0000c13d000000000004004b000002900000613d0000000304400210000000000501043300000000054501cf000000000545022f000000000212034f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000002900000013d000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000002440000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002400000c13d000000000005004b000002510000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d000002940000013d0000001f04100039000001ae044001970000003f04400039000001ae04400197000000400800043d0000000004480019000000000084004b000000000500001900000001050040390000018a0040009c000000f40000213d0000000100500190000000f40000c13d000000a003300039000000400040043f0000000009180436000000c0022000390000000004210019000000000034004b000003180000a13d00000000010000190000061700010430000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000002810000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000027d0000c13d000000000005004b0000028e0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002940000613d000001870030009c00000187030080410000006001300210000006160001042e000000600130021000000617000104300000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002b70000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000002b30000c13d0000018902200197000000000005004b000002c50000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c000003840000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000002d40000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000002d00000c13d000000000004004b000002900000613d000002210000013d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002f80000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000002f40000c13d0000018902200197000000000005004b000003060000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c000003ac0000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000003150000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000003110000c13d000000000004004b000002210000c13d000002900000013d000500000008001d000400000006001d000000000001004b000003240000613d000000000300001900000000049300190000000005230019000000000505043300000000005404350000002003300039000000000013004b0000031d0000413d000300000009001d000000000119001900000000000104350000018c010000410000000000100439000600000007001d00000004007004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b0000034c0000c13d000000400100043d0000006402100039000001a60300004100000000003204350000004402100039000001a703000041000000000032043500000024021000390000002d03000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001a5011001c70000061700010430061505740000040f000000060100002900000189051001970000018e01000041000000000201041a0000018f02200197000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000603000029000000010020019000000004020000290000000501000029000002680000613d0000000001010433000000000001004b000003d30000c13d000000800020043f0000019601000041000000000021041b0000018901200197000000400200043d000000200320003900000000001304350000000000020435000001870020009c000001870200804100000040012002100000000002000414000001870020009c0000018702008041000000c002200210000000000112019f00000197011001c70000800d0200003900000001030000390000019804000041061506060000040f0000000100200190000002680000613d000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000019901000041000006160001042e000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d0000018703300197000000050430027200000005044002100000039b0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003970000c13d000000000005004b000003a80000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d00000060013002100000061700010430000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000003c30000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003bf0000c13d000000000005004b000003d00000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d000002940000013d000000400400043d000001920040009c000000f40000213d0000006001400039000000400010043f0000004001400039000001930200004100000000002104350000002701000039000200000004001d00000000021404360000019401000041000100000002001d00000000001204350000018c01000041000000000010043900000004003004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004170000613d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004220000c13d00000001020000390000000104000031000004350000013d000000400300043d000001920030009c000000f40000213d0000006001300039000000400010043f0000004001300039000001930200004100000000002104350000002701000039000200000003001d00000000021304360000019401000041000300000002001d00000000001204350000018c010000410000000000100439000000060100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004870000c13d000000400100043d0000006402100039000001a30300004100000000003204350000004402100039000001a403000041000000000032043500000024021000390000002603000039000003400000013d000000000001042f0000000303000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000602000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018704100197000000000004004b0000045b0000c13d00000060010000390000008003000039000000000002004b0000000402000029000003640000c13d0000000001010433000000000001004b000004cf0000c13d000000400400043d000600000004001d0000019501000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000500000003001d0000002401400039000000000031043500000044024000390000000101000029061505670000040f00000005010000290000001f01100039000001ae011001970000004401100039000001870010009c00000187010080410000000602000029000001870020009c000001870200804100000060011002100000004002200210000000000121019f00000617000104300000018a0040009c000000f40000213d0000001f01400039000001ae011001970000003f01100039000001ae03100197000000400100043d0000000003310019000000000013004b000000000500001900000001050040390000018a0030009c000000f40000213d0000000100500190000000f40000c13d000000400030043f0000001f0540018f0000000003410436000000030600036700000005044002720000000504400210000004780000613d0000000007430019000000000806034f0000000009030019000000008a08043c0000000009a90436000000000079004b000004740000c13d000000000005004b000004390000613d000000000646034f00000000044300190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000004390000013d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004900000c13d00000001020000390000000104000031000004a30000013d0000000403000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000602000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018704100197000000000004004b000004d70000c13d00000060010000390000008003000039000000000002004b000001d20000c13d0000000001010433000000000001004b000004cf0000c13d000000400100043d0000019502000041000000000021043500000004021000390000002003000039000000000032043500000002020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000307000029000004c20000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000004bb0000413d0000001f04200039000001ae04400197000000000232001900000000000204350000004402400039000001870020009c00000187020080410000006002200210000001870010009c00000187010080410000004001100210000000000112019f0000061700010430000001870030009c00000187030080410000004002300210000001870010009c00000187010080410000006001100210000000000121019f00000617000104300000018a0040009c000000f40000213d0000001f01400039000001ae011001970000003f01100039000001ae03100197000000400100043d0000000003310019000000000013004b000000000500001900000001050040390000018a0030009c000000f40000213d0000000100500190000000f40000c13d000000400030043f0000001f0540018f0000000003410436000000030600036700000005044002720000000504400210000004f40000613d0000000007430019000000000806034f0000000009030019000000008a08043c0000000009a90436000000000079004b000004f00000c13d000000000005004b000004a70000613d000000000646034f00000000044300190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000004a70000013d0000000403000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000502000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018703100197000000000003004b000005350000c13d0000006001000039000000000002004b000001d20000c13d0000000001010433000000000001004b000005620000c13d000000400100043d0000019502000041000000000021043500000004021000390000002003000039000000000032043500000006020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000107000029000004c20000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b0000052d0000413d000004c20000013d0000018a0030009c000000f40000213d0000001f01300039000001ae011001970000003f01100039000001ae04100197000000400100043d0000000004410019000000000014004b000000000500001900000001050040390000018a0040009c000000f40000213d0000000100500190000000f40000c13d000000400040043f0000001f0430018f0000000005310436000300000005001d000000030500036700000005033002720000000503300210000005530000613d00000003080000290000000006380019000000000705034f000000007907043c0000000008980436000000000068004b0000054f0000c13d000000000004004b000005190000613d000000000535034f00000003033000290000000304400210000000000603043300000000064601cf000000000646022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000464019f0000000000430435000005190000013d0000000302000029000001870020009c00000187020080410000004002200210000004d20000013d000000000003004b000005710000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b0000056a0000413d00000000012300190000000000010435000000000001042d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f00000001002001900000059e0000613d000000000101043b00000189011001970000000002000411000000000012004b0000059f0000c13d000000400100043d0000008402100039000001aa0300004100000000003204350000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000004203000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001ad011001c70000061700010430000000000001042f000000020300036700000000010000310000001f0410018f0000018e02000041000000000202041a0000000505100272000005ad0000613d0000000506500210000000000703034f0000000008000019000000007907043c0000000008980436000000000068004b000005a90000c13d0000018902200197000000000004004b000005bc0000613d00000003044002100000000505500210000000000605043300000000064601cf000000000646022f000000000353034f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003504350000000003000414000000040020008c000005d90000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000005cb0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000005c70000c13d000000000004004b000005ff0000613d0000000304400210000000000501043300000000054501cf000000000545022f000000000212034f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000005ff0000013d000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000005f00000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000005ec0000c13d000000000005004b000005fd0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000006030000613d000001870030009c00000187030080410000006001300210000006160001042e00000060013002100000061700010430000000000001042f00000609002104210000000102000039000000000001042d0000000002000019000000000001042d0000060e002104230000000102000039000000000001042d0000000002000019000000000001042d00000613002104250000000102000039000000000001042d0000000002000019000000000001042d0000061500000432000006160001042e0000061700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c08c379a000000000000000000000000000000000000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610302000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f0000000200000000000000000000000000000080000001000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000f851a440000000000000000000000000000000000000000000000000000000003659cfe6000000000000000000000000000000000000000000000000000000004f1ef2860000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f00000000000000000000000000000000000000840000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006574000000000000000000000000000000000000000000000000000000000000696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172675472616e73706172656e745570677261646561626c6550726f78793a2061646d00000000000000000000000000000000000000a4000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0",
893
+ "deployedBytecode": "0x0004000000000002000600000000000200000000030100190000006004300270000001870340019700030000003103550002000000010355000001870040019d0000000100200190000000bc0000c13d0000008005000039000000400050043f000000040030008c000000fa0000413d000000000201043b000000e0022002700000019c0020009c0000013d0000213d0000019f0020009c000001880000613d000001a00020009c0000015e0000c13d000000440030008c000002680000413d0000000402100370000000000602043b000001890060009c000002680000213d0000002402100370000000000202043b0000018a0020009c000002680000213d0000002304200039000000000034004b000002680000813d0000000407200039000000000171034f000000000401043b0000018a0040009c000002680000213d00000000014200190000002401100039000000000031004b000002680000213d000400000007001d000600000004001d000500000006001d000300000005001d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b0000034b0000c13d00000006090000290000001f01900039000001ae011001970000003f01100039000001ae01100197000000400300043d0000000001130019000000000031004b000000000200001900000001020040390000018a0010009c000000f40000213d0000000100200190000000f40000c13d000000400010043f0000001f0190018f000200000003001d000000000893043600000004020000290000002002200039000000020220036700000005039002720000000503300210000000620000613d0000000004380019000000000502034f0000000006080019000000005705043c0000000006760436000000000046004b0000005e0000c13d000000000001004b000000700000613d000000000232034f00000000033800190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f0000000000130435000400000008001d000000000198001900000000000104350000018c010000410000000000100439000000050100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000003370000613d0000018e01000041000000000201041a0000018f022001970000000505000029000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000100200190000002680000613d000000400100043d000600000001001d000001920010009c000000f40000213d00000006030000290000006001300039000000400010043f000000400130003900000193020000410000000000210435000000270100003900000000021304360000019401000041000100000002001d00000000001204350000018c010000410000000000100439000000050100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004170000613d0000000201000029000000000201043300000000010004140000000503000029000000040030008c000005030000c13d00000001020000390000000103000031000005160000013d0000001f023000390000018802200197000000a002200039000000400020043f0000001f0230018f00000005043002720000000504400210000000cb0000613d000000a005000039000000a006400039000000000701034f000000007807043c0000000005850436000000000065004b000000c70000c13d000000000002004b000000d90000613d000000000141034f0000000302200210000000a004400039000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f0000000000140435000000600030008c000002680000413d000000a00700043d000001890070009c000002680000213d000000c00600043d000001890060009c000002680000213d000000e00200043d0000018a0020009c000002680000213d0000001f01200039000000000031004b00000000040000190000018b040080410000018b01100197000000000001004b00000000050000190000018b050040410000018b0010009c000000000504c019000000000005004b000002680000c13d000000a00120003900000000010104330000018a0010009c000002540000a13d000001a80100004100000000001004350000004101000039000000040010043f000001a9010000410000061700010430000000000003004b0000015e0000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a000000050410027200000005044002100000011d0000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001190000c13d0000018902200197000000000005004b0000012b0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c0000026a0000c13d000000030200036700000001030000310000001f0430018f000000050130027200000005011002100000013a0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000001360000c13d000000000004004b000002900000613d000002210000013d0000019d0020009c000001d40000613d0000019e0020009c0000015e0000c13d0000000001000416000000000001004b000002680000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000002960000c13d000000400100043d0000000000210435000001870010009c00000187010080410000004001100210000001a1011001c7000006160001042e0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001f40000c13d000000400100043d0000008402100039000001aa0300004100000000003204350000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000004203000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001ad011001c70000061700010430000000240030008c000002680000413d0000000002000416000000000002004b000002680000c13d0000000401100370000000000101043b000001890010009c000002680000213d000600000001001d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b0000034b0000c13d000000400200043d000001a20020009c000000f40000213d0000002001200039000400000001001d000000400010043f000500000002001d00000000000204350000018c010000410000000000100439000000060100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000003370000613d0000018e01000041000000000201041a0000018f022001970000000605000029000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000100200190000002680000613d00000005010000290000000001010433000000000001004b000003f90000c13d0000000001000019000006160001042e0000000001000416000000000001004b000002680000c13d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000002d70000c13d0000018e01000041000000000101041a0000018901100197000000400200043d0000000000120435000001870020009c00000187020080410000004001200210000001a1011001c7000006160001042e000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002020000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001fe0000c13d0000018902200197000000000005004b000002100000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c0000022d0000c13d000000030200036700000001030000310000001f0430018f000000050130027200000005011002100000021f0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b0000021b0000c13d000000000004004b000002900000613d0000000304400210000000000501043300000000054501cf000000000545022f000000000212034f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000002900000013d000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000002440000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002400000c13d000000000005004b000002510000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d000002940000013d0000001f04100039000001ae044001970000003f04400039000001ae04400197000000400800043d0000000004480019000000000084004b000000000500001900000001050040390000018a0040009c000000f40000213d0000000100500190000000f40000c13d000000a003300039000000400040043f0000000009180436000000c0022000390000000004210019000000000034004b000003180000a13d00000000010000190000061700010430000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000002810000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000027d0000c13d000000000005004b0000028e0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002940000613d000001870030009c00000187030080410000006001300210000006160001042e000000600130021000000617000104300000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002b70000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000002b30000c13d0000018902200197000000000005004b000002c50000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c000003840000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000002d40000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000002d00000c13d000000000004004b000002900000613d000002210000013d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f0000000100200190000004210000613d000000000101043b00000189011001970000000002000411000000000012004b000001710000613d000000020300036700000000010000310000001f0510018f0000018e02000041000000000202041a00000005041002720000000504400210000002f80000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000002f40000c13d0000018902200197000000000005004b000003060000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000343034f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000003000414000000040020008c000003ac0000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000003150000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000003110000c13d000000000004004b000002210000c13d000002900000013d000500000008001d000400000006001d000000000001004b000003240000613d000000000300001900000000049300190000000005230019000000000505043300000000005404350000002003300039000000000013004b0000031d0000413d000300000009001d000000000119001900000000000104350000018c010000410000000000100439000600000007001d00000004007004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b0000034c0000c13d000000400100043d0000006402100039000001a60300004100000000003204350000004402100039000001a703000041000000000032043500000024021000390000002d03000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001a5011001c70000061700010430061505740000040f000000060100002900000189051001970000018e01000041000000000201041a0000018f02200197000000000252019f000000000021041b0000000001000414000001870010009c0000018701008041000000c00110021000000190011001c70000800d0200003900000002030000390000019104000041061506060000040f0000000603000029000000010020019000000004020000290000000501000029000002680000613d0000000001010433000000000001004b000003d30000c13d000000800020043f0000019601000041000000000021041b0000018901200197000000400200043d000000200320003900000000001304350000000000020435000001870020009c000001870200804100000040012002100000000002000414000001870020009c0000018702008041000000c002200210000000000112019f00000197011001c70000800d0200003900000001030000390000019804000041061506060000040f0000000100200190000002680000613d000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000019901000041000006160001042e000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d0000018703300197000000050430027200000005044002100000039b0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003970000c13d000000000005004b000003a80000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d00000060013002100000061700010430000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000003c30000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003bf0000c13d000000000005004b000003d00000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000002900000c13d000002940000013d000000400400043d000001920040009c000000f40000213d0000006001400039000000400010043f0000004001400039000001930200004100000000002104350000002701000039000200000004001d00000000021404360000019401000041000100000002001d00000000001204350000018c01000041000000000010043900000004003004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004170000613d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004220000c13d00000001020000390000000104000031000004350000013d000000400300043d000001920030009c000000f40000213d0000006001300039000000400010043f0000004001300039000001930200004100000000002104350000002701000039000200000003001d00000000021304360000019401000041000300000002001d00000000001204350000018c010000410000000000100439000000060100002900000004001004430000000001000414000001870010009c0000018701008041000000c0011002100000018d011001c700008002020000390615060b0000040f0000000100200190000004210000613d000000000101043b000000000001004b000004870000c13d000000400100043d0000006402100039000001a30300004100000000003204350000004402100039000001a403000041000000000032043500000024021000390000002603000039000003400000013d000000000001042f0000000303000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000602000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018704100197000000000004004b0000045b0000c13d00000060010000390000008003000039000000000002004b0000000402000029000003640000c13d0000000001010433000000000001004b000004cf0000c13d000000400400043d000600000004001d0000019501000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000500000003001d0000002401400039000000000031043500000044024000390000000101000029061505670000040f00000005010000290000001f01100039000001ae011001970000004401100039000001870010009c00000187010080410000000602000029000001870020009c000001870200804100000060011002100000004002200210000000000121019f00000617000104300000018a0040009c000000f40000213d0000001f01400039000001ae011001970000003f01100039000001ae03100197000000400100043d0000000003310019000000000013004b000000000500001900000001050040390000018a0030009c000000f40000213d0000000100500190000000f40000c13d000000400030043f0000001f0540018f0000000003410436000000030600036700000005044002720000000504400210000004780000613d0000000007430019000000000806034f0000000009030019000000008a08043c0000000009a90436000000000079004b000004740000c13d000000000005004b000004390000613d000000000646034f00000000044300190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000004390000013d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004900000c13d00000001020000390000000104000031000004a30000013d0000000403000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000602000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018704100197000000000004004b000004d70000c13d00000060010000390000008003000039000000000002004b000001d20000c13d0000000001010433000000000001004b000004cf0000c13d000000400100043d0000019502000041000000000021043500000004021000390000002003000039000000000032043500000002020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000307000029000004c20000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000004bb0000413d0000001f04200039000001ae04400197000000000232001900000000000204350000004402400039000001870020009c00000187020080410000006002200210000001870010009c00000187010080410000004001100210000000000112019f0000061700010430000001870030009c00000187030080410000004002300210000001870010009c00000187010080410000006001100210000000000121019f00000617000104300000018a0040009c000000f40000213d0000001f01400039000001ae011001970000003f01100039000001ae03100197000000400100043d0000000003310019000000000013004b000000000500001900000001050040390000018a0030009c000000f40000213d0000000100500190000000f40000c13d000000400030043f0000001f0540018f0000000003410436000000030600036700000005044002720000000504400210000004f40000613d0000000007430019000000000806034f0000000009030019000000008a08043c0000000009a90436000000000079004b000004f00000c13d000000000005004b000004a70000613d000000000646034f00000000044300190000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000004a70000013d0000000403000029000001870030009c00000187030080410000004003300210000001870020009c00000187020080410000006002200210000000000232019f000001870010009c0000018701008041000000c001100210000000000112019f0000000502000029061506100000040f000000010220018f00030000000103550000006001100270000101870010019d0000018703100197000000000003004b000005350000c13d0000006001000039000000000002004b000001d20000c13d0000000001010433000000000001004b000005620000c13d000000400100043d0000019502000041000000000021043500000004021000390000002003000039000000000032043500000006020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000107000029000004c20000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b0000052d0000413d000004c20000013d0000018a0030009c000000f40000213d0000001f01300039000001ae011001970000003f01100039000001ae04100197000000400100043d0000000004410019000000000014004b000000000500001900000001050040390000018a0040009c000000f40000213d0000000100500190000000f40000c13d000000400040043f0000001f0430018f0000000005310436000300000005001d000000030500036700000005033002720000000503300210000005530000613d00000003080000290000000006380019000000000705034f000000007907043c0000000008980436000000000068004b0000054f0000c13d000000000004004b000005190000613d000000000535034f00000003033000290000000304400210000000000603043300000000064601cf000000000646022f000000000505043b0000010004400089000000000545022f00000000044501cf000000000464019f0000000000430435000005190000013d0000000302000029000001870020009c00000187020080410000004002200210000004d20000013d000000000003004b000005710000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b0000056a0000413d00000000012300190000000000010435000000000001042d0000019a0100004100000000001004390000000001000412000000040010044300000024000004430000000001000414000001870010009c0000018701008041000000c0011002100000019b011001c700008005020000390615060b0000040f00000001002001900000059e0000613d000000000101043b00000189011001970000000002000411000000000012004b0000059f0000c13d000000400100043d0000008402100039000001aa0300004100000000003204350000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000004203000039000000000032043500000195020000410000000000210435000000040210003900000020030000390000000000320435000001870010009c00000187010080410000004001100210000001ad011001c70000061700010430000000000001042f000000020300036700000000010000310000001f0410018f0000018e02000041000000000202041a0000000505100272000005ad0000613d0000000506500210000000000703034f0000000008000019000000007907043c0000000008980436000000000068004b000005a90000c13d0000018902200197000000000004004b000005bc0000613d00000003044002100000000505500210000000000605043300000000064601cf000000000646022f000000000353034f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003504350000000003000414000000040020008c000005d90000c13d000000030200036700000001030000310000001f0430018f00000005013002720000000501100210000005cb0000613d000000000502034f0000000006000019000000005705043c0000000006760436000000000016004b000005c70000c13d000000000004004b000005ff0000613d0000000304400210000000000501043300000000054501cf000000000545022f000000000212034f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000005ff0000013d000001870010009c00000187010080410000006001100210000001870030009c0000018703008041000000c003300210000000000113019f061506100000040f0003000000010355000000000301001900000060033002700000001f0530018f000101870030019d000001870330019700000005043002720000000504400210000005f00000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000005ec0000c13d000000000005004b000005fd0000613d0000000305500210000000000604043300000000065601cf000000000656022f000000000141034f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000006030000613d000001870030009c00000187030080410000006001300210000006160001042e00000060013002100000061700010430000000000001042f00000609002104210000000102000039000000000001042d0000000002000019000000000001042d0000060e002104230000000102000039000000000001042d0000000002000019000000000001042d00000613002104250000000102000039000000000001042d0000000002000019000000000001042d0000061500000432000006160001042e0000061700010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c08c379a000000000000000000000000000000000000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610302000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f0000000200000000000000000000000000000080000001000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000f851a440000000000000000000000000000000000000000000000000000000003659cfe6000000000000000000000000000000000000000000000000000000004f1ef2860000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f00000000000000000000000000000000000000840000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006574000000000000000000000000000000000000000000000000000000000000696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172675472616e73706172656e745570677261646561626c6550726f78793a2061646d00000000000000000000000000000000000000a4000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0",
894
+ "execute": {
895
+ "methodName": "initialize",
896
+ "args": ["0x526159A92A82afE5327d37Ef446b68FD9a5cA914"]
897
+ },
898
+ "implementation": "0x88DcFE18AcE5a75659177c9F980C2771D9736e66",
899
+ "devdoc": {
900
+ "details": "This contract implements a proxy that is upgradeable by an admin. To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector clashing], which can potentially be used in an attack, this contract uses the https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two things that go hand in hand: 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if that call matches one of the admin functions exposed by the proxy itself. 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the implementation. If the admin tries to call a function on the implementation it will fail with an error that says \"admin cannot fallback to proxy target\". These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to call a function from the proxy implementation. Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.",
901
+ "events": {
902
+ "AdminChanged(address,address)": {
903
+ "details": "Emitted when the admin account has changed."
904
+ },
905
+ "BeaconUpgraded(address)": {
906
+ "details": "Emitted when the beacon is upgraded."
907
+ },
908
+ "Upgraded(address)": {
909
+ "details": "Emitted when the implementation is upgraded."
910
+ }
911
+ },
912
+ "kind": "dev",
913
+ "methods": {
914
+ "admin()": {
915
+ "details": "Returns the current admin. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`"
916
+ },
917
+ "constructor": {
918
+ "details": "Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}."
919
+ },
920
+ "implementation()": {
921
+ "details": "Returns the current implementation. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`"
922
+ },
923
+ "upgradeTo(address)": {
924
+ "details": "Upgrade the implementation of the proxy. NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}."
925
+ },
926
+ "upgradeToAndCall(address,bytes)": {
927
+ "details": "Upgrade the implementation of the proxy, and then call a function from the new implementation as specified by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the proxied contract. NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}."
928
+ }
929
+ },
930
+ "version": 1
931
+ },
932
+ "userdoc": {
933
+ "kind": "user",
934
+ "methods": {},
935
+ "version": 1
936
+ },
937
+ "storageLayout": {
938
+ "storage": [],
939
+ "types": null
940
+ }
941
+ }