@venusprotocol/governance-contracts 2.5.0-dev.3 → 2.5.0-dev.4

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 (31) hide show
  1. package/deployments/opmainnet/ACMCommandsAggregator.json +366 -0
  2. package/deployments/opmainnet/CriticalTimelock.json +691 -0
  3. package/deployments/opmainnet/DefaultProxyAdmin.json +200 -0
  4. package/deployments/opmainnet/FastTrackTimelock.json +691 -0
  5. package/deployments/opmainnet/NormalTimelock.json +691 -0
  6. package/deployments/opmainnet/OmnichainExecutorOwner.json +555 -0
  7. package/deployments/opmainnet/OmnichainExecutorOwner_Implementation.json +600 -0
  8. package/deployments/opmainnet/OmnichainExecutorOwner_Proxy.json +262 -0
  9. package/deployments/opmainnet/OmnichainGovernanceExecutor.json +1840 -0
  10. package/deployments/opmainnet/solcInputs/1529d9b60b0ef27513a7cc552e55ce94.json +40 -0
  11. package/deployments/opmainnet/solcInputs/3d889dc49c1cae3347e0aa149d88041a.json +40 -0
  12. package/deployments/opmainnet/solcInputs/7c1c52f606ac52c4a02b26a42126e15c.json +229 -0
  13. package/deployments/opmainnet/solcInputs/c8adce9942919fd992f7532e82a0e082.json +43 -0
  14. package/deployments/opmainnet.json +3859 -0
  15. package/deployments/opmainnet_addresses.json +10 -1
  16. package/deployments/zksyncmainnet/ACMCommandsAggregator.json +465 -0
  17. package/deployments/zksyncmainnet/CriticalTimelock.json +752 -0
  18. package/deployments/zksyncmainnet/DefaultProxyAdmin.json +284 -0
  19. package/deployments/zksyncmainnet/FastTrackTimelock.json +790 -0
  20. package/deployments/zksyncmainnet/NormalTimelock.json +790 -0
  21. package/deployments/zksyncmainnet/OmnichainExecutorOwner.json +650 -0
  22. package/deployments/zksyncmainnet/OmnichainExecutorOwner_Implementation.json +698 -0
  23. package/deployments/zksyncmainnet/OmnichainExecutorOwner_Proxy.json +360 -0
  24. package/deployments/zksyncmainnet/OmnichainGovernanceExecutor.json +1938 -0
  25. package/deployments/zksyncmainnet/solcInputs/0be793521835d17f112344b451092640.json +43 -0
  26. package/deployments/zksyncmainnet/solcInputs/9f6319a1ea3d6a4958a4dd01d54ec8c3.json +34 -0
  27. package/deployments/zksyncmainnet/solcInputs/f73c651cde515a8a15ded365c47294a4.json +34 -0
  28. package/deployments/zksyncmainnet/solcInputs/fd2a9ac8f832f234262849a7c933f900.json +217 -0
  29. package/deployments/zksyncmainnet.json +3859 -0
  30. package/deployments/zksyncmainnet_addresses.json +10 -1
  31. package/package.json +1 -1
@@ -0,0 +1,650 @@
1
+ {
2
+ "address": "0xdfaed3E5d9707629Ed5c225b4fB980c064286771",
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
+ "inputs": [],
137
+ "name": "ZeroAddressNotAllowed",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "anonymous": false,
142
+ "inputs": [
143
+ {
144
+ "indexed": true,
145
+ "internalType": "string",
146
+ "name": "signature",
147
+ "type": "string"
148
+ },
149
+ {
150
+ "indexed": false,
151
+ "internalType": "bool",
152
+ "name": "active",
153
+ "type": "bool"
154
+ }
155
+ ],
156
+ "name": "FunctionRegistryChanged",
157
+ "type": "event"
158
+ },
159
+ {
160
+ "anonymous": false,
161
+ "inputs": [
162
+ {
163
+ "indexed": false,
164
+ "internalType": "uint8",
165
+ "name": "version",
166
+ "type": "uint8"
167
+ }
168
+ ],
169
+ "name": "Initialized",
170
+ "type": "event"
171
+ },
172
+ {
173
+ "anonymous": false,
174
+ "inputs": [
175
+ {
176
+ "indexed": false,
177
+ "internalType": "address",
178
+ "name": "oldAccessControlManager",
179
+ "type": "address"
180
+ },
181
+ {
182
+ "indexed": false,
183
+ "internalType": "address",
184
+ "name": "newAccessControlManager",
185
+ "type": "address"
186
+ }
187
+ ],
188
+ "name": "NewAccessControlManager",
189
+ "type": "event"
190
+ },
191
+ {
192
+ "anonymous": false,
193
+ "inputs": [
194
+ {
195
+ "indexed": true,
196
+ "internalType": "address",
197
+ "name": "previousOwner",
198
+ "type": "address"
199
+ },
200
+ {
201
+ "indexed": true,
202
+ "internalType": "address",
203
+ "name": "newOwner",
204
+ "type": "address"
205
+ }
206
+ ],
207
+ "name": "OwnershipTransferStarted",
208
+ "type": "event"
209
+ },
210
+ {
211
+ "anonymous": false,
212
+ "inputs": [
213
+ {
214
+ "indexed": true,
215
+ "internalType": "address",
216
+ "name": "previousOwner",
217
+ "type": "address"
218
+ },
219
+ {
220
+ "indexed": true,
221
+ "internalType": "address",
222
+ "name": "newOwner",
223
+ "type": "address"
224
+ }
225
+ ],
226
+ "name": "OwnershipTransferred",
227
+ "type": "event"
228
+ },
229
+ {
230
+ "inputs": [],
231
+ "name": "OMNICHAIN_GOVERNANCE_EXECUTOR",
232
+ "outputs": [
233
+ {
234
+ "internalType": "contract IOmnichainGovernanceExecutor",
235
+ "name": "",
236
+ "type": "address"
237
+ }
238
+ ],
239
+ "stateMutability": "view",
240
+ "type": "function"
241
+ },
242
+ {
243
+ "inputs": [],
244
+ "name": "acceptOwnership",
245
+ "outputs": [],
246
+ "stateMutability": "nonpayable",
247
+ "type": "function"
248
+ },
249
+ {
250
+ "inputs": [],
251
+ "name": "accessControlManager",
252
+ "outputs": [
253
+ {
254
+ "internalType": "contract IAccessControlManagerV8",
255
+ "name": "",
256
+ "type": "address"
257
+ }
258
+ ],
259
+ "stateMutability": "view",
260
+ "type": "function"
261
+ },
262
+ {
263
+ "inputs": [
264
+ {
265
+ "internalType": "bytes4",
266
+ "name": "",
267
+ "type": "bytes4"
268
+ }
269
+ ],
270
+ "name": "functionRegistry",
271
+ "outputs": [
272
+ {
273
+ "internalType": "string",
274
+ "name": "",
275
+ "type": "string"
276
+ }
277
+ ],
278
+ "stateMutability": "view",
279
+ "type": "function"
280
+ },
281
+ {
282
+ "inputs": [
283
+ {
284
+ "internalType": "address",
285
+ "name": "accessControlManager_",
286
+ "type": "address"
287
+ }
288
+ ],
289
+ "name": "initialize",
290
+ "outputs": [],
291
+ "stateMutability": "nonpayable",
292
+ "type": "function"
293
+ },
294
+ {
295
+ "inputs": [],
296
+ "name": "owner",
297
+ "outputs": [
298
+ {
299
+ "internalType": "address",
300
+ "name": "",
301
+ "type": "address"
302
+ }
303
+ ],
304
+ "stateMutability": "view",
305
+ "type": "function"
306
+ },
307
+ {
308
+ "inputs": [],
309
+ "name": "pendingOwner",
310
+ "outputs": [
311
+ {
312
+ "internalType": "address",
313
+ "name": "",
314
+ "type": "address"
315
+ }
316
+ ],
317
+ "stateMutability": "view",
318
+ "type": "function"
319
+ },
320
+ {
321
+ "inputs": [],
322
+ "name": "renounceOwnership",
323
+ "outputs": [],
324
+ "stateMutability": "nonpayable",
325
+ "type": "function"
326
+ },
327
+ {
328
+ "inputs": [
329
+ {
330
+ "internalType": "address",
331
+ "name": "accessControlManager_",
332
+ "type": "address"
333
+ }
334
+ ],
335
+ "name": "setAccessControlManager",
336
+ "outputs": [],
337
+ "stateMutability": "nonpayable",
338
+ "type": "function"
339
+ },
340
+ {
341
+ "inputs": [
342
+ {
343
+ "internalType": "uint16",
344
+ "name": "srcChainId_",
345
+ "type": "uint16"
346
+ },
347
+ {
348
+ "internalType": "bytes",
349
+ "name": "srcAddress_",
350
+ "type": "bytes"
351
+ }
352
+ ],
353
+ "name": "setTrustedRemoteAddress",
354
+ "outputs": [],
355
+ "stateMutability": "nonpayable",
356
+ "type": "function"
357
+ },
358
+ {
359
+ "inputs": [
360
+ {
361
+ "internalType": "address",
362
+ "name": "newOwner_",
363
+ "type": "address"
364
+ }
365
+ ],
366
+ "name": "transferBridgeOwnership",
367
+ "outputs": [],
368
+ "stateMutability": "nonpayable",
369
+ "type": "function"
370
+ },
371
+ {
372
+ "inputs": [
373
+ {
374
+ "internalType": "address",
375
+ "name": "newOwner",
376
+ "type": "address"
377
+ }
378
+ ],
379
+ "name": "transferOwnership",
380
+ "outputs": [],
381
+ "stateMutability": "nonpayable",
382
+ "type": "function"
383
+ },
384
+ {
385
+ "inputs": [
386
+ {
387
+ "internalType": "string[]",
388
+ "name": "signatures_",
389
+ "type": "string[]"
390
+ },
391
+ {
392
+ "internalType": "bool[]",
393
+ "name": "active_",
394
+ "type": "bool[]"
395
+ }
396
+ ],
397
+ "name": "upsertSignature",
398
+ "outputs": [],
399
+ "stateMutability": "nonpayable",
400
+ "type": "function"
401
+ },
402
+ {
403
+ "inputs": [
404
+ {
405
+ "internalType": "address",
406
+ "name": "_logic",
407
+ "type": "address"
408
+ },
409
+ {
410
+ "internalType": "address",
411
+ "name": "admin_",
412
+ "type": "address"
413
+ },
414
+ {
415
+ "internalType": "bytes",
416
+ "name": "_data",
417
+ "type": "bytes"
418
+ }
419
+ ],
420
+ "stateMutability": "payable",
421
+ "type": "constructor"
422
+ }
423
+ ],
424
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
425
+ "receipt": {
426
+ "to": "0x0000000000000000000000000000000000008006",
427
+ "from": "0x7f423E50147930e197dAaE9F637198E66746D597",
428
+ "contractAddress": "0xdfaed3E5d9707629Ed5c225b4fB980c064286771",
429
+ "transactionIndex": 0,
430
+ "gasUsed": "5352833",
431
+ "logsBloom": "0x00000000000400080000010000000000400000000000400000800000000000000000000000000000040000000001000000000002000400000000000000008000000100000004040000000028000042000401200000000000000000000000080000000800020100000000000000000840000400800020400000000010000000400000001000000000100004000100000000000100000080000000000000800080800000000000100000000000800500000000000000800000082048010000000000000022008000000010000000240000000010000500000000000000000020000000000000002000000000000000000000000840000000401000000080000000",
432
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7",
433
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
434
+ "logs": [
435
+ {
436
+ "transactionIndex": 0,
437
+ "blockNumber": 48278537,
438
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
439
+ "address": "0x000000000000000000000000000000000000800A",
440
+ "topics": [
441
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
442
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597",
443
+ "0x0000000000000000000000000000000000000000000000000000000000008001"
444
+ ],
445
+ "data": "0x0000000000000000000000000000000000000000000000000001b700506a7df0",
446
+ "logIndex": 0,
447
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
448
+ },
449
+ {
450
+ "transactionIndex": 0,
451
+ "blockNumber": 48278537,
452
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
453
+ "address": "0x0000000000000000000000000000000000008008",
454
+ "topics": ["0x27fe8c0b49f49507b9d4fe5968c9f49edfe5c9df277d433a07a0717ede97638d"],
455
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000008008000000000000000000000000000000000000000000000000000000000000800ec3845600cd61f9e0a0631fc27cf5c7c168bc12b313742876e9d0714b34a6900a",
456
+ "logIndex": 1,
457
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
458
+ },
459
+ {
460
+ "transactionIndex": 0,
461
+ "blockNumber": 48278537,
462
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
463
+ "address": "0x0000000000000000000000000000000000008008",
464
+ "topics": [
465
+ "0x3a36e47291f4201faf137fab081d92295bce2d53be2c6ca68ba82c7faa9ce241",
466
+ "0x000000000000000000000000000000000000000000000000000000000000800e",
467
+ "0xc3845600cd61f9e0a0631fc27cf5c7c168bc12b313742876e9d0714b34a6900a"
468
+ ],
469
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000201a026800000000000000000000017201008041000001720010009c0000000100200190000000c00110021000000000010004140000000000320435000000000101043b000000000001004b05c405ba0000040f0000000000100443000003da0000613d0000000400100443000000f00000213d0000006001100210000005c600010430000000400100043d000000000021043500000175011001970000017202008041000001720020009c000000000012004b0000000002000411000080050200003900000187011001c7000000240000044300000000010004120000018601000041000300000001035505c405bf0000040f00000000005404350000024d0000213dffffffffffffffff000000000001042d000005c50001042e000000000575019f00000000056501cf000000000565022f0000010006600089000000000505043b000000000767022f00000000076701cf00000000070404330000000306600210000000000006004b00000005010000290000001f0530018f000000000002004b0000000008980436000000007907043c0000000001010433000000000026004b0000000102000039000080020200003900000179011001c70000017801000041000000000003004b0000000006760436000000005705043c000000000504034f0000019a011001970000000003010019000000000112019f000000000047004b0000000007870436000000006806043c0000000007000019000000000601034f0000017404300198000101720030019d0000006003300270000000000113019f000000c0034002100000017204008041000001720040009c000000200300003900000004021000390000018102000041000000400110021000000000060000190000001f0310018f0000019a0210019800000001010000310000000304000367000000040020008c0000000004000414000000000545034f0000017502200197000000000048004b0000000008000019000000000705034f000000000202041a0000017a020000410000001f0610018f0000019a04100198000000000100003100000002050003670000000000120435000000400010043f000000f00000c13d000001760040009c000000060200002900000060022002100000017203008041000001720030009c000002640000613d000000240210003900000044021000390000006402100039000002150000613d0000024d0000c13d000000000005004b000000000400001900000006030000290000024d0000613d05c405b50000040f0000800d02000039000000000021041b0000017a0100004100000020044000390000003f01100039000000040030008c000000000200001900000000006504350000000006060433000001760030009c0000006001000039000101720010019d0000006001100270000000010220018f000000000232019f0000004003300210000000000001042f000000000013004b00000000001404350000010005500089000000000656022f00000000065601cf00000003055002100000000100500190000000010500403900000000050000390000019a04400197000002640000013d000000000404043b00000006010000290000000000020435000000400200043d000002150000013d000001690000613d0000000005020433000000000004004b0000000002010433000001800100004100000027010000390000017f020000410000017d0400004100000002030000390000017c011001c7000000000252019f0000017b02200197000000000201041a00000000000104350000010003300089000000000434022f0000000303300210000000400400043d000000000034004b0000024d0000413d000001560000c13d416464726573733a02000000000000000000002400000000020000020000000000000000ffffffff000000000024004b00000000067400190000000005340019000004790000613d0000004403100039000000000023043500000024031000390000000002020433000001ca0000c13d0000000403000029000000000557034f000000000049004b0000000009a90436000000008a08043c0000000009030019000000000807034f000000030700036700000000045300190000001f0640018f0000019a054001980000000003410436000000400030043f00000000033100190000019a031001970000001f01400039000000000121019f00000040022002100000004402400039000004860000c13d00000080030000390000017204100197000000010400003100000004020000290000017201300197000000000161019f00000000015101cf000000000151022f0000000006040433000000000141034f000000400040043f000000000353019f00000000033401cf000000000535022f00000000053501cf000000000424034f0000004001200210000000000100001900000199011001c7000000420300003900000198030000410000019703000041000001960300004100000084021000390000018d011001c700000000010004160000000201000029000003d00000613d000100000002001d000000000213043600000040013000390000006001300039000600000001001d000003130000613d000200000004001d000001760010009c000003270000c13d000600000004001d000000000031004b000001760020009c000000000202043b000001750060009cffffffffffffffe0000000a4000000006f78793a2061646d646561626c655072656e7455706772615472616e737061726f78792074617267636b20746f207072742066616c6c6261696e2063616e6e6f65740000000000004e487b7100000000696f6e206973206e6c656d656e746174206e657720696d70455243313936373a74726163740000006f74206120636f6e00000084000000006f206e6f6e2d636f652063616c6c20742064656c656761746e74726163740000ffffffffffffffdf0000002000000000000000004f1ef286000000003659cfe600000000f851a440000000005c60da1b000000005c60da1a0000004400000000ab882de59d99a32eff553aecb10793d015d089f94afb7896310ab089e4439a4c00000080000001000000000200000000832dc59e38c9798f31ebfa28653d42ae1e4894b5f4f588d37e644d79422f17c00000004000000000d6a717850b5d6103243e63b6e8ee117873ae13b9f8a6016eb53127684a568b3108c379a0000000006174652063616c6c656c2064656c6567206c6f772d6c6576206661696c656400ffffffffffffff9f225b39da2e5c2d3b214dbc6bffa90cc09adebab32041f755bc7cd75a20ee27fdffffffff0000000020a3ca505d382bbcca3e2076cc3735a90667c828492db98d360894a13ba1a321023a8d90e8508b8302500962caba6a1568e884a7374b41e01806aa1896bbf265800000000000000000000000ffffffe000000001ffffffe0000005c400000432000005c200210425000005bd00210423000005b800210421000005b20000613d000005ab0000613d0000059a0000c13d0000059e0000613d000005ae0000013d000005ae0000613d000005770000c13d0000057b0000613d000005890000c13d0000056d0000613d0000055b0000c13d0000055f0000613d000005520000c13d000005510000613d00000000012300190000051d0000413d00000000061400190000000005240019000005240000613d000004890000013d0000000302000029000004ce0000013d0000000000430435000000000464019f00000000045401cf000000000454022f0000000006030433000000000446034f000004ce0000613d000005030000c13d000000000038004b0000000308000029000000000706034f000005070000613d00000003060003670000000003460019000300000006001d0000019a043001980000000006310436000000000014004b00000000044100190000019a041001970000001f01300039000004790000013d000004e20000413d0000000107000029000005150000c13d000004ea0000c13d000001720310019700000005020000290000045e0000013d0000045e0000613d000004a60000c13d000004aa0000613d000000010060019000000001060040390000000006000039000000400230021000000000023200190000001f04200039000004720000413d000000030700002900000002020000290000048e0000c13d0000045a0000013d000004470000c13d000003f20000013d000003f20000613d0000042c0000c13d000004300000613d00000044011000390000001f0110003905c4051a0000040f000000010100002900000000003104350000002401400039000500000003001d0000000003010433000000200200003900000004014000390000018101000041000003400000c13d000004140000c13d00000003030000290000031c0000013d000000260300003900000190030000410000018f030000410000043e0000c13d000300000002001d000200000003001d0000017e0030009c000000400300043d000003ee0000013d000003db0000c13d00000004003004430000000002140436000000400140003900000060014000390000017e0040009c000003870000c13d000003710000c13d0000018501000041000001200010044300000001010000390000010000100443000000200100003900000160001004430000014000000443000000800100043d0000018404000041000000010300003900000183011001c7000000c00220021000000000020004140000000000130435000000200320003900000175012001970000018201000041000000800020043f0000038c0000c13d000001750510019705c405270000040f00000191011001c70000002d0300003900000193030000410000019203000041000003280000c13d0000000400700443000600000007001d0000000001190019000300000009001d000002f90000413d00000020033000390000000005050433000000000523001900000000049300190000000003000019000003000000613d000400000006001d000500000008001d000002ef0000c13d000003760000c13d000002e50000613d000002d30000c13d000002d70000613d000002b20000c13d000003600000c13d000002a80000613d000002960000c13d0000029a0000613d000002780000613d000002710000613d000002600000c13d000002f40000a13d0000000004210019000000c0022000390000000009180436000000a003300039000000000084004b0000000004480019000000400800043d0000003f044000390000001f04100039000002340000c13d000002740000013d000002740000613d000002110000c13d000002230000c13d000002070000613d000001f50000c13d000001f90000613d000000000101041a000002b70000c13d000003b20000c13d0000000605000029000500000002001d000400000001001d00000020012000390000018e0020009c000001750010009c00000004011003700000000002000416000000240030008c000001ec0000c13d0000027a0000c13d0000018a0020009c000001cc0000613d000001890020009c000001300000c13d0000024f0000c13d000001260000613d000001140000c13d000001180000613d0000019501000041000000040010043f0000004101000039000000000010043f0000019401000041000002390000a13d000000a001200039000000000504c019000001770010009c00000177050040410000000005000019000001770110019700000177040080410000001f01200039000000e00200043d000000c00600043d000001750070009c000000a00700043d000000600030008c000000000151019f00000000014101cf000000000141022f0000010004400089000000000545022f00000000054501cf0000000304400210000000000151034f000000d50000613d000000c40000c13d0000000006860436000000007807043c000000000701034f000000a006000039000000c80000613d000000a00250003900000174053001980000001f0430018f000000400020043f000000a00220003900000173022001970000001f02300039000004cb0000013d0000000103000031000004b80000c13d00000005030000290000017e0010009c00000005050000290000000001980019000400000008001d000000000242019f00000000023201cf000000000232022f00000000043401cf0000000004010433000000000224034f0000006e0000613d0000005d0000c13d000000000016004b0000000006080019000000610000613d0000000204400367000000040400002900000000012800190000001f0390018f0000019a02900198000000000894043600000001020040390000000002000039000000000041004b00000000011400190000001f019000390000000609000029000300000005001d000500000006001d000400000007001d00000024011000390000000001420019000000000401043b000000000171034f00000004072000390000024d0000813d00000023042000390000002402100370000000000602043b0000000402100370000000440030008c0000018c0020009c000001800000613d0000018b0020009c000001350000213d000001880020009c000000e002200270000000000201043b000000f60000413d000000400050043f0000008005000039000000ba0000c13d000001720040019d00020000000103550003000000310355000001720340019700000060043002700006000000000002000400000000000202670266003d0265026402630262026100030260025f025e0079025d025c025b025a025902580257025600a9025500a80254025300f5001f025200f400f3001f025100a70250024f024e024d0064001f024c024b00f2001f024a00f102490248001b000a001a000c001900050002000100040018001700090003000b000700120016001500f002470246003c0078003c00a6024502440243024200ef000d00030063006200ee02410240023f023e023d0077023c023b003b023a003a00390239023800380237023600a50235023400a400f400a302330232023100110230022f00a20037000a002d000c00050002000100040036003500090003000b0007000800ed007600a100a0022e009f00750005000200010004009e0074009d009c007300030072001000ec022d000d007100eb006200ea009b0011009a00e9009900e800610037000a002d000c00050002000100040036003500090003000b0007000800e700e600980005022c0079022b0034022a0229022802270226022502240223022202210220021f021e021d0033021c0097021b021a0219009602180217000702160215021402130061021200a802110210001f020f00f5001f020e00f3001f020d00f20070020c020b0008020a020902080207006f006e0206003200ef020502040203020202010200000f003800a9001b000a001a000c001900050002000100040018001700090003000b000700120016001500950060005f005e005d005c005b01ff005a005900310030005801fe0057002c01fd0056002b002a0029002800270026002500240023001e0055005401fc0053005200510050006d003b004f003a0039003301fb009401fa01f901f800a900e50008006e001b000a001a000c001900050002000100040018001700090003000b000700120016001501f70010001100020001004e00e40022001b000a001a000c001900050002000100040018001700090003000b000700120016001501f6001000e300e20006006c00e10006006b00e00006006a00df0006004d0011004c004b000600020001004e00de000f01f500a801f4002f006e01f3000701f2001f00ec001b000a001a000c001900050002000100040018001700090003000b000700120016001500f0009301f1000d01f001ef006201ee00920037000a0091000c00050002000100040036003500090003000b0007000800ed007600a100a001ed009f00750005000200010004009e0074009d009c007300030072002d0032000801ec00dd002200e50008006e001b000a001a000c001900050002000100040018001700090003000b000700120016001501eb007601ea0012009300610014001300dc00e400220060005f005e005d005c005b01e9005a005900310030005801e80057002c01e70056002b002a0029002800270026002500240023001e0055005401e60053005200510050006d003b004f003a0039003301e5003801e400db00a5009600da00d9009000a300a400d800d7000601e300020001000e004a004900480047001d001c003d0046002e0045004400690043004200410040003f01e2008f01e1008e01e0008e01df01de01dd008d008c0064000d008b006301dc00d601db01da01d900a701d800dd000f00020001000e004a004900480047001d001c003d0046002e0045004400690043004200410040003f01d7006f01d600d5008a00d4008900880007008700d300d200d1008600d0000301d500020001000e0022000e000f001b000a001a000c001900050002000100040018001700090003000b000700120016001500950060005f005e005d005c005b01d4005a005900310030005801d30057002c01d20056002b002a0029002800270026002500240023001e0055005401d10053005200510050006d003b004f003a0039003301d00094001b000a001a000c001900050002000100040018001700090003000b000700120016001500950060005f005e005d005c005b01cf005a005900310030005801ce0057002c01cd0056002b002a0029002800270026002500240023001e0055005401cc0053005200510050006d003b004f003a0039003301cb009401ca01c9000801c801c701c601c501c4001e01c3008501c201c101c000a20037000a01bf01be00050002000100040036003500090003000b0007000801bd0010006c01bc0006006b01bb0006006a01ba0006004d0011004c004b000600020001004e01b9000f01b8009101b7007600a100a0009f00750005000200010004009e0074009d009c00730071000300cf002d00720032000801b601b501b4007501b3009301b201b100920014001300dc01b00014001301af003e01ae007401ad01ac00730003007201ab01aa01a901a801a701a601a501a4002200020001000e004a004900480047001d001c003d0046002e0045004400690043004200410040003f01a3008f00020001000e004a004900480047001d001c003d0046002e0045004400690043004200410040003f01a2008f00a601a1000d01a00062019f009b0011009a00ee019e009900e800610037000a019d00050002000100040036003500090003000b0007000800e7002d0098000500710079019c003400ce019b019a0199000d00eb006200ea009b0011009a019800e90099019700610037000a0091000c00050002000100040036003500090003000b0007000801960010006c01950006006b01940006006a01930192008401910068006700830014001300660082000200010004003e0065001d0081001c0080007f00cd00970190007e00cc002f00cf018f0032000800cb00a600f1018e0086018d018c001100e6018b018a0189018800ca01870186002d0185003c018400020001006500140013000e00c900c8000f0064000d00c7003c007800c6001000c50085008d008c007d000d008b006300c400c300c200c100c000bf018300be00bd00bc00bb00ba0182002c018100b9002b002a0029002800270026002500240023001e0180002d0098000500710079017f003400ce017e00b80068006700830014001300660082000200010004003e0065001d0081001c0080007f00cd0097017d007e00cc002f00b70032000800cb0010004d0011004c004b0006017c00b600b500b400b3002f017b00b2007000b100b0007c007b007700af017a0179008e0178009200ca00140013006600020001004e003e000f00680067017700020001000e00c8000f0064000d00c7003c007800c6001000c5008501760175007d000d0174006300c400c300c200c100c000bf017300be00bd00bc00bb00ba0172002c017100b9002b002a0029002800270026002500240023001e017000b80068006700830014001300660082000200010004003e016f001d0081001c0080007f016e0038016d007e002f00b700320008016c0010004d0011004c004b0006006500b600b500b400b3002f016b00b2007000b100b0007c007b007700af016a0169007d000d0168003c00780167001001660165008d008c0064000d008b006300d601640163002e016201610160015f015e015d00310030015c015b006f015a0159008a015800890088009000870157015601550154015301520014001300c90151003801500070014f014e007c007b007700a7014d014c00a20021001b000a001a000c001900050002000100040018001700090003014b0007001200160015014a001000e300e20006006c00e10006006b00e00006006a00df0006004d0011004c004b000600020001004e00de000f00840060005f005e005d005c005b0149005a005900310030005801480057002c01470056002b002a0029002800270026002500240023001e00550054014600530052005100500145003b004f003a0039003301440038014300db00a5009600da00d9009000a300a400d800d70006014200020001000e004a004900480047001d001c003d0046002e0045004401410043004200410040003f0140006f013f00d5008a00d4008900880007008700d300d200d1008600d00003013e00020001000e0022000e000f0084013d00340021007a0021013c00340021007a0021013b00340021007a0021013a0022000f000000000000000000ae00000000000001390000000000000138000000ae0020002000000000000000200137000000000000013601350134013300ad000000ac0000013201310130012f0020012e0000000000ab000000000000012d012c012b012a0000000000000129012800000000000000aa0127012601250124000000000000012301220121012000ab0000011f0000011e011d011c011b011a000001190000011801170116011500ad0000011400000000000000000113000000000000011200000000000001110000000000000110000000000000010f00000000010e0000000000000000010d010c00000000000000aa010b010a010900000000010800000107010600000000010501040103010201010000000000000000000000ac0000010000000000000000ff00fe00fd00fc00fb00fa00f900f80000000000f7000000200020002000f6000000000000",
470
+ "logIndex": 2,
471
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
472
+ },
473
+ {
474
+ "transactionIndex": 0,
475
+ "blockNumber": 48278537,
476
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
477
+ "address": "0x0000000000000000000000000000000000008004",
478
+ "topics": [
479
+ "0xc94722ff13eacf53547c4741dab5228353a05938ffcdd5d4a2d533ae0e618287",
480
+ "0x0100019b94e86808514a3c332c0d8160c92fb29c3652a9ce23d188ea77dfd61b",
481
+ "0x0000000000000000000000000000000000000000000000000000000000000000"
482
+ ],
483
+ "data": "0x",
484
+ "logIndex": 3,
485
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
486
+ },
487
+ {
488
+ "transactionIndex": 0,
489
+ "blockNumber": 48278537,
490
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
491
+ "address": "0xdfaed3E5d9707629Ed5c225b4fB980c064286771",
492
+ "topics": [
493
+ "0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b",
494
+ "0x0000000000000000000000001a1e8b2e095aeaca3ba2d9bda0b9adf855032e89"
495
+ ],
496
+ "data": "0x",
497
+ "logIndex": 4,
498
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
499
+ },
500
+ {
501
+ "transactionIndex": 0,
502
+ "blockNumber": 48278537,
503
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
504
+ "address": "0xdfaed3E5d9707629Ed5c225b4fB980c064286771",
505
+ "topics": [
506
+ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
507
+ "0x0000000000000000000000000000000000000000000000000000000000000000",
508
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597"
509
+ ],
510
+ "data": "0x",
511
+ "logIndex": 5,
512
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
513
+ },
514
+ {
515
+ "transactionIndex": 0,
516
+ "blockNumber": 48278537,
517
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
518
+ "address": "0xdfaed3E5d9707629Ed5c225b4fB980c064286771",
519
+ "topics": ["0x66fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa0"],
520
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000526159a92a82afe5327d37ef446b68fd9a5ca914",
521
+ "logIndex": 6,
522
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
523
+ },
524
+ {
525
+ "transactionIndex": 0,
526
+ "blockNumber": 48278537,
527
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
528
+ "address": "0xdfaed3E5d9707629Ed5c225b4fB980c064286771",
529
+ "topics": ["0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498"],
530
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000001",
531
+ "logIndex": 7,
532
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
533
+ },
534
+ {
535
+ "transactionIndex": 0,
536
+ "blockNumber": 48278537,
537
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
538
+ "address": "0xdfaed3E5d9707629Ed5c225b4fB980c064286771",
539
+ "topics": ["0x7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f"],
540
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000008ea1a989b036f7ef21bb95ce4e7961522ca00287",
541
+ "logIndex": 8,
542
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
543
+ },
544
+ {
545
+ "transactionIndex": 0,
546
+ "blockNumber": 48278537,
547
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
548
+ "address": "0x0000000000000000000000000000000000008006",
549
+ "topics": [
550
+ "0x290afdae231a3fc0bbae8b1af63698b0a1d79b21ad17df0342dfb952fe74f8e5",
551
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597",
552
+ "0x0100019b94e86808514a3c332c0d8160c92fb29c3652a9ce23d188ea77dfd61b",
553
+ "0x000000000000000000000000dfaed3e5d9707629ed5c225b4fb980c064286771"
554
+ ],
555
+ "data": "0x",
556
+ "logIndex": 9,
557
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
558
+ },
559
+ {
560
+ "transactionIndex": 0,
561
+ "blockNumber": 48278537,
562
+ "transactionHash": "0x20edb7cede43bff47660a8a73323c82de4a34dc9d80e6a5b4804f6700ca3148a",
563
+ "address": "0x000000000000000000000000000000000000800A",
564
+ "topics": [
565
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
566
+ "0x0000000000000000000000000000000000000000000000000000000000008001",
567
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597"
568
+ ],
569
+ "data": "0x0000000000000000000000000000000000000000000000000000dab5140f9020",
570
+ "logIndex": 10,
571
+ "blockHash": "0xc9e6041055e37aaad2f33bedc0ca4d12af285eeb31f785a00e0910108bb210a7"
572
+ }
573
+ ],
574
+ "blockNumber": 48278537,
575
+ "cumulativeGasUsed": "0",
576
+ "status": 1,
577
+ "byzantium": true
578
+ },
579
+ "args": [
580
+ "0x1a1e8b2e095aEaca3Ba2d9bDa0B9Adf855032E89",
581
+ "0x8Ea1A989B036f7Ef21bb95CE4E7961522Ca00287",
582
+ "0xc4d66de8000000000000000000000000526159a92a82afe5327d37ef446b68fd9a5ca914"
583
+ ],
584
+ "numDeployments": 1,
585
+ "solcInputHash": "fd2a9ac8f832f234262849a7c933f900",
586
+ "metadata": {
587
+ "llvm_options": [],
588
+ "optimizer_settings": {
589
+ "is_debug_logging_enabled": false,
590
+ "is_fallback_to_size_enabled": false,
591
+ "is_verify_each_enabled": false,
592
+ "level_back_end": "Aggressive",
593
+ "level_middle_end": "Aggressive",
594
+ "level_middle_end_size": "Zero"
595
+ },
596
+ "solc_version": "0.8.25",
597
+ "solc_zkvm_edition": "1.0.1",
598
+ "source_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}",
599
+ "zk_version": "1.5.3"
600
+ },
601
+ "bytecode": "0x0004000000000002000600000000000200000000030100190000006004300270000001720340019700030000003103550002000000010355000001720040019d0000000100200190000000ba0000c13d0000008005000039000000400050043f000000040030008c000000f60000413d000000000201043b000000e002200270000001880020009c000001350000213d0000018b0020009c000001800000613d0000018c0020009c000001560000c13d000000440030008c0000024d0000413d0000000402100370000000000602043b000001750060009c0000024d0000213d0000002402100370000000000202043b000001760020009c0000024d0000213d0000002304200039000000000034004b0000024d0000813d0000000407200039000000000171034f000000000401043b000001760040009c0000024d0000213d00000000014200190000002401100039000000000031004b0000024d0000213d000400000007001d000600000004001d000500000006001d000300000005001d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000003270000c13d00000006090000290000001f019000390000019a011001970000003f011000390000019a01100197000000400400043d0000000001140019000000000041004b00000000020000390000000102004039000001760010009c000000f00000213d0000000100200190000000f00000c13d000000400010043f000200000004001d00000000089404360000019a029001980000001f0390018f0000000001280019000000040400002900000020044000390000000204400367000000610000613d000000000504034f0000000006080019000000005705043c0000000006760436000000000016004b0000005d0000c13d000000000003004b0000006e0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000400000008001d0000000001980019000000000001043500000178010000410000000000100443000000050100002900000004001004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003130000613d0000017a01000041000000000201041a0000017b022001970000000505000029000000000252019f000000000021041b0000000001000414000001720010009c0000017201008041000000c0011002100000017c011001c70000800d0200003900000002030000390000017d0400004105c405b50000040f00000001002001900000024d0000613d000000400100043d000600000001001d0000017e0010009c000000f00000213d00000006030000290000006001300039000000400010043f00000040013000390000017f020000410000000000210435000000270100003900000000021304360000018001000041000100000002001d000000000012043500000178010000410000000000100443000000050100002900000004001004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003d00000613d0000000201000029000000000201043300000000010004140000000503000029000000040030008c000004b80000c13d00000001020000390000000103000031000004cb0000013d0000001f023000390000017302200197000000a002200039000000400020043f0000001f0430018f0000017405300198000000a002500039000000c80000613d000000a006000039000000000701034f000000007807043c0000000006860436000000000026004b000000c40000c13d000000000004004b000000d50000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c0000024d0000413d000000a00700043d000001750070009c0000024d0000213d000000c00600043d000001750060009c0000024d0000213d000000e00200043d000001760020009c0000024d0000213d0000001f01200039000000000031004b000000000400001900000177040080410000017701100197000000000001004b00000000050000190000017705004041000001770010009c000000000504c019000000000005004b0000024d0000c13d000000a0012000390000000001010433000001760010009c000002390000a13d0000019401000041000000000010043f0000004101000039000000040010043f0000019501000041000005c600010430000000000003004b000001560000c13d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000001690000613d000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a000001180000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b000001140000c13d0000017502200197000000000006004b000001260000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c0000024f0000c13d000000030400036700000001010000310000019a021001980000001f0310018f000002150000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000001300000c13d000002150000013d000001890020009c000001cc0000613d0000018a0020009c000001560000c13d0000000001000416000000000001004b0000024d0000c13d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b0000027a0000c13d000000400100043d0000000000210435000001720010009c000001720100804100000040011002100000018d011001c7000005c50001042e000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000001ec0000c13d000000400100043d00000084021000390000019603000041000000000032043500000064021000390000019703000041000000000032043500000044021000390000019803000041000000000032043500000024021000390000004203000039000000000032043500000181020000410000000000210435000000040210003900000020030000390000000000320435000001720010009c0000017201008041000000400110021000000199011001c7000005c600010430000000240030008c0000024d0000413d0000000002000416000000000002004b0000024d0000c13d0000000401100370000000000101043b000001750010009c0000024d0000213d000600000001001d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000003270000c13d000000400200043d0000018e0020009c000000f00000213d0000002001200039000400000001001d000000400010043f000500000002001d000000000002043500000178010000410000000000100443000000060100002900000004001004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003130000613d0000017a01000041000000000201041a0000017b022001970000000605000029000000000252019f000000000021041b0000000001000414000001720010009c0000017201008041000000c0011002100000017c011001c70000800d0200003900000002030000390000017d0400004105c405b50000040f00000001002001900000024d0000613d00000005010000290000000001010433000000000001004b000003b20000c13d0000000001000019000005c50001042e0000000001000416000000000001004b0000024d0000c13d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000002b70000c13d0000017a01000041000000000101041a0000017501100197000000400200043d0000000000120435000001720020009c000001720200804100000040012002100000018d011001c7000005c50001042e000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a000001f90000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b000001f50000c13d0000017502200197000000000006004b000002070000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c000002230000c13d000000030400036700000001010000310000019a021001980000001f0310018f000002150000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000002110000c13d000000000003004b000002740000613d000000000424034f0000000303300210000000000502043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000320435000002740000013d000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d0000017404300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002340000c13d000002640000013d0000001f041000390000019a044001970000003f044000390000019a04400197000000400800043d0000000004480019000000000084004b00000000050000390000000105004039000001760040009c000000f00000213d0000000100500190000000f00000c13d000000a003300039000000400040043f0000000009180436000000c0022000390000000004210019000000000034004b000002f40000a13d0000000001000019000005c600010430000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d0000017404300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002600000c13d000000000005004b000002710000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000172013001970000000100200190000002780000613d000001720010009c00000172010080410000006001100210000005c50001042e0000006001100210000005c600010430000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000001690000613d000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a0000029a0000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b000002960000c13d0000017502200197000000000006004b000002a80000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c000003600000c13d000000030400036700000001010000310000019a021001980000001f0310018f000002150000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000002b20000c13d000002150000013d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000001690000613d000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a000002d70000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b000002d30000c13d0000017502200197000000000006004b000002e50000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c000003760000c13d000000030400036700000001010000310000019a021001980000001f0310018f000002150000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000002ef0000c13d000002150000013d000500000008001d000400000006001d000000000001004b000003000000613d000000000300001900000000049300190000000005230019000000000505043300000000005404350000002003300039000000000013004b000002f90000413d000300000009001d0000000001190019000000000001043500000178010000410000000000100443000600000007001d00000004007004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003280000c13d000000400100043d00000064021000390000019203000041000000000032043500000044021000390000019303000041000000000032043500000024021000390000002d03000039000000000032043500000181020000410000000000210435000000040210003900000020030000390000000000320435000001720010009c0000017201008041000000400110021000000191011001c7000005c60001043005c405270000040f000000060100002900000175051001970000017a01000041000000000201041a0000017b02200197000000000252019f000000000021041b0000000001000414000001720010009c0000017201008041000000c0011002100000017c011001c70000800d0200003900000002030000390000017d0400004105c405b50000040f00000006030000290000000100200190000000040200002900000005010000290000024d0000613d0000000001010433000000000001004b0000038c0000c13d000000800020043f0000018201000041000000000021041b0000017501200197000000400200043d000000200320003900000000001304350000000000020435000001720020009c000001720200804100000040012002100000000002000414000001720020009c0000017202008041000000c002200210000000000112019f00000183011001c70000800d020000390000000103000039000001840400004105c405b50000040f00000001002001900000024d0000613d000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000018501000041000005c50001042e000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d0000017404300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003710000c13d000002640000013d000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d0000017404300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003870000c13d000002640000013d000000400400043d0000017e0040009c000000f00000213d0000006001400039000000400010043f00000040014000390000017f0200004100000000002104350000002701000039000200000004001d00000000021404360000018001000041000100000002001d00000000001204350000017801000041000000000010044300000004003004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003d00000613d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000003db0000c13d00000001020000390000000104000031000003ee0000013d000000400300043d0000017e0030009c000000f00000213d0000006001300039000000400010043f00000040013000390000017f0200004100000000002104350000002701000039000200000003001d00000000021304360000018001000041000300000002001d000000000012043500000178010000410000000000100443000000060100002900000004001004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b0000043e0000c13d000000400100043d00000064021000390000018f030000410000000000320435000000440210003900000190030000410000000000320435000000240210003900000026030000390000031c0000013d000000000001042f0000000303000029000001720030009c00000172030080410000004003300210000001720020009c00000172020080410000006002200210000000000232019f000001720010009c0000017201008041000000c001100210000000000112019f000000060200002905c405bf0000040f000000010220018f00030000000103550000006001100270000101720010019d0000017204100197000000000004004b000004140000c13d00000060010000390000008003000039000000000002004b0000000402000029000003400000c13d0000000001010433000000000001004b000004860000c13d000000400400043d000600000004001d0000018101000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000500000003001d000000240140003900000000003104350000004402400039000000010100002905c4051a0000040f00000005010000290000001f011000390000019a011001970000004401100039000001720010009c00000172010080410000000602000029000001720020009c000001720200804100000060011002100000004002200210000000000121019f000005c600010430000001760040009c000000f00000213d0000001f014000390000019a011001970000003f011000390000019a03100197000000400100043d0000000003310019000000000013004b00000000050000390000000105004039000001760030009c000000f00000213d0000000100500190000000f00000c13d000000400030043f00000000034104360000019a054001980000001f0640018f00000000045300190000000307000367000004300000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b0000042c0000c13d000000000006004b000003f20000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000003f20000013d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004470000c13d000000010200003900000001040000310000045a0000013d0000000403000029000001720030009c00000172030080410000004003300210000001720020009c00000172020080410000006002200210000000000232019f000001720010009c0000017201008041000000c001100210000000000112019f000000060200002905c405bf0000040f000000010220018f00030000000103550000006001100270000101720010019d0000017204100197000000000004004b0000048e0000c13d00000060010000390000008003000039000000000002004b000001ca0000c13d0000000001010433000000000001004b000004860000c13d000000400100043d0000018102000041000000000021043500000004021000390000002003000039000000000032043500000002020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000307000029000004790000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000004720000413d0000001f042000390000019a04400197000000000232001900000000000204350000004402400039000001720020009c00000172020080410000006002200210000001720010009c00000172010080410000004001100210000000000112019f000005c600010430000001720030009c00000172030080410000004002300210000001720010009c00000172010080410000006001100210000000000121019f000005c600010430000001760040009c000000f00000213d0000001f014000390000019a011001970000003f011000390000019a03100197000000400100043d0000000003310019000000000013004b00000000060000390000000106004039000001760030009c000000f00000213d0000000100600190000000f00000c13d000000400030043f00000000034104360000019a054001980000001f0640018f00000000045300190000000307000367000004aa0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000004a60000c13d000000000006004b0000045e0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000045e0000013d0000000403000029000001720030009c00000172030080410000004003300210000001720020009c00000172020080410000006002200210000000000232019f000001720010009c0000017201008041000000c001100210000000000112019f000000050200002905c405bf0000040f000000010220018f00030000000103550000006001100270000101720010019d0000017203100197000000000003004b000004ea0000c13d0000006001000039000000000002004b000001ca0000c13d0000000001010433000000000001004b000005150000c13d000000400100043d0000018102000041000000000021043500000004021000390000002003000039000000000032043500000006020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000107000029000004790000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000004e20000413d000004790000013d000001760030009c000000f00000213d0000001f013000390000019a011001970000003f011000390000019a04100197000000400100043d0000000004410019000000000014004b00000000050000390000000105004039000001760040009c000000f00000213d0000000100500190000000f00000c13d000000400040043f00000000063104360000019a043001980000001f0530018f000300000006001d00000000034600190000000306000367000005070000613d000000000706034f0000000308000029000000007907043c0000000008980436000000000038004b000005030000c13d000000000005004b000004ce0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000004ce0000013d0000000302000029000001720020009c00000172020080410000004002200210000004890000013d000000000003004b000005240000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b0000051d0000413d00000000012300190000000000010435000000000001042d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000005510000613d000000000101043b00000175011001970000000002000411000000000012004b000005520000c13d000000400100043d00000084021000390000019603000041000000000032043500000064021000390000019703000041000000000032043500000044021000390000019803000041000000000032043500000024021000390000004203000039000000000032043500000181020000410000000000210435000000040210003900000020030000390000000000320435000001720010009c0000017201008041000000400110021000000199011001c7000005c600010430000000000001042f000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a0000055f0000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b0000055b0000c13d0000017502200197000000000006004b0000056d0000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c000005890000c13d000000030400036700000001010000310000019a021001980000001f0310018f0000057b0000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000005770000c13d000000000003004b000005ae0000613d000000000424034f0000000303300210000000000502043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000320435000005ae0000013d000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d00000174043001980000059e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000059a0000c13d000000000005004b000005ab0000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000172013001970000000100200190000005b20000613d000001720010009c00000172010080410000006001100210000005c50001042e0000006001100210000005c600010430000000000001042f000005b8002104210000000102000039000000000001042d0000000002000019000000000001042d000005bd002104230000000102000039000000000001042d0000000002000019000000000001042d000005c2002104250000000102000039000000000001042d0000000002000019000000000001042d000005c400000432000005c50001042e000005c600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c08c379a000000000000000000000000000000000000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610302000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f0000000200000000000000000000000000000080000001000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000f851a440000000000000000000000000000000000000000000000000000000003659cfe6000000000000000000000000000000000000000000000000000000004f1ef2860000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f00000000000000000000000000000000000000840000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006574000000000000000000000000000000000000000000000000000000000000696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172675472616e73706172656e745570677261646561626c6550726f78793a2061646d00000000000000000000000000000000000000a4000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0",
602
+ "deployedBytecode": "0x0004000000000002000600000000000200000000030100190000006004300270000001720340019700030000003103550002000000010355000001720040019d0000000100200190000000ba0000c13d0000008005000039000000400050043f000000040030008c000000f60000413d000000000201043b000000e002200270000001880020009c000001350000213d0000018b0020009c000001800000613d0000018c0020009c000001560000c13d000000440030008c0000024d0000413d0000000402100370000000000602043b000001750060009c0000024d0000213d0000002402100370000000000202043b000001760020009c0000024d0000213d0000002304200039000000000034004b0000024d0000813d0000000407200039000000000171034f000000000401043b000001760040009c0000024d0000213d00000000014200190000002401100039000000000031004b0000024d0000213d000400000007001d000600000004001d000500000006001d000300000005001d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000003270000c13d00000006090000290000001f019000390000019a011001970000003f011000390000019a01100197000000400400043d0000000001140019000000000041004b00000000020000390000000102004039000001760010009c000000f00000213d0000000100200190000000f00000c13d000000400010043f000200000004001d00000000089404360000019a029001980000001f0390018f0000000001280019000000040400002900000020044000390000000204400367000000610000613d000000000504034f0000000006080019000000005705043c0000000006760436000000000016004b0000005d0000c13d000000000003004b0000006e0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000400000008001d0000000001980019000000000001043500000178010000410000000000100443000000050100002900000004001004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003130000613d0000017a01000041000000000201041a0000017b022001970000000505000029000000000252019f000000000021041b0000000001000414000001720010009c0000017201008041000000c0011002100000017c011001c70000800d0200003900000002030000390000017d0400004105c405b50000040f00000001002001900000024d0000613d000000400100043d000600000001001d0000017e0010009c000000f00000213d00000006030000290000006001300039000000400010043f00000040013000390000017f020000410000000000210435000000270100003900000000021304360000018001000041000100000002001d000000000012043500000178010000410000000000100443000000050100002900000004001004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003d00000613d0000000201000029000000000201043300000000010004140000000503000029000000040030008c000004b80000c13d00000001020000390000000103000031000004cb0000013d0000001f023000390000017302200197000000a002200039000000400020043f0000001f0430018f0000017405300198000000a002500039000000c80000613d000000a006000039000000000701034f000000007807043c0000000006860436000000000026004b000000c40000c13d000000000004004b000000d50000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c0000024d0000413d000000a00700043d000001750070009c0000024d0000213d000000c00600043d000001750060009c0000024d0000213d000000e00200043d000001760020009c0000024d0000213d0000001f01200039000000000031004b000000000400001900000177040080410000017701100197000000000001004b00000000050000190000017705004041000001770010009c000000000504c019000000000005004b0000024d0000c13d000000a0012000390000000001010433000001760010009c000002390000a13d0000019401000041000000000010043f0000004101000039000000040010043f0000019501000041000005c600010430000000000003004b000001560000c13d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000001690000613d000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a000001180000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b000001140000c13d0000017502200197000000000006004b000001260000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c0000024f0000c13d000000030400036700000001010000310000019a021001980000001f0310018f000002150000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000001300000c13d000002150000013d000001890020009c000001cc0000613d0000018a0020009c000001560000c13d0000000001000416000000000001004b0000024d0000c13d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b0000027a0000c13d000000400100043d0000000000210435000001720010009c000001720100804100000040011002100000018d011001c7000005c50001042e000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000001ec0000c13d000000400100043d00000084021000390000019603000041000000000032043500000064021000390000019703000041000000000032043500000044021000390000019803000041000000000032043500000024021000390000004203000039000000000032043500000181020000410000000000210435000000040210003900000020030000390000000000320435000001720010009c0000017201008041000000400110021000000199011001c7000005c600010430000000240030008c0000024d0000413d0000000002000416000000000002004b0000024d0000c13d0000000401100370000000000101043b000001750010009c0000024d0000213d000600000001001d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000003270000c13d000000400200043d0000018e0020009c000000f00000213d0000002001200039000400000001001d000000400010043f000500000002001d000000000002043500000178010000410000000000100443000000060100002900000004001004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003130000613d0000017a01000041000000000201041a0000017b022001970000000605000029000000000252019f000000000021041b0000000001000414000001720010009c0000017201008041000000c0011002100000017c011001c70000800d0200003900000002030000390000017d0400004105c405b50000040f00000001002001900000024d0000613d00000005010000290000000001010433000000000001004b000003b20000c13d0000000001000019000005c50001042e0000000001000416000000000001004b0000024d0000c13d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000002b70000c13d0000017a01000041000000000101041a0000017501100197000000400200043d0000000000120435000001720020009c000001720200804100000040012002100000018d011001c7000005c50001042e000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a000001f90000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b000001f50000c13d0000017502200197000000000006004b000002070000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c000002230000c13d000000030400036700000001010000310000019a021001980000001f0310018f000002150000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000002110000c13d000000000003004b000002740000613d000000000424034f0000000303300210000000000502043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000320435000002740000013d000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d0000017404300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002340000c13d000002640000013d0000001f041000390000019a044001970000003f044000390000019a04400197000000400800043d0000000004480019000000000084004b00000000050000390000000105004039000001760040009c000000f00000213d0000000100500190000000f00000c13d000000a003300039000000400040043f0000000009180436000000c0022000390000000004210019000000000034004b000002f40000a13d0000000001000019000005c600010430000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d0000017404300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002600000c13d000000000005004b000002710000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000172013001970000000100200190000002780000613d000001720010009c00000172010080410000006001100210000005c50001042e0000006001100210000005c600010430000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000001690000613d000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a0000029a0000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b000002960000c13d0000017502200197000000000006004b000002a80000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c000003600000c13d000000030400036700000001010000310000019a021001980000001f0310018f000002150000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000002b20000c13d000002150000013d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b00000175011001970000000002000411000000000012004b000001690000613d000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a000002d70000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b000002d30000c13d0000017502200197000000000006004b000002e50000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c000003760000c13d000000030400036700000001010000310000019a021001980000001f0310018f000002150000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000002ef0000c13d000002150000013d000500000008001d000400000006001d000000000001004b000003000000613d000000000300001900000000049300190000000005230019000000000505043300000000005404350000002003300039000000000013004b000002f90000413d000300000009001d0000000001190019000000000001043500000178010000410000000000100443000600000007001d00000004007004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003280000c13d000000400100043d00000064021000390000019203000041000000000032043500000044021000390000019303000041000000000032043500000024021000390000002d03000039000000000032043500000181020000410000000000210435000000040210003900000020030000390000000000320435000001720010009c0000017201008041000000400110021000000191011001c7000005c60001043005c405270000040f000000060100002900000175051001970000017a01000041000000000201041a0000017b02200197000000000252019f000000000021041b0000000001000414000001720010009c0000017201008041000000c0011002100000017c011001c70000800d0200003900000002030000390000017d0400004105c405b50000040f00000006030000290000000100200190000000040200002900000005010000290000024d0000613d0000000001010433000000000001004b0000038c0000c13d000000800020043f0000018201000041000000000021041b0000017501200197000000400200043d000000200320003900000000001304350000000000020435000001720020009c000001720200804100000040012002100000000002000414000001720020009c0000017202008041000000c002200210000000000112019f00000183011001c70000800d020000390000000103000039000001840400004105c405b50000040f00000001002001900000024d0000613d000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000018501000041000005c50001042e000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d0000017404300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003710000c13d000002640000013d000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d0000017404300198000002640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003870000c13d000002640000013d000000400400043d0000017e0040009c000000f00000213d0000006001400039000000400010043f00000040014000390000017f0200004100000000002104350000002701000039000200000004001d00000000021404360000018001000041000100000002001d00000000001204350000017801000041000000000010044300000004003004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b000003d00000613d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000003db0000c13d00000001020000390000000104000031000003ee0000013d000000400300043d0000017e0030009c000000f00000213d0000006001300039000000400010043f00000040013000390000017f0200004100000000002104350000002701000039000200000003001d00000000021304360000018001000041000300000002001d000000000012043500000178010000410000000000100443000000060100002900000004001004430000000001000414000001720010009c0000017201008041000000c00110021000000179011001c7000080020200003905c405ba0000040f0000000100200190000003da0000613d000000000101043b000000000001004b0000043e0000c13d000000400100043d00000064021000390000018f030000410000000000320435000000440210003900000190030000410000000000320435000000240210003900000026030000390000031c0000013d000000000001042f0000000303000029000001720030009c00000172030080410000004003300210000001720020009c00000172020080410000006002200210000000000232019f000001720010009c0000017201008041000000c001100210000000000112019f000000060200002905c405bf0000040f000000010220018f00030000000103550000006001100270000101720010019d0000017204100197000000000004004b000004140000c13d00000060010000390000008003000039000000000002004b0000000402000029000003400000c13d0000000001010433000000000001004b000004860000c13d000000400400043d000600000004001d0000018101000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000500000003001d000000240140003900000000003104350000004402400039000000010100002905c4051a0000040f00000005010000290000001f011000390000019a011001970000004401100039000001720010009c00000172010080410000000602000029000001720020009c000001720200804100000060011002100000004002200210000000000121019f000005c600010430000001760040009c000000f00000213d0000001f014000390000019a011001970000003f011000390000019a03100197000000400100043d0000000003310019000000000013004b00000000050000390000000105004039000001760030009c000000f00000213d0000000100500190000000f00000c13d000000400030043f00000000034104360000019a054001980000001f0640018f00000000045300190000000307000367000004300000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b0000042c0000c13d000000000006004b000003f20000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000003f20000013d0000000501000029000000000201043300000000010004140000000603000029000000040030008c000004470000c13d000000010200003900000001040000310000045a0000013d0000000403000029000001720030009c00000172030080410000004003300210000001720020009c00000172020080410000006002200210000000000232019f000001720010009c0000017201008041000000c001100210000000000112019f000000060200002905c405bf0000040f000000010220018f00030000000103550000006001100270000101720010019d0000017204100197000000000004004b0000048e0000c13d00000060010000390000008003000039000000000002004b000001ca0000c13d0000000001010433000000000001004b000004860000c13d000000400100043d0000018102000041000000000021043500000004021000390000002003000039000000000032043500000002020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000307000029000004790000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000004720000413d0000001f042000390000019a04400197000000000232001900000000000204350000004402400039000001720020009c00000172020080410000006002200210000001720010009c00000172010080410000004001100210000000000112019f000005c600010430000001720030009c00000172030080410000004002300210000001720010009c00000172010080410000006001100210000000000121019f000005c600010430000001760040009c000000f00000213d0000001f014000390000019a011001970000003f011000390000019a03100197000000400100043d0000000003310019000000000013004b00000000060000390000000106004039000001760030009c000000f00000213d0000000100600190000000f00000c13d000000400030043f00000000034104360000019a054001980000001f0640018f00000000045300190000000307000367000004aa0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000004a60000c13d000000000006004b0000045e0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000045e0000013d0000000403000029000001720030009c00000172030080410000004003300210000001720020009c00000172020080410000006002200210000000000232019f000001720010009c0000017201008041000000c001100210000000000112019f000000050200002905c405bf0000040f000000010220018f00030000000103550000006001100270000101720010019d0000017203100197000000000003004b000004ea0000c13d0000006001000039000000000002004b000001ca0000c13d0000000001010433000000000001004b000005150000c13d000000400100043d0000018102000041000000000021043500000004021000390000002003000039000000000032043500000006020000290000000002020433000000240310003900000000002304350000004403100039000000000002004b0000000107000029000004790000613d000000000400001900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b000004e20000413d000004790000013d000001760030009c000000f00000213d0000001f013000390000019a011001970000003f011000390000019a04100197000000400100043d0000000004410019000000000014004b00000000050000390000000105004039000001760040009c000000f00000213d0000000100500190000000f00000c13d000000400040043f00000000063104360000019a043001980000001f0530018f000300000006001d00000000034600190000000306000367000005070000613d000000000706034f0000000308000029000000007907043c0000000008980436000000000038004b000005030000c13d000000000005004b000004ce0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000004ce0000013d0000000302000029000001720020009c00000172020080410000004002200210000004890000013d000000000003004b000005240000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b0000051d0000413d00000000012300190000000000010435000000000001042d000001860100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001720010009c0000017201008041000000c00110021000000187011001c7000080050200003905c405ba0000040f0000000100200190000005510000613d000000000101043b00000175011001970000000002000411000000000012004b000005520000c13d000000400100043d00000084021000390000019603000041000000000032043500000064021000390000019703000041000000000032043500000044021000390000019803000041000000000032043500000024021000390000004203000039000000000032043500000181020000410000000000210435000000040210003900000020030000390000000000320435000001720010009c0000017201008041000000400110021000000199011001c7000005c600010430000000000001042f000000020500036700000000010000310000019a041001980000001f0610018f0000017a02000041000000000202041a0000055f0000613d000000000705034f0000000008000019000000007907043c0000000008980436000000000048004b0000055b0000c13d0000017502200197000000000006004b0000056d0000613d000000000545034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004000414000000040020008c000005890000c13d000000030400036700000001010000310000019a021001980000001f0310018f0000057b0000613d000000000504034f0000000006000019000000005705043c0000000006760436000000000026004b000005770000c13d000000000003004b000005ae0000613d000000000424034f0000000303300210000000000502043300000000053501cf000000000535022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000353019f0000000000320435000005ae0000013d000001720010009c00000172010080410000006001100210000001720040009c0000017204008041000000c003400210000000000113019f05c405bf0000040f0003000000010355000000000301001900000060033002700000001f0530018f000101720030019d00000174043001980000059e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000059a0000c13d000000000005004b000005ab0000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000172013001970000000100200190000005b20000613d000001720010009c00000172010080410000006001100210000005c50001042e0000006001100210000005c600010430000000000001042f000005b8002104210000000102000039000000000001042d0000000002000019000000000001042d000005bd002104230000000102000039000000000001042d0000000002000019000000000001042d000005c2002104250000000102000039000000000001042d0000000002000019000000000001042d000005c400000432000005c50001042e000005c600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c08c379a000000000000000000000000000000000000000000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610302000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f0000000200000000000000000000000000000080000001000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000f851a440000000000000000000000000000000000000000000000000000000003659cfe6000000000000000000000000000000000000000000000000000000004f1ef2860000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f00000000000000000000000000000000000000840000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006574000000000000000000000000000000000000000000000000000000000000696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172675472616e73706172656e745570677261646561626c6550726f78793a2061646d00000000000000000000000000000000000000a4000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0",
603
+ "execute": {
604
+ "methodName": "initialize",
605
+ "args": ["0x526159A92A82afE5327d37Ef446b68FD9a5cA914"]
606
+ },
607
+ "implementation": "0x1a1e8b2e095aEaca3Ba2d9bDa0B9Adf855032E89",
608
+ "devdoc": {
609
+ "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.",
610
+ "events": {
611
+ "AdminChanged(address,address)": {
612
+ "details": "Emitted when the admin account has changed."
613
+ },
614
+ "BeaconUpgraded(address)": {
615
+ "details": "Emitted when the beacon is upgraded."
616
+ },
617
+ "Upgraded(address)": {
618
+ "details": "Emitted when the implementation is upgraded."
619
+ }
620
+ },
621
+ "kind": "dev",
622
+ "methods": {
623
+ "admin()": {
624
+ "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`"
625
+ },
626
+ "constructor": {
627
+ "details": "Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}."
628
+ },
629
+ "implementation()": {
630
+ "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`"
631
+ },
632
+ "upgradeTo(address)": {
633
+ "details": "Upgrade the implementation of the proxy. NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}."
634
+ },
635
+ "upgradeToAndCall(address,bytes)": {
636
+ "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}."
637
+ }
638
+ },
639
+ "version": 1
640
+ },
641
+ "userdoc": {
642
+ "kind": "user",
643
+ "methods": {},
644
+ "version": 1
645
+ },
646
+ "storageLayout": {
647
+ "storage": [],
648
+ "types": null
649
+ }
650
+ }