@keep-network/tbtc-v2 1.6.0-dev.17 → 1.6.0-dev.18
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.
- package/artifacts/BLS.json +1 -1
- package/artifacts/Bank.json +2 -2
- package/artifacts/BeaconAuthorization.json +1 -1
- package/artifacts/BeaconDkg.json +1 -1
- package/artifacts/BeaconDkgValidator.json +1 -1
- package/artifacts/BeaconInactivity.json +1 -1
- package/artifacts/BeaconSortitionPool.json +3 -3
- package/artifacts/Bridge.json +5 -5
- package/artifacts/BridgeGovernance.json +2 -2
- package/artifacts/BridgeGovernanceParameters.json +1 -1
- package/artifacts/Deposit.json +1 -1
- package/artifacts/DepositSweep.json +1 -1
- package/artifacts/DonationVault.json +1 -1
- package/artifacts/EcdsaDkgValidator.json +1 -1
- package/artifacts/EcdsaInactivity.json +1 -1
- package/artifacts/EcdsaSortitionPool.json +3 -3
- package/artifacts/Fraud.json +1 -1
- package/artifacts/LightRelay.json +2 -2
- package/artifacts/LightRelayMaintainerProxy.json +2 -2
- package/artifacts/MaintainerProxy.json +2 -2
- package/artifacts/MovingFunds.json +1 -1
- package/artifacts/NuCypherToken.json +2 -2
- package/artifacts/RandomBeacon.json +2 -2
- package/artifacts/RandomBeaconChaosnet.json +2 -2
- package/artifacts/RandomBeaconGovernance.json +2 -2
- package/artifacts/Redemption.json +1 -1
- package/artifacts/ReimbursementPool.json +2 -2
- package/artifacts/T.json +2 -2
- package/artifacts/TBTC.json +2 -2
- package/artifacts/TBTCToken.json +2 -2
- package/artifacts/TBTCVault.json +2 -2
- package/artifacts/TokenStaking.json +1 -1
- package/artifacts/TokenholderGovernor.json +9 -9
- package/artifacts/TokenholderTimelock.json +8 -8
- package/artifacts/VendingMachine.json +2 -2
- package/artifacts/VendingMachineNuCypher.json +1 -1
- package/artifacts/VendingMachineV2.json +2 -2
- package/artifacts/VendingMachineV3.json +2 -2
- package/artifacts/WalletProposalValidator.json +1 -1
- package/artifacts/WalletRegistry.json +5 -5
- package/artifacts/WalletRegistryGovernance.json +2 -2
- package/artifacts/Wallets.json +1 -1
- package/build/contracts/test/BankStub.sol/BankStub.dbg.json +4 -0
- package/build/contracts/test/BankStub.sol/BankStub.json +555 -0
- package/build/contracts/test/BridgeStub.sol/BridgeStub.dbg.json +4 -0
- package/build/contracts/test/BridgeStub.sol/BridgeStub.json +3318 -0
- package/build/contracts/test/HeartbeatStub.sol/HeartbeatStub.dbg.json +4 -0
- package/build/contracts/test/HeartbeatStub.sol/HeartbeatStub.json +30 -0
- package/build/contracts/test/LightRelayStub.sol/LightRelayStub.dbg.json +4 -0
- package/build/contracts/test/LightRelayStub.sol/LightRelayStub.json +467 -0
- package/build/contracts/test/ReceiveApprovalStub.sol/ReceiveApprovalStub.dbg.json +4 -0
- package/build/contracts/test/ReceiveApprovalStub.sol/ReceiveApprovalStub.json +96 -0
- package/build/contracts/test/SepoliaLightRelay.sol/SepoliaLightRelay.dbg.json +4 -0
- package/build/contracts/test/SepoliaLightRelay.sol/SepoliaLightRelay.json +456 -0
- package/build/contracts/test/SystemTestRelay.sol/SystemTestRelay.dbg.json +4 -0
- package/build/contracts/test/SystemTestRelay.sol/SystemTestRelay.json +89 -0
- package/build/contracts/test/TestBitcoinTx.sol/TestBitcoinTx.dbg.json +4 -0
- package/build/contracts/test/TestBitcoinTx.sol/TestBitcoinTx.json +102 -0
- package/build/contracts/test/TestERC20.sol/TestERC20.dbg.json +4 -0
- package/build/contracts/test/TestERC20.sol/TestERC20.json +508 -0
- package/build/contracts/test/TestERC721.sol/TestERC721.dbg.json +4 -0
- package/build/contracts/test/TestERC721.sol/TestERC721.json +390 -0
- package/build/contracts/test/TestEcdsaLib.sol/TestEcdsaLib.dbg.json +4 -0
- package/build/contracts/test/TestEcdsaLib.sol/TestEcdsaLib.json +35 -0
- package/build/contracts/test/TestTBTCDepositor.sol/MockBridge.dbg.json +4 -0
- package/build/contracts/test/TestTBTCDepositor.sol/MockBridge.json +224 -0
- package/build/contracts/test/TestTBTCDepositor.sol/MockTBTCVault.dbg.json +4 -0
- package/build/contracts/test/TestTBTCDepositor.sol/MockTBTCVault.json +87 -0
- package/build/contracts/test/TestTBTCDepositor.sol/TestTBTCDepositor.dbg.json +4 -0
- package/build/contracts/test/TestTBTCDepositor.sol/TestTBTCDepositor.json +283 -0
- package/build/contracts/test/WormholeBridgeStub.sol/WormholeBridgeStub.dbg.json +4 -0
- package/build/contracts/test/WormholeBridgeStub.sol/WormholeBridgeStub.json +372 -0
- package/contracts/test/BankStub.sol +11 -0
- package/contracts/test/BridgeStub.sol +174 -0
- package/contracts/test/HeartbeatStub.sol +16 -0
- package/contracts/test/LightRelayStub.sol +15 -0
- package/contracts/test/ReceiveApprovalStub.sol +33 -0
- package/contracts/test/SepoliaLightRelay.sol +48 -0
- package/contracts/test/SystemTestRelay.sol +57 -0
- package/contracts/test/TestBitcoinTx.sol +24 -0
- package/contracts/test/TestERC20.sol +12 -0
- package/contracts/test/TestERC721.sol +16 -0
- package/contracts/test/TestEcdsaLib.sol +17 -0
- package/contracts/test/TestTBTCDepositor.sol +196 -0
- package/contracts/test/WormholeBridgeStub.sol +125 -0
- package/package.json +1 -2
|
@@ -0,0 +1,508 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "TestERC20",
|
|
4
|
+
"sourceName": "contracts/test/TestERC20.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"stateMutability": "nonpayable",
|
|
9
|
+
"type": "constructor"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"anonymous": false,
|
|
13
|
+
"inputs": [
|
|
14
|
+
{
|
|
15
|
+
"indexed": true,
|
|
16
|
+
"internalType": "address",
|
|
17
|
+
"name": "owner",
|
|
18
|
+
"type": "address"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"indexed": true,
|
|
22
|
+
"internalType": "address",
|
|
23
|
+
"name": "spender",
|
|
24
|
+
"type": "address"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"indexed": false,
|
|
28
|
+
"internalType": "uint256",
|
|
29
|
+
"name": "value",
|
|
30
|
+
"type": "uint256"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"name": "Approval",
|
|
34
|
+
"type": "event"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"anonymous": false,
|
|
38
|
+
"inputs": [
|
|
39
|
+
{
|
|
40
|
+
"indexed": true,
|
|
41
|
+
"internalType": "address",
|
|
42
|
+
"name": "previousOwner",
|
|
43
|
+
"type": "address"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"indexed": true,
|
|
47
|
+
"internalType": "address",
|
|
48
|
+
"name": "newOwner",
|
|
49
|
+
"type": "address"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"name": "OwnershipTransferred",
|
|
53
|
+
"type": "event"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"anonymous": false,
|
|
57
|
+
"inputs": [
|
|
58
|
+
{
|
|
59
|
+
"indexed": true,
|
|
60
|
+
"internalType": "address",
|
|
61
|
+
"name": "from",
|
|
62
|
+
"type": "address"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"indexed": true,
|
|
66
|
+
"internalType": "address",
|
|
67
|
+
"name": "to",
|
|
68
|
+
"type": "address"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"indexed": false,
|
|
72
|
+
"internalType": "uint256",
|
|
73
|
+
"name": "value",
|
|
74
|
+
"type": "uint256"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"name": "Transfer",
|
|
78
|
+
"type": "event"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"inputs": [],
|
|
82
|
+
"name": "DOMAIN_SEPARATOR",
|
|
83
|
+
"outputs": [
|
|
84
|
+
{
|
|
85
|
+
"internalType": "bytes32",
|
|
86
|
+
"name": "",
|
|
87
|
+
"type": "bytes32"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"stateMutability": "view",
|
|
91
|
+
"type": "function"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"inputs": [],
|
|
95
|
+
"name": "NAME",
|
|
96
|
+
"outputs": [
|
|
97
|
+
{
|
|
98
|
+
"internalType": "string",
|
|
99
|
+
"name": "",
|
|
100
|
+
"type": "string"
|
|
101
|
+
}
|
|
102
|
+
],
|
|
103
|
+
"stateMutability": "view",
|
|
104
|
+
"type": "function"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"inputs": [],
|
|
108
|
+
"name": "PERMIT_TYPEHASH",
|
|
109
|
+
"outputs": [
|
|
110
|
+
{
|
|
111
|
+
"internalType": "bytes32",
|
|
112
|
+
"name": "",
|
|
113
|
+
"type": "bytes32"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"stateMutability": "view",
|
|
117
|
+
"type": "function"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"inputs": [],
|
|
121
|
+
"name": "SYMBOL",
|
|
122
|
+
"outputs": [
|
|
123
|
+
{
|
|
124
|
+
"internalType": "string",
|
|
125
|
+
"name": "",
|
|
126
|
+
"type": "string"
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"stateMutability": "view",
|
|
130
|
+
"type": "function"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"inputs": [
|
|
134
|
+
{
|
|
135
|
+
"internalType": "address",
|
|
136
|
+
"name": "",
|
|
137
|
+
"type": "address"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"internalType": "address",
|
|
141
|
+
"name": "",
|
|
142
|
+
"type": "address"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"name": "allowance",
|
|
146
|
+
"outputs": [
|
|
147
|
+
{
|
|
148
|
+
"internalType": "uint256",
|
|
149
|
+
"name": "",
|
|
150
|
+
"type": "uint256"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"stateMutability": "view",
|
|
154
|
+
"type": "function"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"inputs": [
|
|
158
|
+
{
|
|
159
|
+
"internalType": "address",
|
|
160
|
+
"name": "spender",
|
|
161
|
+
"type": "address"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"internalType": "uint256",
|
|
165
|
+
"name": "amount",
|
|
166
|
+
"type": "uint256"
|
|
167
|
+
}
|
|
168
|
+
],
|
|
169
|
+
"name": "approve",
|
|
170
|
+
"outputs": [
|
|
171
|
+
{
|
|
172
|
+
"internalType": "bool",
|
|
173
|
+
"name": "",
|
|
174
|
+
"type": "bool"
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"stateMutability": "nonpayable",
|
|
178
|
+
"type": "function"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"inputs": [
|
|
182
|
+
{
|
|
183
|
+
"internalType": "address",
|
|
184
|
+
"name": "spender",
|
|
185
|
+
"type": "address"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"internalType": "uint256",
|
|
189
|
+
"name": "amount",
|
|
190
|
+
"type": "uint256"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"internalType": "bytes",
|
|
194
|
+
"name": "extraData",
|
|
195
|
+
"type": "bytes"
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"name": "approveAndCall",
|
|
199
|
+
"outputs": [
|
|
200
|
+
{
|
|
201
|
+
"internalType": "bool",
|
|
202
|
+
"name": "",
|
|
203
|
+
"type": "bool"
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"stateMutability": "nonpayable",
|
|
207
|
+
"type": "function"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"inputs": [
|
|
211
|
+
{
|
|
212
|
+
"internalType": "address",
|
|
213
|
+
"name": "",
|
|
214
|
+
"type": "address"
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"name": "balanceOf",
|
|
218
|
+
"outputs": [
|
|
219
|
+
{
|
|
220
|
+
"internalType": "uint256",
|
|
221
|
+
"name": "",
|
|
222
|
+
"type": "uint256"
|
|
223
|
+
}
|
|
224
|
+
],
|
|
225
|
+
"stateMutability": "view",
|
|
226
|
+
"type": "function"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"inputs": [
|
|
230
|
+
{
|
|
231
|
+
"internalType": "uint256",
|
|
232
|
+
"name": "amount",
|
|
233
|
+
"type": "uint256"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"name": "burn",
|
|
237
|
+
"outputs": [],
|
|
238
|
+
"stateMutability": "nonpayable",
|
|
239
|
+
"type": "function"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"inputs": [
|
|
243
|
+
{
|
|
244
|
+
"internalType": "address",
|
|
245
|
+
"name": "account",
|
|
246
|
+
"type": "address"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"internalType": "uint256",
|
|
250
|
+
"name": "amount",
|
|
251
|
+
"type": "uint256"
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"name": "burnFrom",
|
|
255
|
+
"outputs": [],
|
|
256
|
+
"stateMutability": "nonpayable",
|
|
257
|
+
"type": "function"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"inputs": [],
|
|
261
|
+
"name": "cachedChainId",
|
|
262
|
+
"outputs": [
|
|
263
|
+
{
|
|
264
|
+
"internalType": "uint256",
|
|
265
|
+
"name": "",
|
|
266
|
+
"type": "uint256"
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"stateMutability": "view",
|
|
270
|
+
"type": "function"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"inputs": [],
|
|
274
|
+
"name": "cachedDomainSeparator",
|
|
275
|
+
"outputs": [
|
|
276
|
+
{
|
|
277
|
+
"internalType": "bytes32",
|
|
278
|
+
"name": "",
|
|
279
|
+
"type": "bytes32"
|
|
280
|
+
}
|
|
281
|
+
],
|
|
282
|
+
"stateMutability": "view",
|
|
283
|
+
"type": "function"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"inputs": [],
|
|
287
|
+
"name": "decimals",
|
|
288
|
+
"outputs": [
|
|
289
|
+
{
|
|
290
|
+
"internalType": "uint8",
|
|
291
|
+
"name": "",
|
|
292
|
+
"type": "uint8"
|
|
293
|
+
}
|
|
294
|
+
],
|
|
295
|
+
"stateMutability": "view",
|
|
296
|
+
"type": "function"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"inputs": [
|
|
300
|
+
{
|
|
301
|
+
"internalType": "address",
|
|
302
|
+
"name": "recipient",
|
|
303
|
+
"type": "address"
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"internalType": "uint256",
|
|
307
|
+
"name": "amount",
|
|
308
|
+
"type": "uint256"
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"name": "mint",
|
|
312
|
+
"outputs": [],
|
|
313
|
+
"stateMutability": "nonpayable",
|
|
314
|
+
"type": "function"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"inputs": [],
|
|
318
|
+
"name": "name",
|
|
319
|
+
"outputs": [
|
|
320
|
+
{
|
|
321
|
+
"internalType": "string",
|
|
322
|
+
"name": "",
|
|
323
|
+
"type": "string"
|
|
324
|
+
}
|
|
325
|
+
],
|
|
326
|
+
"stateMutability": "view",
|
|
327
|
+
"type": "function"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"inputs": [
|
|
331
|
+
{
|
|
332
|
+
"internalType": "address",
|
|
333
|
+
"name": "",
|
|
334
|
+
"type": "address"
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
"name": "nonce",
|
|
338
|
+
"outputs": [
|
|
339
|
+
{
|
|
340
|
+
"internalType": "uint256",
|
|
341
|
+
"name": "",
|
|
342
|
+
"type": "uint256"
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"stateMutability": "view",
|
|
346
|
+
"type": "function"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"inputs": [],
|
|
350
|
+
"name": "owner",
|
|
351
|
+
"outputs": [
|
|
352
|
+
{
|
|
353
|
+
"internalType": "address",
|
|
354
|
+
"name": "",
|
|
355
|
+
"type": "address"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"stateMutability": "view",
|
|
359
|
+
"type": "function"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"inputs": [
|
|
363
|
+
{
|
|
364
|
+
"internalType": "address",
|
|
365
|
+
"name": "owner",
|
|
366
|
+
"type": "address"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"internalType": "address",
|
|
370
|
+
"name": "spender",
|
|
371
|
+
"type": "address"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"internalType": "uint256",
|
|
375
|
+
"name": "amount",
|
|
376
|
+
"type": "uint256"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"internalType": "uint256",
|
|
380
|
+
"name": "deadline",
|
|
381
|
+
"type": "uint256"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"internalType": "uint8",
|
|
385
|
+
"name": "v",
|
|
386
|
+
"type": "uint8"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"internalType": "bytes32",
|
|
390
|
+
"name": "r",
|
|
391
|
+
"type": "bytes32"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"internalType": "bytes32",
|
|
395
|
+
"name": "s",
|
|
396
|
+
"type": "bytes32"
|
|
397
|
+
}
|
|
398
|
+
],
|
|
399
|
+
"name": "permit",
|
|
400
|
+
"outputs": [],
|
|
401
|
+
"stateMutability": "nonpayable",
|
|
402
|
+
"type": "function"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"inputs": [],
|
|
406
|
+
"name": "renounceOwnership",
|
|
407
|
+
"outputs": [],
|
|
408
|
+
"stateMutability": "nonpayable",
|
|
409
|
+
"type": "function"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"inputs": [],
|
|
413
|
+
"name": "symbol",
|
|
414
|
+
"outputs": [
|
|
415
|
+
{
|
|
416
|
+
"internalType": "string",
|
|
417
|
+
"name": "",
|
|
418
|
+
"type": "string"
|
|
419
|
+
}
|
|
420
|
+
],
|
|
421
|
+
"stateMutability": "view",
|
|
422
|
+
"type": "function"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"inputs": [],
|
|
426
|
+
"name": "totalSupply",
|
|
427
|
+
"outputs": [
|
|
428
|
+
{
|
|
429
|
+
"internalType": "uint256",
|
|
430
|
+
"name": "",
|
|
431
|
+
"type": "uint256"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"stateMutability": "view",
|
|
435
|
+
"type": "function"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"inputs": [
|
|
439
|
+
{
|
|
440
|
+
"internalType": "address",
|
|
441
|
+
"name": "recipient",
|
|
442
|
+
"type": "address"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"internalType": "uint256",
|
|
446
|
+
"name": "amount",
|
|
447
|
+
"type": "uint256"
|
|
448
|
+
}
|
|
449
|
+
],
|
|
450
|
+
"name": "transfer",
|
|
451
|
+
"outputs": [
|
|
452
|
+
{
|
|
453
|
+
"internalType": "bool",
|
|
454
|
+
"name": "",
|
|
455
|
+
"type": "bool"
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"stateMutability": "nonpayable",
|
|
459
|
+
"type": "function"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"inputs": [
|
|
463
|
+
{
|
|
464
|
+
"internalType": "address",
|
|
465
|
+
"name": "spender",
|
|
466
|
+
"type": "address"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"internalType": "address",
|
|
470
|
+
"name": "recipient",
|
|
471
|
+
"type": "address"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"internalType": "uint256",
|
|
475
|
+
"name": "amount",
|
|
476
|
+
"type": "uint256"
|
|
477
|
+
}
|
|
478
|
+
],
|
|
479
|
+
"name": "transferFrom",
|
|
480
|
+
"outputs": [
|
|
481
|
+
{
|
|
482
|
+
"internalType": "bool",
|
|
483
|
+
"name": "",
|
|
484
|
+
"type": "bool"
|
|
485
|
+
}
|
|
486
|
+
],
|
|
487
|
+
"stateMutability": "nonpayable",
|
|
488
|
+
"type": "function"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"inputs": [
|
|
492
|
+
{
|
|
493
|
+
"internalType": "address",
|
|
494
|
+
"name": "newOwner",
|
|
495
|
+
"type": "address"
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"name": "transferOwnership",
|
|
499
|
+
"outputs": [],
|
|
500
|
+
"stateMutability": "nonpayable",
|
|
501
|
+
"type": "function"
|
|
502
|
+
}
|
|
503
|
+
],
|
|
504
|
+
"bytecode": "0x60c06040523480156200001157600080fd5b506040518060400160405280601081526020016f2a32b9ba1022a9219918102a37b5b2b760811b81525060405180604001604052806002815260200161151560f21b815250620000706200006a620000a860201b60201c565b620000ac565b60056200007e838262000252565b5060066200008d828262000252565b50466080526200009c620000fc565b60a052506200039c9050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60056040516200013091906200031e565b60408051918290038220828201825260018352603160f81b6020938401528151928301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001d857607f821691505b602082108103620001f957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024d57600081815260208120601f850160051c81016020861015620002285750805b601f850160051c820191505b81811015620002495782815560010162000234565b5050505b505050565b81516001600160401b038111156200026e576200026e620001ad565b62000286816200027f8454620001c3565b84620001ff565b602080601f831160018114620002be5760008415620002a55750858301515b600019600386901b1c1916600185901b17855562000249565b600085815260208120601f198616915b82811015620002ef57888601518255948401946001909101908401620002ce565b50858210156200030e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008083546200032e81620001c3565b600182811680156200034957600181146200035f5762000390565b60ff198416875282151583028701945062000390565b8760005260208060002060005b85811015620003875781548a8201529084019082016200036c565b50505082870194505b50929695505050505050565b60805160a0516115bf620003d06000396000818161037201526105d90152600081816102c601526105b101526115bf6000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c8063771da5c5116100e3578063b4f94b2e1161008c578063dd62ed3e11610066578063dd62ed3e146103ba578063f2fde38b146103e5578063f76f8d78146103f857600080fd5b8063b4f94b2e1461036d578063cae9ca5114610394578063d505accf146103a757600080fd5b806395d89b41116100bd57806395d89b4114610316578063a3f4df7e1461031e578063a9059cbb1461035a57600080fd5b8063771da5c5146102c157806379cc6790146102e85780638da5cb5b146102fb57600080fd5b80633644e5151161014557806370a082311161011f57806370a082311461027957806370ae92d214610299578063715018a6146102b957600080fd5b80633644e5151461024957806340c10f191461025157806342966c681461026657600080fd5b806323b872dd1161017657806323b872dd146101f557806330adf81f14610208578063313ce5671461022f57600080fd5b806306fdde031461019d578063095ea7b3146101bb57806318160ddd146101de575b600080fd5b6101a5610434565b6040516101b291906111cf565b60405180910390f35b6101ce6101c93660046111fe565b6104c2565b60405190151581526020016101b2565b6101e760045481565b6040519081526020016101b2565b6101ce610203366004611228565b6104d9565b6101e77f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b610237601281565b60405160ff90911681526020016101b2565b6101e76105ad565b61026461025f3660046111fe565b610608565b005b610264610274366004611264565b6106ef565b6101e761028736600461127d565b60016020526000908152604090205481565b6101e76102a736600461127d565b60036020526000908152604090205481565b6102646106fc565b6101e77f000000000000000000000000000000000000000000000000000000000000000081565b6102646102f63660046111fe565b610710565b6000546040516001600160a01b0390911681526020016101b2565b6101a56107ab565b6101a56040518060400160405280601081526020017f5465737420455243323020546f6b656e0000000000000000000000000000000081525081565b6101ce6103683660046111fe565b6107b8565b6101e77f000000000000000000000000000000000000000000000000000000000000000081565b6101ce6103a23660046112ae565b6107c5565b6102646103b5366004611379565b610866565b6101e76103c83660046113ec565b600260209081526000928352604080842090915290825290205481565b6102646103f336600461127d565b610b76565b6101a56040518060400160405280600281526020017f545400000000000000000000000000000000000000000000000000000000000081525081565b600580546104419061141f565b80601f016020809104026020016040519081016040528092919081815260200182805461046d9061141f565b80156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b505050505081565b60006104cf338484610c03565b5060015b92915050565b6001600160a01b0383166000908152600260209081526040808320338452909152812054600019811461059557828110156105815760405162461bcd60e51b815260206004820152602160248201527f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6360448201527f650000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105958533610590868561146f565b610c03565b6105a0858585610d11565b60019150505b9392505050565b60007f000000000000000000000000000000000000000000000000000000000000000046036105fb57507f000000000000000000000000000000000000000000000000000000000000000090565b610603610f18565b905090565b610610610fe3565b6001600160a01b0382166106665760405162461bcd60e51b815260206004820152601860248201527f4d696e7420746f20746865207a65726f206164647265737300000000000000006044820152606401610578565b80600460008282546106789190611482565b90915550506001600160a01b038216600090815260016020526040812080548392906106a5908490611482565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6106f9338261103d565b50565b610704610fe3565b61070e6000611121565b565b6001600160a01b0382166000908152600260209081526040808320338452909152902054600019811461079c578181101561078d5760405162461bcd60e51b815260206004820152601d60248201527f4275726e20616d6f756e74206578636565647320616c6c6f77616e63650000006044820152606401610578565b61079c8333610590858561146f565b6107a6838361103d565b505050565b600680546104419061141f565b60006104cf338484610d11565b60006107d184846104c2565b1561085c576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081526001600160a01b03851690638f4ffcb190610821903390879030908890600401611495565b600060405180830381600087803b15801561083b57600080fd5b505af115801561084f573d6000803e3d6000fd5b50505050600190506105a6565b5060009392505050565b428410156108b65760405162461bcd60e51b815260206004820152601260248201527f5065726d697373696f6e206578706972656400000000000000000000000000006044820152606401610578565b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08111156109265760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964207369676e6174757265202773272076616c756500000000006044820152606401610578565b8260ff16601b148061093b57508260ff16601c145b6109875760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964207369676e6174757265202776272076616c756500000000006044820152606401610578565b60006109916105ad565b6001600160a01b038916600090815260036020526040812080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928c928c928c929091906109df836114d1565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e00160405160208183030381529060405280519060200120604051602001610a739291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa158015610ade573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590610b145750886001600160a01b0316816001600160a01b0316145b610b605760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964207369676e61747572650000000000000000000000000000006044820152606401610578565b610b6b898989610c03565b505050505050505050565b610b7e610fe3565b6001600160a01b038116610bfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610578565b6106f981611121565b6001600160a01b038316610c595760405162461bcd60e51b815260206004820152601d60248201527f417070726f76652066726f6d20746865207a65726f20616464726573730000006044820152606401610578565b6001600160a01b038216610caf5760405162461bcd60e51b815260206004820152601b60248201527f417070726f766520746f20746865207a65726f206164647265737300000000006044820152606401610578565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d675760405162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f206164647265737300006044820152606401610578565b6001600160a01b038216610dbd5760405162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610578565b306001600160a01b03831603610e155760405162461bcd60e51b815260206004820152601d60248201527f5472616e7366657220746f2074686520746f6b656e20616464726573730000006044820152606401610578565b6001600160a01b03831660009081526001602052604090205481811015610e7e5760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220616d6f756e7420657863656564732062616c616e6365006044820152606401610578565b610e88828261146f565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610ebe908490611482565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0a91815260200190565b60405180910390a350505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6005604051610f4a91906114ea565b604080519182900382208282018252600183527f31000000000000000000000000000000000000000000000000000000000000006020938401528151928301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6000546001600160a01b0316331461070e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610578565b6001600160a01b038216600090815260016020526040902054818110156110a65760405162461bcd60e51b815260206004820152601b60248201527f4275726e20616d6f756e7420657863656564732062616c616e636500000000006044820152606401610578565b6110b0828261146f565b6001600160a01b038416600090815260016020526040812091909155600480548492906110de90849061146f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d04565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000815180845260005b818110156111af57602081850181015186830182015201611193565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006105a66020830184611189565b80356001600160a01b03811681146111f957600080fd5b919050565b6000806040838503121561121157600080fd5b61121a836111e2565b946020939093013593505050565b60008060006060848603121561123d57600080fd5b611246846111e2565b9250611254602085016111e2565b9150604084013590509250925092565b60006020828403121561127657600080fd5b5035919050565b60006020828403121561128f57600080fd5b6105a6826111e2565b634e487b7160e01b600052604160045260246000fd5b6000806000606084860312156112c357600080fd5b6112cc846111e2565b925060208401359150604084013567ffffffffffffffff808211156112f057600080fd5b818601915086601f83011261130457600080fd5b81358181111561131657611316611298565b604051601f8201601f19908116603f0116810190838211818310171561133e5761133e611298565b8160405282815289602084870101111561135757600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b600080600080600080600060e0888a03121561139457600080fd5b61139d886111e2565b96506113ab602089016111e2565b95506040880135945060608801359350608088013560ff811681146113cf57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156113ff57600080fd5b611408836111e2565b9150611416602084016111e2565b90509250929050565b600181811c9082168061143357607f821691505b60208210810361145357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156104d3576104d3611459565b808201808211156104d3576104d3611459565b60006001600160a01b038087168352856020840152808516604084015250608060608301526114c76080830184611189565b9695505050505050565b6000600182016114e3576114e3611459565b5060010190565b600080835481600182811c91508083168061150657607f831692505b6020808410820361152557634e487b7160e01b86526022600452602486fd5b818015611539576001811461154e5761157b565b60ff198616895284151585028901965061157b565b60008a81526020902060005b868110156115735781548b82015290850190830161155a565b505084890196505b50949897505050505050505056fea26469706673582212203ad4199b89f2dda373b64033cd5123d812c97c07bbb2c7c071d1c4de71a9e82664736f6c63430008110033",
|
|
505
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101985760003560e01c8063771da5c5116100e3578063b4f94b2e1161008c578063dd62ed3e11610066578063dd62ed3e146103ba578063f2fde38b146103e5578063f76f8d78146103f857600080fd5b8063b4f94b2e1461036d578063cae9ca5114610394578063d505accf146103a757600080fd5b806395d89b41116100bd57806395d89b4114610316578063a3f4df7e1461031e578063a9059cbb1461035a57600080fd5b8063771da5c5146102c157806379cc6790146102e85780638da5cb5b146102fb57600080fd5b80633644e5151161014557806370a082311161011f57806370a082311461027957806370ae92d214610299578063715018a6146102b957600080fd5b80633644e5151461024957806340c10f191461025157806342966c681461026657600080fd5b806323b872dd1161017657806323b872dd146101f557806330adf81f14610208578063313ce5671461022f57600080fd5b806306fdde031461019d578063095ea7b3146101bb57806318160ddd146101de575b600080fd5b6101a5610434565b6040516101b291906111cf565b60405180910390f35b6101ce6101c93660046111fe565b6104c2565b60405190151581526020016101b2565b6101e760045481565b6040519081526020016101b2565b6101ce610203366004611228565b6104d9565b6101e77f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b610237601281565b60405160ff90911681526020016101b2565b6101e76105ad565b61026461025f3660046111fe565b610608565b005b610264610274366004611264565b6106ef565b6101e761028736600461127d565b60016020526000908152604090205481565b6101e76102a736600461127d565b60036020526000908152604090205481565b6102646106fc565b6101e77f000000000000000000000000000000000000000000000000000000000000000081565b6102646102f63660046111fe565b610710565b6000546040516001600160a01b0390911681526020016101b2565b6101a56107ab565b6101a56040518060400160405280601081526020017f5465737420455243323020546f6b656e0000000000000000000000000000000081525081565b6101ce6103683660046111fe565b6107b8565b6101e77f000000000000000000000000000000000000000000000000000000000000000081565b6101ce6103a23660046112ae565b6107c5565b6102646103b5366004611379565b610866565b6101e76103c83660046113ec565b600260209081526000928352604080842090915290825290205481565b6102646103f336600461127d565b610b76565b6101a56040518060400160405280600281526020017f545400000000000000000000000000000000000000000000000000000000000081525081565b600580546104419061141f565b80601f016020809104026020016040519081016040528092919081815260200182805461046d9061141f565b80156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b505050505081565b60006104cf338484610c03565b5060015b92915050565b6001600160a01b0383166000908152600260209081526040808320338452909152812054600019811461059557828110156105815760405162461bcd60e51b815260206004820152602160248201527f5472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6360448201527f650000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105958533610590868561146f565b610c03565b6105a0858585610d11565b60019150505b9392505050565b60007f000000000000000000000000000000000000000000000000000000000000000046036105fb57507f000000000000000000000000000000000000000000000000000000000000000090565b610603610f18565b905090565b610610610fe3565b6001600160a01b0382166106665760405162461bcd60e51b815260206004820152601860248201527f4d696e7420746f20746865207a65726f206164647265737300000000000000006044820152606401610578565b80600460008282546106789190611482565b90915550506001600160a01b038216600090815260016020526040812080548392906106a5908490611482565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6106f9338261103d565b50565b610704610fe3565b61070e6000611121565b565b6001600160a01b0382166000908152600260209081526040808320338452909152902054600019811461079c578181101561078d5760405162461bcd60e51b815260206004820152601d60248201527f4275726e20616d6f756e74206578636565647320616c6c6f77616e63650000006044820152606401610578565b61079c8333610590858561146f565b6107a6838361103d565b505050565b600680546104419061141f565b60006104cf338484610d11565b60006107d184846104c2565b1561085c576040517f8f4ffcb10000000000000000000000000000000000000000000000000000000081526001600160a01b03851690638f4ffcb190610821903390879030908890600401611495565b600060405180830381600087803b15801561083b57600080fd5b505af115801561084f573d6000803e3d6000fd5b50505050600190506105a6565b5060009392505050565b428410156108b65760405162461bcd60e51b815260206004820152601260248201527f5065726d697373696f6e206578706972656400000000000000000000000000006044820152606401610578565b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08111156109265760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964207369676e6174757265202773272076616c756500000000006044820152606401610578565b8260ff16601b148061093b57508260ff16601c145b6109875760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964207369676e6174757265202776272076616c756500000000006044820152606401610578565b60006109916105ad565b6001600160a01b038916600090815260036020526040812080547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928c928c928c929091906109df836114d1565b909155506040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810187905260e00160405160208183030381529060405280519060200120604051602001610a739291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa158015610ade573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590610b145750886001600160a01b0316816001600160a01b0316145b610b605760405162461bcd60e51b815260206004820152601160248201527f496e76616c6964207369676e61747572650000000000000000000000000000006044820152606401610578565b610b6b898989610c03565b505050505050505050565b610b7e610fe3565b6001600160a01b038116610bfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610578565b6106f981611121565b6001600160a01b038316610c595760405162461bcd60e51b815260206004820152601d60248201527f417070726f76652066726f6d20746865207a65726f20616464726573730000006044820152606401610578565b6001600160a01b038216610caf5760405162461bcd60e51b815260206004820152601b60248201527f417070726f766520746f20746865207a65726f206164647265737300000000006044820152606401610578565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d675760405162461bcd60e51b815260206004820152601e60248201527f5472616e736665722066726f6d20746865207a65726f206164647265737300006044820152606401610578565b6001600160a01b038216610dbd5760405162461bcd60e51b815260206004820152601c60248201527f5472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610578565b306001600160a01b03831603610e155760405162461bcd60e51b815260206004820152601d60248201527f5472616e7366657220746f2074686520746f6b656e20616464726573730000006044820152606401610578565b6001600160a01b03831660009081526001602052604090205481811015610e7e5760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220616d6f756e7420657863656564732062616c616e6365006044820152606401610578565b610e88828261146f565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610ebe908490611482565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0a91815260200190565b60405180910390a350505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6005604051610f4a91906114ea565b604080519182900382208282018252600183527f31000000000000000000000000000000000000000000000000000000000000006020938401528151928301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6000546001600160a01b0316331461070e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610578565b6001600160a01b038216600090815260016020526040902054818110156110a65760405162461bcd60e51b815260206004820152601b60248201527f4275726e20616d6f756e7420657863656564732062616c616e636500000000006044820152606401610578565b6110b0828261146f565b6001600160a01b038416600090815260016020526040812091909155600480548492906110de90849061146f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d04565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000815180845260005b818110156111af57602081850181015186830182015201611193565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006105a66020830184611189565b80356001600160a01b03811681146111f957600080fd5b919050565b6000806040838503121561121157600080fd5b61121a836111e2565b946020939093013593505050565b60008060006060848603121561123d57600080fd5b611246846111e2565b9250611254602085016111e2565b9150604084013590509250925092565b60006020828403121561127657600080fd5b5035919050565b60006020828403121561128f57600080fd5b6105a6826111e2565b634e487b7160e01b600052604160045260246000fd5b6000806000606084860312156112c357600080fd5b6112cc846111e2565b925060208401359150604084013567ffffffffffffffff808211156112f057600080fd5b818601915086601f83011261130457600080fd5b81358181111561131657611316611298565b604051601f8201601f19908116603f0116810190838211818310171561133e5761133e611298565b8160405282815289602084870101111561135757600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b600080600080600080600060e0888a03121561139457600080fd5b61139d886111e2565b96506113ab602089016111e2565b95506040880135945060608801359350608088013560ff811681146113cf57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156113ff57600080fd5b611408836111e2565b9150611416602084016111e2565b90509250929050565b600181811c9082168061143357607f821691505b60208210810361145357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156104d3576104d3611459565b808201808211156104d3576104d3611459565b60006001600160a01b038087168352856020840152808516604084015250608060608301526114c76080830184611189565b9695505050505050565b6000600182016114e3576114e3611459565b5060010190565b600080835481600182811c91508083168061150657607f831692505b6020808410820361152557634e487b7160e01b86526022600452602486fd5b818015611539576001811461154e5761157b565b60ff198616895284151585028901965061157b565b60008a81526020902060005b868110156115735781548b82015290850190830161155a565b505084890196505b50949897505050505050505056fea26469706673582212203ad4199b89f2dda373b64033cd5123d812c97c07bbb2c7c071d1c4de71a9e82664736f6c63430008110033",
|
|
506
|
+
"linkReferences": {},
|
|
507
|
+
"deployedLinkReferences": {}
|
|
508
|
+
}
|