@0xweb/hardhat 0.1.33 → 0.1.35
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/0xc/hardhat/Foo/Foo.ts +208 -0
- package/0xc/hardhat/Foo/FooAbi.json +65 -0
- package/0xweb.json +16 -0
- package/artifacts/build-info/f08f51dc3e6d3a77890a34978a710186.json +1 -0
- package/cache/solidity-files-cache.json +40 -0
- package/coverage/report/base.css +213 -0
- package/coverage/report/coverage/Foo.sol.html +125 -0
- package/coverage/report/coverage/index.html +93 -0
- package/coverage/report/coverage-final.json +2 -0
- package/coverage/report/index.html +93 -0
- package/coverage/report/lcov-report/base.css +213 -0
- package/coverage/report/lcov-report/coverage/Foo.sol.html +125 -0
- package/coverage/report/lcov-report/coverage/index.html +93 -0
- package/coverage/report/lcov-report/index.html +93 -0
- package/coverage/report/lcov-report/prettify.css +1 -0
- package/coverage/report/lcov-report/prettify.js +1 -0
- package/coverage/report/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/report/lcov-report/sorter.js +158 -0
- package/coverage/report/lcov.info +23 -0
- package/coverage/report/prettify.css +1 -0
- package/coverage/report/prettify.js +1 -0
- package/coverage/report/sort-arrow-sprite.png +0 -0
- package/coverage/report/sorter.js +158 -0
- package/coverage.json +1 -0
- package/hardhat.config.js +29 -0
- package/lib/index.js +1845 -3
- package/package.json +8 -3
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AUTO-Generated Class: 2025-12-04 11:01
|
|
3
|
+
* Implementation: coverage/contracts/test/fixtures/coverage/Foo.sol
|
|
4
|
+
*/
|
|
5
|
+
import di from 'a-di';
|
|
6
|
+
import { TAddress } from 'dequanto/models/TAddress';
|
|
7
|
+
import { TAccount } from 'dequanto/models/TAccount';
|
|
8
|
+
import { TBufferLike } from 'dequanto/models/TBufferLike';
|
|
9
|
+
import { ClientEventsStream, TClientEventsStreamData } from 'dequanto/clients/ClientEventsStream';
|
|
10
|
+
import { ContractBase } from 'dequanto/contracts/ContractBase';
|
|
11
|
+
import { ContractBaseUtils } from 'dequanto/contracts/utils/ContractBaseUtils';
|
|
12
|
+
import { ContractStorageReaderBase } from 'dequanto/contracts/ContractStorageReaderBase';
|
|
13
|
+
import { TxWriter } from 'dequanto/txs/TxWriter';
|
|
14
|
+
import { ITxLogItem } from 'dequanto/txs/receipt/ITxLogItem';
|
|
15
|
+
import { Web3Client } from 'dequanto/clients/Web3Client';
|
|
16
|
+
import { IBlockchainExplorer } from 'dequanto/explorer/IBlockchainExplorer';
|
|
17
|
+
import { SubjectStream } from 'dequanto/class/SubjectStream';
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
import type { ContractWriter } from 'dequanto/contracts/ContractWriter';
|
|
21
|
+
import type { TAbiItem } from 'dequanto/types/TAbi';
|
|
22
|
+
import type { TEth } from 'dequanto/models/TEth';
|
|
23
|
+
import type { TOverrideReturns } from 'dequanto/utils/types';
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
import { Etherscan } from 'dequanto/explorer/Etherscan';
|
|
27
|
+
import { HardhatWeb3Client } from 'dequanto/hardhat/HardhatWeb3Client';
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
export class Foo extends ContractBase {
|
|
32
|
+
constructor(
|
|
33
|
+
public address: TEth.Address = null,
|
|
34
|
+
public client: Web3Client = di.resolve(HardhatWeb3Client, ),
|
|
35
|
+
public explorer: IBlockchainExplorer = di.resolve(Etherscan, ),
|
|
36
|
+
) {
|
|
37
|
+
super(address, client, explorer)
|
|
38
|
+
|
|
39
|
+
this.storage = new FooStorageReader(this.address, this.client, this.explorer);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
Types: TFooTypes;
|
|
43
|
+
|
|
44
|
+
$meta = {
|
|
45
|
+
"artifact": "artifacts/coverage/contracts/test/fixtures/coverage/Foo.sol/Foo.json",
|
|
46
|
+
"class": "./0xc/hardhat/Foo/Foo.ts"
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
async $constructor (deployer: TSender, _name: string): Promise<TxWriter> {
|
|
50
|
+
throw new Error('Not implemented. Typing purpose. Use the ContractDeployer class to deploy the contract');
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// 0x17d7de7c
|
|
54
|
+
async getName (): Promise<string> {
|
|
55
|
+
return this.$read(this.$getAbiItem('function', 'getName'));
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// 0x06fdde03
|
|
59
|
+
async name (): Promise<string> {
|
|
60
|
+
return this.$read(this.$getAbiItem('function', 'name'));
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// 0xc47f0027
|
|
64
|
+
async setName (sender: TSender, _name: string): Promise<TxWriter> {
|
|
65
|
+
return this.$write(this.$getAbiItem('function', 'setName'), sender, _name);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
$call () {
|
|
69
|
+
return super.$call() as IFooTxCaller;
|
|
70
|
+
}
|
|
71
|
+
$signed (): TOverrideReturns<IFooTxCaller, Promise<{ signed: TEth.Hex, error?: Error & { data?: { type: string, params } } }>> {
|
|
72
|
+
return super.$signed() as any;
|
|
73
|
+
}
|
|
74
|
+
$data (): IFooTxData {
|
|
75
|
+
return super.$data() as IFooTxData;
|
|
76
|
+
}
|
|
77
|
+
$gas (): TOverrideReturns<IFooTxCaller, Promise<{ gas?: bigint, price?: bigint, error?: Error & { data?: { type: string, params } } }>> {
|
|
78
|
+
return super.$gas() as any;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
onTransaction <TMethod extends keyof TFooTypes['Methods']> (method: TMethod, options: Parameters<ContractBase['$onTransaction']>[0]): SubjectStream<{
|
|
82
|
+
tx: TEth.Tx
|
|
83
|
+
block: TEth.Block<TEth.Hex>
|
|
84
|
+
calldata: {
|
|
85
|
+
method: TMethod
|
|
86
|
+
arguments: TFooTypes['Methods'][TMethod]['arguments']
|
|
87
|
+
}
|
|
88
|
+
}> {
|
|
89
|
+
options ??= {};
|
|
90
|
+
options.filter ??= {};
|
|
91
|
+
options.filter.method = method;
|
|
92
|
+
return <any> this.$onTransaction(options);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
onLog (event: keyof TEvents, cb?: (event: TClientEventsStreamData) => void): ClientEventsStream<TClientEventsStreamData> {
|
|
96
|
+
return this.$onLog(event, cb);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
async getPastLogs <TEventName extends keyof TEvents> (
|
|
100
|
+
events: TEventName[]
|
|
101
|
+
, options?: TEventLogOptions<TEventParams<TEventName>>
|
|
102
|
+
): Promise<ITxLogItem<TEventParams<TEventName>, TEventName>[]>
|
|
103
|
+
async getPastLogs <TEventName extends keyof TEvents> (
|
|
104
|
+
event: TEventName
|
|
105
|
+
, options?: TEventLogOptions<TEventParams<TEventName>>
|
|
106
|
+
): Promise<ITxLogItem<TEventParams<TEventName>, TEventName>[]>
|
|
107
|
+
async getPastLogs (mix: any, options?): Promise<any> {
|
|
108
|
+
return await super.getPastLogs(mix, options) as any;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
onUpdated (fn?: (event: TClientEventsStreamData<TEventArguments<'Updated'>>) => void): ClientEventsStream<TClientEventsStreamData<TEventArguments<'Updated'>>> {
|
|
112
|
+
return this.$onLog('Updated', fn);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
extractLogsUpdated (tx: TEth.TxReceipt): ITxLogItem<TEventParams<'Updated'>>[] {
|
|
116
|
+
let abi = this.$getAbiItem('event', 'Updated');
|
|
117
|
+
return this.$extractLogs(tx, abi) as any as ITxLogItem<TEventParams<'Updated'>>[];
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
async getPastLogsUpdated (options?: {
|
|
121
|
+
fromBlock?: number | Date
|
|
122
|
+
toBlock?: number | Date
|
|
123
|
+
params?: { }
|
|
124
|
+
}): Promise<ITxLogItem<TEventParams<'Updated'>>[]> {
|
|
125
|
+
return await this.$getPastLogsParsed('Updated', options) as any;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
abi: TAbiItem[] = [{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"Updated","type":"event"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"}]
|
|
129
|
+
|
|
130
|
+
declare storage: FooStorageReader
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
type TSender = TAccount & {
|
|
134
|
+
value?: string | number | bigint
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
type TEventLogOptions<TParams> = {
|
|
138
|
+
fromBlock?: number | Date
|
|
139
|
+
toBlock?: number | Date
|
|
140
|
+
params?: TParams
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export type TFooTypes = {
|
|
144
|
+
Events: {
|
|
145
|
+
Updated: {
|
|
146
|
+
outputParams: { newName: string },
|
|
147
|
+
outputArgs: [ newName: string ],
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
Methods: {
|
|
151
|
+
getName: {
|
|
152
|
+
method: "getName"
|
|
153
|
+
arguments: [ ]
|
|
154
|
+
}
|
|
155
|
+
name: {
|
|
156
|
+
method: "name"
|
|
157
|
+
arguments: [ ]
|
|
158
|
+
}
|
|
159
|
+
setName: {
|
|
160
|
+
method: "setName"
|
|
161
|
+
arguments: [ _name: string ]
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
class FooStorageReader extends ContractStorageReaderBase {
|
|
169
|
+
constructor(
|
|
170
|
+
public address: TAddress,
|
|
171
|
+
public client: Web3Client,
|
|
172
|
+
public explorer: IBlockchainExplorer,
|
|
173
|
+
) {
|
|
174
|
+
super(address, client, explorer);
|
|
175
|
+
|
|
176
|
+
this.$createHandler(this.$slots);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
async name(): Promise<string> {
|
|
180
|
+
return this.$storage.get(['name', ]);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
$slots = [
|
|
184
|
+
{
|
|
185
|
+
"slot": 0,
|
|
186
|
+
"position": 0,
|
|
187
|
+
"name": "name",
|
|
188
|
+
"size": null,
|
|
189
|
+
"type": "string"
|
|
190
|
+
}
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
interface IFooTxCaller {
|
|
197
|
+
setName (sender: TSender, _name: string): Promise<{ error?: Error & { data?: { type: string, params } }, result? }>
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
interface IFooTxData {
|
|
202
|
+
setName (sender: TSender, _name: string): Promise<TEth.TxLike>
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
type TEvents = TFooTypes['Events'];
|
|
207
|
+
type TEventParams<TEventName extends keyof TEvents> = Partial<TEvents[TEventName]['outputParams']>;
|
|
208
|
+
type TEventArguments<TEventName extends keyof TEvents> = Partial<TEvents[TEventName]['outputArgs']>;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"inputs": [
|
|
4
|
+
{
|
|
5
|
+
"internalType": "string",
|
|
6
|
+
"name": "_name",
|
|
7
|
+
"type": "string"
|
|
8
|
+
}
|
|
9
|
+
],
|
|
10
|
+
"stateMutability": "nonpayable",
|
|
11
|
+
"type": "constructor"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"anonymous": false,
|
|
15
|
+
"inputs": [
|
|
16
|
+
{
|
|
17
|
+
"indexed": false,
|
|
18
|
+
"internalType": "string",
|
|
19
|
+
"name": "newName",
|
|
20
|
+
"type": "string"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"name": "Updated",
|
|
24
|
+
"type": "event"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"inputs": [],
|
|
28
|
+
"name": "getName",
|
|
29
|
+
"outputs": [
|
|
30
|
+
{
|
|
31
|
+
"internalType": "string",
|
|
32
|
+
"name": "",
|
|
33
|
+
"type": "string"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"stateMutability": "view",
|
|
37
|
+
"type": "function"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"inputs": [],
|
|
41
|
+
"name": "name",
|
|
42
|
+
"outputs": [
|
|
43
|
+
{
|
|
44
|
+
"internalType": "string",
|
|
45
|
+
"name": "",
|
|
46
|
+
"type": "string"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"stateMutability": "view",
|
|
50
|
+
"type": "function"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"inputs": [
|
|
54
|
+
{
|
|
55
|
+
"internalType": "string",
|
|
56
|
+
"name": "_name",
|
|
57
|
+
"type": "string"
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"name": "setName",
|
|
61
|
+
"outputs": [],
|
|
62
|
+
"stateMutability": "nonpayable",
|
|
63
|
+
"type": "function"
|
|
64
|
+
}
|
|
65
|
+
]
|
package/0xweb.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"Foo": {
|
|
4
|
+
"main": "./0xc/hardhat/Foo/Foo.ts",
|
|
5
|
+
"contractName": "Foo",
|
|
6
|
+
"source": {
|
|
7
|
+
"path": "file:///home/runner/work/hardhat/hardhat/artifacts/coverage/contracts/test/fixtures/coverage/Foo.sol/Foo.json"
|
|
8
|
+
},
|
|
9
|
+
"deployments": {
|
|
10
|
+
"hardhat": {
|
|
11
|
+
"address": null
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"id":"f08f51dc3e6d3a77890a34978a710186","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"coverage/contracts/test/fixtures/coverage/Foo.sol":{"content":"contract Foo {function c_true654d2c60(bytes8 c__654d2c60) internal pure returns (bool){ abi.encode(c__654d2c60); return true; }\nfunction c_false654d2c60(bytes8 c__654d2c60) internal pure returns (bool){ abi.encode(c__654d2c60); return false; }\n\n string public name;\n event Updated (string newName);\n\n constructor(string memory _name) {abi.encode(0xa8227afe4dfa781e); /* function */ \n\nabi.encode(0xc9be2fde5a0b0d98); /* line */ \n name = _name;\n }\n\n function setName(string memory _name) public {abi.encode(0x7327731d8ae9d23a); /* function */ \n\nabi.encode(0x94319ce98f752b68); /* line */ \n name = _name;\nabi.encode(0x3e882cadf70d49cf); /* line */ \n abi.encode(0xe9452e85a2cd3fc5); /* statement */ \nemit Updated(name);\n }\n\n function getName () public view returns (string memory) {abi.encode(0xcc0273e704f59141); /* function */ \n\nabi.encode(0x30b5aca458797952); /* line */ \n abi.encode(0x7bd8b93d643b0bd8); /* statement */ \nif (block.number % 11 == 0) {abi.encode(0x8a231fed8fc8c5ea); /* branch */ \n\nabi.encode(0xda4f10ab71ed3b94); /* line */ \n abi.encode(0x0a5414c91ed9f19e); /* statement */ \nreturn \"GetName Overriden Eq\";\n }else { abi.encode(0x731e5f0e666cbbe1); /* branch */ \n}\nabi.encode(0xd19bfc0fbcaf6bf1); /* line */ \n abi.encode(0xd8eae10b6aca7218); /* statement */ \nreturn name;\n }\n}\n"}},"settings":{"optimizer":{"enabled":true,"runs":200},"viaIR":true,"evmVersion":"paris","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"errors":[{"component":"general","errorCode":"1878","formattedMessage":"Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> coverage/contracts/test/fixtures/coverage/Foo.sol\n\n","message":"SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.","severity":"warning","sourceLocation":{"end":-1,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":-1},"type":"Warning"},{"component":"general","errorCode":"3420","formattedMessage":"Warning: Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.20;\"\n--> coverage/contracts/test/fixtures/coverage/Foo.sol\n\n","message":"Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.20;\"","severity":"warning","sourceLocation":{"end":-1,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":-1},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:7:39:\n |\n7 | constructor(string memory _name) {abi.encode(0xa8227afe4dfa781e); /* function */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":376,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":346},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:9:1:\n |\n9 | abi.encode(0xc9be2fde5a0b0d98); /* line */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":426,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":396},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:13:51:\n |\n13 | function setName(string memory _name) public {abi.encode(0x7327731d8ae9d23a); /* function */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":550,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":520},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:15:1:\n |\n15 | abi.encode(0x94319ce98f752b68); /* line */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":600,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":570},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:17:1:\n |\n17 | abi.encode(0x3e882cadf70d49cf); /* line */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":667,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":637},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:18:9:\n |\n18 | abi.encode(0xe9452e85a2cd3fc5); /* statement */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":720,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":690},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:22:62:\n |\n22 | function getName () public view returns (string memory) {abi.encode(0xcc0273e704f59141); /* function */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":858,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":828},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:24:1:\n |\n24 | abi.encode(0x30b5aca458797952); /* line */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":908,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":878},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:25:9:\n |\n25 | abi.encode(0x7bd8b93d643b0bd8); /* statement */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":961,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":931},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:26:30:\n |\n26 | if (block.number % 11 == 0) {abi.encode(0x8a231fed8fc8c5ea); /* branch */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":1040,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":1010},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:28:1:\n |\n28 | abi.encode(0xda4f10ab71ed3b94); /* line */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":1088,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":1058},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:29:13:\n |\n29 | abi.encode(0x0a5414c91ed9f19e); /* statement */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":1145,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":1115},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:31:17:\n |\n31 | }else { abi.encode(0x731e5f0e666cbbe1); /* branch */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":1242,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":1212},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:33:1:\n |\n33 | abi.encode(0xd19bfc0fbcaf6bf1); /* line */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":1291,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":1261},"type":"Warning"},{"component":"general","errorCode":"6133","formattedMessage":"Warning: Statement has no effect.\n --> coverage/contracts/test/fixtures/coverage/Foo.sol:34:9:\n |\n34 | abi.encode(0xd8eae10b6aca7218); /* statement */ \n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Statement has no effect.","severity":"warning","sourceLocation":{"end":1344,"file":"coverage/contracts/test/fixtures/coverage/Foo.sol","start":1314},"type":"Warning"}],"sources":{"coverage/contracts/test/fixtures/coverage/Foo.sol":{"ast":{"absolutePath":"coverage/contracts/test/fixtures/coverage/Foo.sol","exportedSymbols":{"Foo":[172]},"id":173,"nodeType":"SourceUnit","nodes":[{"abstract":false,"baseContracts":[],"canonicalName":"Foo","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":172,"linearizedBaseContracts":[172],"name":"Foo","nameLocation":"9:3:0","nodeType":"ContractDefinition","nodes":[{"body":{"id":15,"nodeType":"Block","src":"86:42:0","statements":[{"expression":{"arguments":[{"id":10,"name":"c__654d2c60","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2,"src":"99:11:0","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"}],"expression":{"id":7,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"88:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"92:6:0","memberName":"encode","nodeType":"MemberAccess","src":"88:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"88:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12,"nodeType":"ExpressionStatement","src":"88:23:0"},{"expression":{"hexValue":"74727565","id":13,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"121:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":6,"id":14,"nodeType":"Return","src":"114:11:0"}]},"id":16,"implemented":true,"kind":"function","modifiers":[],"name":"c_true654d2c60","nameLocation":"23:14:0","nodeType":"FunctionDefinition","parameters":{"id":3,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2,"mutability":"mutable","name":"c__654d2c60","nameLocation":"45:11:0","nodeType":"VariableDeclaration","scope":16,"src":"38:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":1,"name":"bytes8","nodeType":"ElementaryTypeName","src":"38:6:0","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"37:20:0"},"returnParameters":{"id":6,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16,"src":"81:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4,"name":"bool","nodeType":"ElementaryTypeName","src":"81:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"80:6:0"},"scope":172,"src":"14:114:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31,"nodeType":"Block","src":"202:43:0","statements":[{"expression":{"arguments":[{"id":26,"name":"c__654d2c60","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18,"src":"215:11:0","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"}],"expression":{"id":23,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"204:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":25,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"208:6:0","memberName":"encode","nodeType":"MemberAccess","src":"204:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":27,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"204:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":28,"nodeType":"ExpressionStatement","src":"204:23:0"},{"expression":{"hexValue":"66616c7365","id":29,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"237:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":22,"id":30,"nodeType":"Return","src":"230:12:0"}]},"id":32,"implemented":true,"kind":"function","modifiers":[],"name":"c_false654d2c60","nameLocation":"138:15:0","nodeType":"FunctionDefinition","parameters":{"id":19,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18,"mutability":"mutable","name":"c__654d2c60","nameLocation":"161:11:0","nodeType":"VariableDeclaration","scope":32,"src":"154:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":17,"name":"bytes8","nodeType":"ElementaryTypeName","src":"154:6:0","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"153:20:0"},"returnParameters":{"id":22,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32,"src":"197:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20,"name":"bool","nodeType":"ElementaryTypeName","src":"197:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"196:6:0"},"scope":172,"src":"129:116:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":false,"functionSelector":"06fdde03","id":34,"mutability":"mutable","name":"name","nameLocation":"265:4:0","nodeType":"VariableDeclaration","scope":172,"src":"251:18:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":33,"name":"string","nodeType":"ElementaryTypeName","src":"251:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"public"},{"anonymous":false,"eventSelector":"221d3d4161ff7c815e25a84cf3c2ec04f54111bee80f0b06d345c834581c9da3","id":38,"name":"Updated","nameLocation":"281:7:0","nodeType":"EventDefinition","parameters":{"id":37,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36,"indexed":false,"mutability":"mutable","name":"newName","nameLocation":"297:7:0","nodeType":"VariableDeclaration","scope":38,"src":"290:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":35,"name":"string","nodeType":"ElementaryTypeName","src":"290:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"289:16:0"},"src":"275:31:0"},{"body":{"id":59,"nodeType":"Block","src":"345:123:0","statements":[{"expression":{"arguments":[{"hexValue":"307861383232376166653464666137383165","id":46,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"357:18:0","typeDescriptions":{"typeIdentifier":"t_rational_12115381180228597790_by_1","typeString":"int_const 12115381180228597790"},"value":"0xa8227afe4dfa781e"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_12115381180228597790_by_1","typeString":"int_const 12115381180228597790"}],"expression":{"id":43,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"346:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":45,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"350:6:0","memberName":"encode","nodeType":"MemberAccess","src":"346:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":47,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"346:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":48,"nodeType":"ExpressionStatement","src":"346:30:0"},{"expression":{"arguments":[{"hexValue":"307863396265326664653561306230643938","id":52,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"407:18:0","typeDescriptions":{"typeIdentifier":"t_rational_14537109279238458776_by_1","typeString":"int_const 14537109279238458776"},"value":"0xc9be2fde5a0b0d98"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_14537109279238458776_by_1","typeString":"int_const 14537109279238458776"}],"expression":{"id":49,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"396:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":51,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"400:6:0","memberName":"encode","nodeType":"MemberAccess","src":"396:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":53,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"396:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":54,"nodeType":"ExpressionStatement","src":"396:30:0"},{"expression":{"id":57,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":55,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34,"src":"449:4:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":56,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"456:5:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"449:12:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":58,"nodeType":"ExpressionStatement","src":"449:12:0"}]},"id":60,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":41,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40,"mutability":"mutable","name":"_name","nameLocation":"338:5:0","nodeType":"VariableDeclaration","scope":60,"src":"324:19:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":39,"name":"string","nodeType":"ElementaryTypeName","src":"324:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"323:21:0"},"returnParameters":{"id":42,"nodeType":"ParameterList","parameters":[],"src":"345:0:0"},"scope":172,"src":"312:156:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":97,"nodeType":"Block","src":"519:246:0","statements":[{"expression":{"arguments":[{"hexValue":"307837333237373331643861653964323361","id":68,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"531:18:0","typeDescriptions":{"typeIdentifier":"t_rational_8297727409175253562_by_1","typeString":"int_const 8297727409175253562"},"value":"0x7327731d8ae9d23a"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8297727409175253562_by_1","typeString":"int_const 8297727409175253562"}],"expression":{"id":65,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"520:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":67,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"524:6:0","memberName":"encode","nodeType":"MemberAccess","src":"520:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":69,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"520:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":70,"nodeType":"ExpressionStatement","src":"520:30:0"},{"expression":{"arguments":[{"hexValue":"307839343331396365393866373532623638","id":74,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"581:18:0","typeDescriptions":{"typeIdentifier":"t_rational_10678488718420290408_by_1","typeString":"int_const 10678488718420290408"},"value":"0x94319ce98f752b68"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_10678488718420290408_by_1","typeString":"int_const 10678488718420290408"}],"expression":{"id":71,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"570:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":73,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"574:6:0","memberName":"encode","nodeType":"MemberAccess","src":"570:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":75,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"570:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":76,"nodeType":"ExpressionStatement","src":"570:30:0"},{"expression":{"id":79,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":77,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34,"src":"623:4:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":78,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":62,"src":"630:5:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"623:12:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":80,"nodeType":"ExpressionStatement","src":"623:12:0"},{"expression":{"arguments":[{"hexValue":"307833653838326361646637306434396366","id":84,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"648:18:0","typeDescriptions":{"typeIdentifier":"t_rational_4505900552869988815_by_1","typeString":"int_const 4505900552869988815"},"value":"0x3e882cadf70d49cf"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_4505900552869988815_by_1","typeString":"int_const 4505900552869988815"}],"expression":{"id":81,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"637:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":83,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"641:6:0","memberName":"encode","nodeType":"MemberAccess","src":"637:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":85,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"637:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":86,"nodeType":"ExpressionStatement","src":"637:30:0"},{"expression":{"arguments":[{"hexValue":"307865393435326538356132636433666335","id":90,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"701:18:0","typeDescriptions":{"typeIdentifier":"t_rational_16808892335727132613_by_1","typeString":"int_const 16808892335727132613"},"value":"0xe9452e85a2cd3fc5"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16808892335727132613_by_1","typeString":"int_const 16808892335727132613"}],"expression":{"id":87,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"690:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":89,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"694:6:0","memberName":"encode","nodeType":"MemberAccess","src":"690:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":91,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"690:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":92,"nodeType":"ExpressionStatement","src":"690:30:0"},{"eventCall":{"arguments":[{"id":94,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34,"src":"753:4:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"id":93,"name":"Updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38,"src":"745:7:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":95,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"745:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":96,"nodeType":"EmitStatement","src":"740:18:0"}]},"functionSelector":"c47f0027","id":98,"implemented":true,"kind":"function","modifiers":[],"name":"setName","nameLocation":"483:7:0","nodeType":"FunctionDefinition","parameters":{"id":63,"nodeType":"ParameterList","parameters":[{"constant":false,"id":62,"mutability":"mutable","name":"_name","nameLocation":"505:5:0","nodeType":"VariableDeclaration","scope":98,"src":"491:19:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":61,"name":"string","nodeType":"ElementaryTypeName","src":"491:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"490:21:0"},"returnParameters":{"id":64,"nodeType":"ParameterList","parameters":[],"src":"519:0:0"},"scope":172,"src":"474:291:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":170,"nodeType":"Block","src":"827:555:0","statements":[{"expression":{"arguments":[{"hexValue":"307863633032373365373034663539313431","id":106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"839:18:0","typeDescriptions":{"typeIdentifier":"t_rational_14700439569748562241_by_1","typeString":"int_const 14700439569748562241"},"value":"0xcc0273e704f59141"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_14700439569748562241_by_1","typeString":"int_const 14700439569748562241"}],"expression":{"id":103,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"828:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":105,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"832:6:0","memberName":"encode","nodeType":"MemberAccess","src":"828:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"828:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":108,"nodeType":"ExpressionStatement","src":"828:30:0"},{"expression":{"arguments":[{"hexValue":"307833306235616361343538373937393532","id":112,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"889:18:0","typeDescriptions":{"typeIdentifier":"t_rational_3509901306464139602_by_1","typeString":"int_const 3509901306464139602"},"value":"0x30b5aca458797952"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_3509901306464139602_by_1","typeString":"int_const 3509901306464139602"}],"expression":{"id":109,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"878:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":111,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"882:6:0","memberName":"encode","nodeType":"MemberAccess","src":"878:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"878:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":114,"nodeType":"ExpressionStatement","src":"878:30:0"},{"expression":{"arguments":[{"hexValue":"307837626438623933643634336230626438","id":118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"942:18:0","typeDescriptions":{"typeIdentifier":"t_rational_8924086334960372696_by_1","typeString":"int_const 8924086334960372696"},"value":"0x7bd8b93d643b0bd8"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8924086334960372696_by_1","typeString":"int_const 8924086334960372696"}],"expression":{"id":115,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"931:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":117,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"935:6:0","memberName":"encode","nodeType":"MemberAccess","src":"931:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"931:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":120,"nodeType":"ExpressionStatement","src":"931:30:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":121,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"985:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"991:6:0","memberName":"number","nodeType":"MemberAccess","src":"985:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3131","id":123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1000:2:0","typeDescriptions":{"typeIdentifier":"t_rational_11_by_1","typeString":"int_const 11"},"value":"11"},"src":"985:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1006:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"985:22:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":154,"nodeType":"Block","src":"1210:50:0","statements":[{"expression":{"arguments":[{"hexValue":"307837333165356630653636366362626531","id":151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1223:18:0","typeDescriptions":{"typeIdentifier":"t_rational_8295172079115615201_by_1","typeString":"int_const 8295172079115615201"},"value":"0x731e5f0e666cbbe1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8295172079115615201_by_1","typeString":"int_const 8295172079115615201"}],"expression":{"id":148,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1212:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":150,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1216:6:0","memberName":"encode","nodeType":"MemberAccess","src":"1212:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":152,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1212:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":153,"nodeType":"ExpressionStatement","src":"1212:30:0"}]},"id":155,"nodeType":"IfStatement","src":"981:279:0","trueBody":{"id":147,"nodeType":"Block","src":"1009:196:0","statements":[{"expression":{"arguments":[{"hexValue":"307838613233316665643866633863356561","id":130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1021:18:0","typeDescriptions":{"typeIdentifier":"t_rational_9953834706598938090_by_1","typeString":"int_const 9953834706598938090"},"value":"0x8a231fed8fc8c5ea"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_9953834706598938090_by_1","typeString":"int_const 9953834706598938090"}],"expression":{"id":127,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1010:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":129,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1014:6:0","memberName":"encode","nodeType":"MemberAccess","src":"1010:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1010:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":132,"nodeType":"ExpressionStatement","src":"1010:30:0"},{"expression":{"arguments":[{"hexValue":"307864613466313061623731656433623934","id":136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1069:18:0","typeDescriptions":{"typeIdentifier":"t_rational_15730810351965256596_by_1","typeString":"int_const 15730810351965256596"},"value":"0xda4f10ab71ed3b94"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_15730810351965256596_by_1","typeString":"int_const 15730810351965256596"}],"expression":{"id":133,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1058:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1062:6:0","memberName":"encode","nodeType":"MemberAccess","src":"1058:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1058:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":138,"nodeType":"ExpressionStatement","src":"1058:30:0"},{"expression":{"arguments":[{"hexValue":"307830613534313463393165643966313965","id":142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1126:18:0","typeDescriptions":{"typeIdentifier":"t_rational_744242692461556126_by_1","typeString":"int_const 744242692461556126"},"value":"0x0a5414c91ed9f19e"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_744242692461556126_by_1","typeString":"int_const 744242692461556126"}],"expression":{"id":139,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1115:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":141,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1119:6:0","memberName":"encode","nodeType":"MemberAccess","src":"1115:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1115:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":144,"nodeType":"ExpressionStatement","src":"1115:30:0"},{"expression":{"hexValue":"4765744e616d65204f766572726964656e204571","id":145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1172:22:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_e073893eba1949f76ea44b9320c81076b968a59f042552bcc65252cb1e13c10d","typeString":"literal_string \"GetName Overriden Eq\""},"value":"GetName Overriden Eq"},"functionReturnParameters":102,"id":146,"nodeType":"Return","src":"1165:29:0"}]}},{"expression":{"arguments":[{"hexValue":"307864313962666330666263616636626631","id":159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1272:18:0","typeDescriptions":{"typeIdentifier":"t_rational_15103942919837412337_by_1","typeString":"int_const 15103942919837412337"},"value":"0xd19bfc0fbcaf6bf1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_15103942919837412337_by_1","typeString":"int_const 15103942919837412337"}],"expression":{"id":156,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1261:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1265:6:0","memberName":"encode","nodeType":"MemberAccess","src":"1261:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1261:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":161,"nodeType":"ExpressionStatement","src":"1261:30:0"},{"expression":{"arguments":[{"hexValue":"307864386561653130623661636137323138","id":165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1325:18:0","typeDescriptions":{"typeIdentifier":"t_rational_15630552895895269912_by_1","typeString":"int_const 15630552895895269912"},"value":"0xd8eae10b6aca7218"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_15630552895895269912_by_1","typeString":"int_const 15630552895895269912"}],"expression":{"id":162,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1314:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":164,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1318:6:0","memberName":"encode","nodeType":"MemberAccess","src":"1314:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":166,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1314:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":167,"nodeType":"ExpressionStatement","src":"1314:30:0"},{"expression":{"id":168,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34,"src":"1371:4:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":102,"id":169,"nodeType":"Return","src":"1364:11:0"}]},"functionSelector":"17d7de7c","id":171,"implemented":true,"kind":"function","modifiers":[],"name":"getName","nameLocation":"780:7:0","nodeType":"FunctionDefinition","parameters":{"id":99,"nodeType":"ParameterList","parameters":[],"src":"788:2:0"},"returnParameters":{"id":102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":101,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":171,"src":"812:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":100,"name":"string","nodeType":"ElementaryTypeName","src":"812:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"811:15:0"},"scope":172,"src":"771:611:0","stateMutability":"view","virtual":false,"visibility":"public"}],"scope":173,"src":"0:1384:0","usedErrors":[],"usedEvents":[38]}],"src":"0:1385:0"},"id":0}},"contracts":{"coverage/contracts/test/fixtures/coverage/Foo.sol":{"Foo":{"abi":[{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"Updated","type":"event"},{"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"finalize_allocation":{"entryPoint":592,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_2493":{"entryPoint":565,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[],"linkReferences":{},"object":"6080806040523461023057610913803803809161001c8285610250565b8339810190602080828403126102305781516001600160401b03928382116102305701601f908482820112156102305780518481116102065760405191601f199661006d8689878601160185610250565b82845285838301011161023057849060005b83811061021c575050600091830101526100aa60405167a8227afe4dfa781e85820152848152610235565b6100c560405167c9be2fde5a0b0d9885820152848152610235565b805193841161020657600054926001938481811c911680156101fc575b828210146101e6578381116101a0575b508092851160011461013b575083945090839291600094610130575b50501b916000199060031b1c1916176000555b60405161069f90816102748239f35b01519250388061010e565b9294849081166000805284600020946000905b88838310610186575050501061016d575b505050811b01600055610121565b015160001960f88460031b161c1916905538808061015f565b85870151885590960195948501948793509081019061014e565b60008052816000208480880160051c8201928489106101dd575b0160051c019085905b8281106101d15750506100f2565b600081550185906101c3565b925081926101ba565b634e487b7160e01b600052602260045260246000fd5b90607f16906100e2565b634e487b7160e01b600052604160045260246000fd5b81810183015185820184015286920161007f565b600080fd5b604081019081106001600160401b0382111761020657604052565b601f909101601f19168101906001600160401b038211908210176102065760405256fe604060808152600436101561001357600080fd5b6000803560e01c806306fdde031461037957806317d7de7c1461034c5763c47f00271461003f57600080fd5b346103495760209182600319360112610345576004359267ffffffffffffffff808511610341573660238601121561034157846004013581811161032957835190601f19966100958589601f8501160184610403565b818352366024838301011161033d57818792602487930183860137830101526100ce8451677327731d8ae9d23a858201528481526103d1565b6100e884516794319ce98f752b68858201528481526103d1565b8051918211610329576100fb8554610397565b601f81116102da575b508295601f831160011461027057509484958293949592610265575b50508160011b916000199060031b1c19161783555b61014f8251673e882cadf70d49cf838201528281526103d1565b610169825167e9452e85a2cd3fc5838201528281526103d1565b815191818352839184549061017d82610397565b918282870152600190818116908160001461022757506001146101c5575b867f221d3d4161ff7c815e25a84cf3c2ec04f54111bee80f0b06d345c834581c9da387870388a180f35b868052929350859260008051602061064a8339815191525b8385106102145750505050820101817f221d3d4161ff7c815e25a84cf3c2ec04f54111bee80f0b06d345c834581c9da3388061019b565b80548786018701529382019381016101dd565b60ff191685880152505050151560051b8301019050817f221d3d4161ff7c815e25a84cf3c2ec04f54111bee80f0b06d345c834581c9da3388061019b565b015190503880610120565b82169585805260008051602061064a83398151915291865b8881106102c3575083600195969798106102aa575b505050811b018355610135565b015160001960f88460031b161c1916905538808061029d565b919285600181928685015181550194019201610288565b85805260008051602061064a833981519152601f840160051c81019185851061031f575b601f0160051c01905b8181106103145750610104565b868155600101610307565b90915081906102fe565b634e487b7160e01b85526041600452602485fd5b8680fd5b8380fd5b5080fd5b80fd5b5090346103455781600319360112610345576103759061036a610517565b9051918291826104ce565b0390f35b5090346103455781600319360112610345576103759061036a610425565b90600182811c921680156103c7575b60208310146103b157565b634e487b7160e01b600052602260045260246000fd5b91607f16916103a6565b6040810190811067ffffffffffffffff8211176103ed57604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176103ed57604052565b6040519060008281549161043883610397565b808352926001908181169081156104ac5750600114610461575b5061045f92500383610403565b565b6000808052915060008051602061064a8339815191525b848310610491575061045f935050810160200138610452565b81935090816020925483858a01015201910190918592610478565b90506020925061045f94915060ff191682840152151560051b82010138610452565b6020808252825181830181905290939260005b82811061050357505060409293506000838284010152601f8019910116010190565b8181018601518482016040015285016104e1565b604080519061053760209267cc0273e704f59141848201528381526103d1565b61055181516730b5aca458797952848201528381526103d1565b61056b8151677bd8b93d643b0bd8848201528381526103d1565b600b43066105ef57806105a6734765744e616d65204f766572726964656e20457160601b9251678a231fed8fc8c5ea858201528481526103d1565b6105c0815167da4f10ab71ed3b94858201528481526103d1565b6105da8151670a5414c91ed9f19e858201528481526103d1565b51916105e5836103d1565b6014835282015290565b908161060e61063e935167731e5f0e666cbbe1848201528381526103d1565b610628815167d19bfc0fbcaf6bf1848201528381526103d1565b519067d8eae10b6aca72188183015281526103d1565b610646610425565b9056fe290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563a26469706673582212205b98a0be98b3c86b2323b21298e044c532df53252e3d4c1d1cf970dac37c73a864736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH2 0x230 JUMPI PUSH2 0x913 DUP1 CODESIZE SUB DUP1 SWAP2 PUSH2 0x1C DUP3 DUP6 PUSH2 0x250 JUMP JUMPDEST DUP4 CODECOPY DUP2 ADD SWAP1 PUSH1 0x20 DUP1 DUP3 DUP5 SUB SLT PUSH2 0x230 JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 DUP4 DUP3 GT PUSH2 0x230 JUMPI ADD PUSH1 0x1F SWAP1 DUP5 DUP3 DUP3 ADD SLT ISZERO PUSH2 0x230 JUMPI DUP1 MLOAD DUP5 DUP2 GT PUSH2 0x206 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH1 0x1F NOT SWAP7 PUSH2 0x6D DUP7 DUP10 DUP8 DUP7 ADD AND ADD DUP6 PUSH2 0x250 JUMP JUMPDEST DUP3 DUP5 MSTORE DUP6 DUP4 DUP4 ADD ADD GT PUSH2 0x230 JUMPI DUP5 SWAP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH2 0x21C JUMPI POP POP PUSH1 0x0 SWAP2 DUP4 ADD ADD MSTORE PUSH2 0xAA PUSH1 0x40 MLOAD PUSH8 0xA8227AFE4DFA781E DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x235 JUMP JUMPDEST PUSH2 0xC5 PUSH1 0x40 MLOAD PUSH8 0xC9BE2FDE5A0B0D98 DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x235 JUMP JUMPDEST DUP1 MLOAD SWAP4 DUP5 GT PUSH2 0x206 JUMPI PUSH1 0x0 SLOAD SWAP3 PUSH1 0x1 SWAP4 DUP5 DUP2 DUP2 SHR SWAP2 AND DUP1 ISZERO PUSH2 0x1FC JUMPI JUMPDEST DUP3 DUP3 LT EQ PUSH2 0x1E6 JUMPI DUP4 DUP2 GT PUSH2 0x1A0 JUMPI JUMPDEST POP DUP1 SWAP3 DUP6 GT PUSH1 0x1 EQ PUSH2 0x13B JUMPI POP DUP4 SWAP5 POP SWAP1 DUP4 SWAP3 SWAP2 PUSH1 0x0 SWAP5 PUSH2 0x130 JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x0 SSTORE JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x69F SWAP1 DUP2 PUSH2 0x274 DUP3 CODECOPY RETURN JUMPDEST ADD MLOAD SWAP3 POP CODESIZE DUP1 PUSH2 0x10E JUMP JUMPDEST SWAP3 SWAP5 DUP5 SWAP1 DUP2 AND PUSH1 0x0 DUP1 MSTORE DUP5 PUSH1 0x0 KECCAK256 SWAP5 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP4 DUP4 LT PUSH2 0x186 JUMPI POP POP POP LT PUSH2 0x16D JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x0 SSTORE PUSH2 0x121 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH2 0x15F JUMP JUMPDEST DUP6 DUP8 ADD MLOAD DUP9 SSTORE SWAP1 SWAP7 ADD SWAP6 SWAP5 DUP6 ADD SWAP5 DUP8 SWAP4 POP SWAP1 DUP2 ADD SWAP1 PUSH2 0x14E JUMP JUMPDEST PUSH1 0x0 DUP1 MSTORE DUP2 PUSH1 0x0 KECCAK256 DUP5 DUP1 DUP9 ADD PUSH1 0x5 SHR DUP3 ADD SWAP3 DUP5 DUP10 LT PUSH2 0x1DD JUMPI JUMPDEST ADD PUSH1 0x5 SHR ADD SWAP1 DUP6 SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x1D1 JUMPI POP POP PUSH2 0xF2 JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE ADD DUP6 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST SWAP3 POP DUP2 SWAP3 PUSH2 0x1BA JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x7F AND SWAP1 PUSH2 0xE2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD DUP5 ADD MSTORE DUP7 SWAP3 ADD PUSH2 0x7F JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x206 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND DUP2 ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT SWAP1 DUP3 LT OR PUSH2 0x206 JUMPI PUSH1 0x40 MSTORE JUMP INVALID PUSH1 0x40 PUSH1 0x80 DUP2 MSTORE PUSH1 0x4 CALLDATASIZE LT ISZERO PUSH2 0x13 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x379 JUMPI DUP1 PUSH4 0x17D7DE7C EQ PUSH2 0x34C JUMPI PUSH4 0xC47F0027 EQ PUSH2 0x3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x349 JUMPI PUSH1 0x20 SWAP2 DUP3 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x345 JUMPI PUSH1 0x4 CALLDATALOAD SWAP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP6 GT PUSH2 0x341 JUMPI CALLDATASIZE PUSH1 0x23 DUP7 ADD SLT ISZERO PUSH2 0x341 JUMPI DUP5 PUSH1 0x4 ADD CALLDATALOAD DUP2 DUP2 GT PUSH2 0x329 JUMPI DUP4 MLOAD SWAP1 PUSH1 0x1F NOT SWAP7 PUSH2 0x95 DUP6 DUP10 PUSH1 0x1F DUP6 ADD AND ADD DUP5 PUSH2 0x403 JUMP JUMPDEST DUP2 DUP4 MSTORE CALLDATASIZE PUSH1 0x24 DUP4 DUP4 ADD ADD GT PUSH2 0x33D JUMPI DUP2 DUP8 SWAP3 PUSH1 0x24 DUP8 SWAP4 ADD DUP4 DUP7 ADD CALLDATACOPY DUP4 ADD ADD MSTORE PUSH2 0xCE DUP5 MLOAD PUSH8 0x7327731D8AE9D23A DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0xE8 DUP5 MLOAD PUSH8 0x94319CE98F752B68 DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST DUP1 MLOAD SWAP2 DUP3 GT PUSH2 0x329 JUMPI PUSH2 0xFB DUP6 SLOAD PUSH2 0x397 JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH2 0x2DA JUMPI JUMPDEST POP DUP3 SWAP6 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0x270 JUMPI POP SWAP5 DUP5 SWAP6 DUP3 SWAP4 SWAP5 SWAP6 SWAP3 PUSH2 0x265 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR DUP4 SSTORE JUMPDEST PUSH2 0x14F DUP3 MLOAD PUSH8 0x3E882CADF70D49CF DUP4 DUP3 ADD MSTORE DUP3 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x169 DUP3 MLOAD PUSH8 0xE9452E85A2CD3FC5 DUP4 DUP3 ADD MSTORE DUP3 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST DUP2 MLOAD SWAP2 DUP2 DUP4 MSTORE DUP4 SWAP2 DUP5 SLOAD SWAP1 PUSH2 0x17D DUP3 PUSH2 0x397 JUMP JUMPDEST SWAP2 DUP3 DUP3 DUP8 ADD MSTORE PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0x227 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1C5 JUMPI JUMPDEST DUP7 PUSH32 0x221D3D4161FF7C815E25A84CF3C2EC04F54111BEE80F0B06D345C834581C9DA3 DUP8 DUP8 SUB DUP9 LOG1 DUP1 RETURN JUMPDEST DUP7 DUP1 MSTORE SWAP3 SWAP4 POP DUP6 SWAP3 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x64A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE JUMPDEST DUP4 DUP6 LT PUSH2 0x214 JUMPI POP POP POP POP DUP3 ADD ADD DUP2 PUSH32 0x221D3D4161FF7C815E25A84CF3C2EC04F54111BEE80F0B06D345C834581C9DA3 CODESIZE DUP1 PUSH2 0x19B JUMP JUMPDEST DUP1 SLOAD DUP8 DUP7 ADD DUP8 ADD MSTORE SWAP4 DUP3 ADD SWAP4 DUP2 ADD PUSH2 0x1DD JUMP JUMPDEST PUSH1 0xFF NOT AND DUP6 DUP9 ADD MSTORE POP POP POP ISZERO ISZERO PUSH1 0x5 SHL DUP4 ADD ADD SWAP1 POP DUP2 PUSH32 0x221D3D4161FF7C815E25A84CF3C2EC04F54111BEE80F0B06D345C834581C9DA3 CODESIZE DUP1 PUSH2 0x19B JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH2 0x120 JUMP JUMPDEST DUP3 AND SWAP6 DUP6 DUP1 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x64A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP2 DUP7 JUMPDEST DUP9 DUP2 LT PUSH2 0x2C3 JUMPI POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 SWAP9 LT PUSH2 0x2AA JUMPI JUMPDEST POP POP POP DUP2 SHL ADD DUP4 SSTORE PUSH2 0x135 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH2 0x29D JUMP JUMPDEST SWAP2 SWAP3 DUP6 PUSH1 0x1 DUP2 SWAP3 DUP7 DUP6 ADD MLOAD DUP2 SSTORE ADD SWAP5 ADD SWAP3 ADD PUSH2 0x288 JUMP JUMPDEST DUP6 DUP1 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x64A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 DUP6 DUP6 LT PUSH2 0x31F JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 JUMPDEST DUP2 DUP2 LT PUSH2 0x314 JUMPI POP PUSH2 0x104 JUMP JUMPDEST DUP7 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x307 JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH2 0x2FE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP6 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 REVERT JUMPDEST DUP7 DUP1 REVERT JUMPDEST DUP4 DUP1 REVERT JUMPDEST POP DUP1 REVERT JUMPDEST DUP1 REVERT JUMPDEST POP SWAP1 CALLVALUE PUSH2 0x345 JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x345 JUMPI PUSH2 0x375 SWAP1 PUSH2 0x36A PUSH2 0x517 JUMP JUMPDEST SWAP1 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x4CE JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST POP SWAP1 CALLVALUE PUSH2 0x345 JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x345 JUMPI PUSH2 0x375 SWAP1 PUSH2 0x36A PUSH2 0x425 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x3C7 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x3B1 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH2 0x3A6 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x3ED JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x3ED JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH1 0x0 DUP3 DUP2 SLOAD SWAP2 PUSH2 0x438 DUP4 PUSH2 0x397 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x4AC JUMPI POP PUSH1 0x1 EQ PUSH2 0x461 JUMPI JUMPDEST POP PUSH2 0x45F SWAP3 POP SUB DUP4 PUSH2 0x403 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 MSTORE SWAP2 POP PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x64A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE JUMPDEST DUP5 DUP4 LT PUSH2 0x491 JUMPI POP PUSH2 0x45F SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x452 JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP11 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP6 SWAP3 PUSH2 0x478 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x45F SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x452 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP2 DUP4 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP4 SWAP3 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x503 JUMPI POP POP PUSH1 0x40 SWAP3 SWAP4 POP PUSH1 0x0 DUP4 DUP3 DUP5 ADD ADD MSTORE PUSH1 0x1F DUP1 NOT SWAP2 ADD AND ADD ADD SWAP1 JUMP JUMPDEST DUP2 DUP2 ADD DUP7 ADD MLOAD DUP5 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP6 ADD PUSH2 0x4E1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP1 PUSH2 0x537 PUSH1 0x20 SWAP3 PUSH8 0xCC0273E704F59141 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x551 DUP2 MLOAD PUSH8 0x30B5ACA458797952 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x56B DUP2 MLOAD PUSH8 0x7BD8B93D643B0BD8 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH1 0xB NUMBER MOD PUSH2 0x5EF JUMPI DUP1 PUSH2 0x5A6 PUSH20 0x4765744E616D65204F766572726964656E204571 PUSH1 0x60 SHL SWAP3 MLOAD PUSH8 0x8A231FED8FC8C5EA DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x5C0 DUP2 MLOAD PUSH8 0xDA4F10AB71ED3B94 DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x5DA DUP2 MLOAD PUSH8 0xA5414C91ED9F19E DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST MLOAD SWAP2 PUSH2 0x5E5 DUP4 PUSH2 0x3D1 JUMP JUMPDEST PUSH1 0x14 DUP4 MSTORE DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST SWAP1 DUP2 PUSH2 0x60E PUSH2 0x63E SWAP4 MLOAD PUSH8 0x731E5F0E666CBBE1 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x628 DUP2 MLOAD PUSH8 0xD19BFC0FBCAF6BF1 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST MLOAD SWAP1 PUSH8 0xD8EAE10B6ACA7218 DUP2 DUP4 ADD MSTORE DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x646 PUSH2 0x425 JUMP JUMPDEST SWAP1 JUMP INVALID 0x29 0xD 0xEC 0xD9 SLOAD DUP12 PUSH3 0xA8D603 GASLIMIT 0xA9 DUP9 CODESIZE PUSH16 0xC84BA6BC95484008F6362F93160EF3E5 PUSH4 0xA2646970 PUSH7 0x73582212205B98 LOG0 0xBE SWAP9 0xB3 0xC8 PUSH12 0x2323B21298E044C532DF5325 0x2E RETURNDATASIZE 0x4C SAR SHR 0xF9 PUSH17 0xDAC37C73A864736F6C6343000814003300 ","sourceMap":"0:1384:0:-:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;-1:-1:-1;0:1384:0;;;;;346:30;0:1384;;357:18;346:30;;;0:1384;346:30;;;;:::i;:::-;396;0:1384;;407:18;396:30;;;0:1384;396:30;;;;:::i;:::-;0:1384;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;-1:-1:-1;0:1384:0;;;-1:-1:-1;0:1384:0;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;-1:-1:-1;0:1384:0;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;-1:-1:-1;;;;;0:1384:0;;;;;;;:::o;:::-;;;;;-1:-1:-1;;0:1384:0;;;;-1:-1:-1;;;;;0:1384:0;;;;;;;;;;:::o"},"deployedBytecode":{"functionDebugData":{"abi_encode_string":{"entryPoint":1230,"id":null,"parameterSlots":2,"returnSlots":1},"copy_array_from_storage_to_memory_string":{"entryPoint":1061,"id":null,"parameterSlots":0,"returnSlots":1},"extract_byte_array_length":{"entryPoint":919,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":1027,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_5033":{"entryPoint":977,"id":null,"parameterSlots":1,"returnSlots":0},"fun_getName":{"entryPoint":1303,"id":171,"parameterSlots":0,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"604060808152600436101561001357600080fd5b6000803560e01c806306fdde031461037957806317d7de7c1461034c5763c47f00271461003f57600080fd5b346103495760209182600319360112610345576004359267ffffffffffffffff808511610341573660238601121561034157846004013581811161032957835190601f19966100958589601f8501160184610403565b818352366024838301011161033d57818792602487930183860137830101526100ce8451677327731d8ae9d23a858201528481526103d1565b6100e884516794319ce98f752b68858201528481526103d1565b8051918211610329576100fb8554610397565b601f81116102da575b508295601f831160011461027057509484958293949592610265575b50508160011b916000199060031b1c19161783555b61014f8251673e882cadf70d49cf838201528281526103d1565b610169825167e9452e85a2cd3fc5838201528281526103d1565b815191818352839184549061017d82610397565b918282870152600190818116908160001461022757506001146101c5575b867f221d3d4161ff7c815e25a84cf3c2ec04f54111bee80f0b06d345c834581c9da387870388a180f35b868052929350859260008051602061064a8339815191525b8385106102145750505050820101817f221d3d4161ff7c815e25a84cf3c2ec04f54111bee80f0b06d345c834581c9da3388061019b565b80548786018701529382019381016101dd565b60ff191685880152505050151560051b8301019050817f221d3d4161ff7c815e25a84cf3c2ec04f54111bee80f0b06d345c834581c9da3388061019b565b015190503880610120565b82169585805260008051602061064a83398151915291865b8881106102c3575083600195969798106102aa575b505050811b018355610135565b015160001960f88460031b161c1916905538808061029d565b919285600181928685015181550194019201610288565b85805260008051602061064a833981519152601f840160051c81019185851061031f575b601f0160051c01905b8181106103145750610104565b868155600101610307565b90915081906102fe565b634e487b7160e01b85526041600452602485fd5b8680fd5b8380fd5b5080fd5b80fd5b5090346103455781600319360112610345576103759061036a610517565b9051918291826104ce565b0390f35b5090346103455781600319360112610345576103759061036a610425565b90600182811c921680156103c7575b60208310146103b157565b634e487b7160e01b600052602260045260246000fd5b91607f16916103a6565b6040810190811067ffffffffffffffff8211176103ed57604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176103ed57604052565b6040519060008281549161043883610397565b808352926001908181169081156104ac5750600114610461575b5061045f92500383610403565b565b6000808052915060008051602061064a8339815191525b848310610491575061045f935050810160200138610452565b81935090816020925483858a01015201910190918592610478565b90506020925061045f94915060ff191682840152151560051b82010138610452565b6020808252825181830181905290939260005b82811061050357505060409293506000838284010152601f8019910116010190565b8181018601518482016040015285016104e1565b604080519061053760209267cc0273e704f59141848201528381526103d1565b61055181516730b5aca458797952848201528381526103d1565b61056b8151677bd8b93d643b0bd8848201528381526103d1565b600b43066105ef57806105a6734765744e616d65204f766572726964656e20457160601b9251678a231fed8fc8c5ea858201528481526103d1565b6105c0815167da4f10ab71ed3b94858201528481526103d1565b6105da8151670a5414c91ed9f19e858201528481526103d1565b51916105e5836103d1565b6014835282015290565b908161060e61063e935167731e5f0e666cbbe1848201528381526103d1565b610628815167d19bfc0fbcaf6bf1848201528381526103d1565b519067d8eae10b6aca72188183015281526103d1565b610646610425565b9056fe290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563a26469706673582212205b98a0be98b3c86b2323b21298e044c532df53252e3d4c1d1cf970dac37c73a864736f6c63430008140033","opcodes":"PUSH1 0x40 PUSH1 0x80 DUP2 MSTORE PUSH1 0x4 CALLDATASIZE LT ISZERO PUSH2 0x13 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x379 JUMPI DUP1 PUSH4 0x17D7DE7C EQ PUSH2 0x34C JUMPI PUSH4 0xC47F0027 EQ PUSH2 0x3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x349 JUMPI PUSH1 0x20 SWAP2 DUP3 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x345 JUMPI PUSH1 0x4 CALLDATALOAD SWAP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP6 GT PUSH2 0x341 JUMPI CALLDATASIZE PUSH1 0x23 DUP7 ADD SLT ISZERO PUSH2 0x341 JUMPI DUP5 PUSH1 0x4 ADD CALLDATALOAD DUP2 DUP2 GT PUSH2 0x329 JUMPI DUP4 MLOAD SWAP1 PUSH1 0x1F NOT SWAP7 PUSH2 0x95 DUP6 DUP10 PUSH1 0x1F DUP6 ADD AND ADD DUP5 PUSH2 0x403 JUMP JUMPDEST DUP2 DUP4 MSTORE CALLDATASIZE PUSH1 0x24 DUP4 DUP4 ADD ADD GT PUSH2 0x33D JUMPI DUP2 DUP8 SWAP3 PUSH1 0x24 DUP8 SWAP4 ADD DUP4 DUP7 ADD CALLDATACOPY DUP4 ADD ADD MSTORE PUSH2 0xCE DUP5 MLOAD PUSH8 0x7327731D8AE9D23A DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0xE8 DUP5 MLOAD PUSH8 0x94319CE98F752B68 DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST DUP1 MLOAD SWAP2 DUP3 GT PUSH2 0x329 JUMPI PUSH2 0xFB DUP6 SLOAD PUSH2 0x397 JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH2 0x2DA JUMPI JUMPDEST POP DUP3 SWAP6 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH2 0x270 JUMPI POP SWAP5 DUP5 SWAP6 DUP3 SWAP4 SWAP5 SWAP6 SWAP3 PUSH2 0x265 JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR DUP4 SSTORE JUMPDEST PUSH2 0x14F DUP3 MLOAD PUSH8 0x3E882CADF70D49CF DUP4 DUP3 ADD MSTORE DUP3 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x169 DUP3 MLOAD PUSH8 0xE9452E85A2CD3FC5 DUP4 DUP3 ADD MSTORE DUP3 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST DUP2 MLOAD SWAP2 DUP2 DUP4 MSTORE DUP4 SWAP2 DUP5 SLOAD SWAP1 PUSH2 0x17D DUP3 PUSH2 0x397 JUMP JUMPDEST SWAP2 DUP3 DUP3 DUP8 ADD MSTORE PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 PUSH1 0x0 EQ PUSH2 0x227 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1C5 JUMPI JUMPDEST DUP7 PUSH32 0x221D3D4161FF7C815E25A84CF3C2EC04F54111BEE80F0B06D345C834581C9DA3 DUP8 DUP8 SUB DUP9 LOG1 DUP1 RETURN JUMPDEST DUP7 DUP1 MSTORE SWAP3 SWAP4 POP DUP6 SWAP3 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x64A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE JUMPDEST DUP4 DUP6 LT PUSH2 0x214 JUMPI POP POP POP POP DUP3 ADD ADD DUP2 PUSH32 0x221D3D4161FF7C815E25A84CF3C2EC04F54111BEE80F0B06D345C834581C9DA3 CODESIZE DUP1 PUSH2 0x19B JUMP JUMPDEST DUP1 SLOAD DUP8 DUP7 ADD DUP8 ADD MSTORE SWAP4 DUP3 ADD SWAP4 DUP2 ADD PUSH2 0x1DD JUMP JUMPDEST PUSH1 0xFF NOT AND DUP6 DUP9 ADD MSTORE POP POP POP ISZERO ISZERO PUSH1 0x5 SHL DUP4 ADD ADD SWAP1 POP DUP2 PUSH32 0x221D3D4161FF7C815E25A84CF3C2EC04F54111BEE80F0B06D345C834581C9DA3 CODESIZE DUP1 PUSH2 0x19B JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH2 0x120 JUMP JUMPDEST DUP3 AND SWAP6 DUP6 DUP1 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x64A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP2 DUP7 JUMPDEST DUP9 DUP2 LT PUSH2 0x2C3 JUMPI POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 SWAP9 LT PUSH2 0x2AA JUMPI JUMPDEST POP POP POP DUP2 SHL ADD DUP4 SSTORE PUSH2 0x135 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH2 0x29D JUMP JUMPDEST SWAP2 SWAP3 DUP6 PUSH1 0x1 DUP2 SWAP3 DUP7 DUP6 ADD MLOAD DUP2 SSTORE ADD SWAP5 ADD SWAP3 ADD PUSH2 0x288 JUMP JUMPDEST DUP6 DUP1 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x64A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD SWAP2 DUP6 DUP6 LT PUSH2 0x31F JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP1 JUMPDEST DUP2 DUP2 LT PUSH2 0x314 JUMPI POP PUSH2 0x104 JUMP JUMPDEST DUP7 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x307 JUMP JUMPDEST SWAP1 SWAP2 POP DUP2 SWAP1 PUSH2 0x2FE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP6 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 REVERT JUMPDEST DUP7 DUP1 REVERT JUMPDEST DUP4 DUP1 REVERT JUMPDEST POP DUP1 REVERT JUMPDEST DUP1 REVERT JUMPDEST POP SWAP1 CALLVALUE PUSH2 0x345 JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x345 JUMPI PUSH2 0x375 SWAP1 PUSH2 0x36A PUSH2 0x517 JUMP JUMPDEST SWAP1 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x4CE JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST POP SWAP1 CALLVALUE PUSH2 0x345 JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x345 JUMPI PUSH2 0x375 SWAP1 PUSH2 0x36A PUSH2 0x425 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x3C7 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x3B1 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH2 0x3A6 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x3ED JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0x3ED JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH1 0x0 DUP3 DUP2 SLOAD SWAP2 PUSH2 0x438 DUP4 PUSH2 0x397 JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x4AC JUMPI POP PUSH1 0x1 EQ PUSH2 0x461 JUMPI JUMPDEST POP PUSH2 0x45F SWAP3 POP SUB DUP4 PUSH2 0x403 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 MSTORE SWAP2 POP PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x64A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE JUMPDEST DUP5 DUP4 LT PUSH2 0x491 JUMPI POP PUSH2 0x45F SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x452 JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP11 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP6 SWAP3 PUSH2 0x478 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x45F SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x452 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP2 DUP4 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP4 SWAP3 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x503 JUMPI POP POP PUSH1 0x40 SWAP3 SWAP4 POP PUSH1 0x0 DUP4 DUP3 DUP5 ADD ADD MSTORE PUSH1 0x1F DUP1 NOT SWAP2 ADD AND ADD ADD SWAP1 JUMP JUMPDEST DUP2 DUP2 ADD DUP7 ADD MLOAD DUP5 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP6 ADD PUSH2 0x4E1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP1 PUSH2 0x537 PUSH1 0x20 SWAP3 PUSH8 0xCC0273E704F59141 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x551 DUP2 MLOAD PUSH8 0x30B5ACA458797952 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x56B DUP2 MLOAD PUSH8 0x7BD8B93D643B0BD8 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH1 0xB NUMBER MOD PUSH2 0x5EF JUMPI DUP1 PUSH2 0x5A6 PUSH20 0x4765744E616D65204F766572726964656E204571 PUSH1 0x60 SHL SWAP3 MLOAD PUSH8 0x8A231FED8FC8C5EA DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x5C0 DUP2 MLOAD PUSH8 0xDA4F10AB71ED3B94 DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x5DA DUP2 MLOAD PUSH8 0xA5414C91ED9F19E DUP6 DUP3 ADD MSTORE DUP5 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST MLOAD SWAP2 PUSH2 0x5E5 DUP4 PUSH2 0x3D1 JUMP JUMPDEST PUSH1 0x14 DUP4 MSTORE DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST SWAP1 DUP2 PUSH2 0x60E PUSH2 0x63E SWAP4 MLOAD PUSH8 0x731E5F0E666CBBE1 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x628 DUP2 MLOAD PUSH8 0xD19BFC0FBCAF6BF1 DUP5 DUP3 ADD MSTORE DUP4 DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST MLOAD SWAP1 PUSH8 0xD8EAE10B6ACA7218 DUP2 DUP4 ADD MSTORE DUP2 MSTORE PUSH2 0x3D1 JUMP JUMPDEST PUSH2 0x646 PUSH2 0x425 JUMP JUMPDEST SWAP1 JUMP INVALID 0x29 0xD 0xEC 0xD9 SLOAD DUP12 PUSH3 0xA8D603 GASLIMIT 0xA9 DUP9 CODESIZE PUSH16 0xC84BA6BC95484008F6362F93160EF3E5 PUSH4 0xA2646970 PUSH7 0x73582212205B98 LOG0 0xBE SWAP9 0xB3 0xC8 PUSH12 0x2323B21298E044C532DF5325 0x2E RETURNDATASIZE 0x4C SAR SHR 0xF9 PUSH17 0xDAC37C73A864736F6C6343000814003300 ","sourceMap":"0:1384:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;520:30;0:1384;;531:18;520:30;;;0:1384;520:30;;;;:::i;:::-;570;0:1384;;581:18;570:30;;;0:1384;570:30;;;;:::i;:::-;0:1384;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;637:30;0:1384;;648:18;637:30;;;0:1384;637:30;;;;:::i;:::-;690;0:1384;;701:18;690:30;;;0:1384;690:30;;;;:::i;:::-;0:1384;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;745:13;;;;;;;0:1384;;;;;;;;-1:-1:-1;0:1384:0;;-1:-1:-1;;;;;;;;;;;0:1384:0;;;;;;-1:-1:-1;;;;0:1384:0;;;;745:13;0:1384;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;0:1384:0;;;;;-1:-1:-1;;;0:1384:0;;;;;;;;-1:-1:-1;0:1384:0;745:13;0:1384;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;-1:-1:-1;;;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:::o;:::-;;;;;;-1:-1:-1;;;;;;;;;;;;0:1384:0;;;;;;-1:-1:-1;0:1384:0;;-1:-1:-1;;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;0:1384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;771:611;0:1384;;;828:30;;;;839:18;828:30;;;0:1384;828:30;;;;:::i;:::-;878;0:1384;;889:18;878:30;;;0:1384;878:30;;;;:::i;:::-;931;0:1384;;942:18;931:30;;;0:1384;931:30;;;;:::i;:::-;1000:2;985:12;0:1384;1000:2;;0:1384;1010:30;-1:-1:-1;;;0:1384:0;;1021:18;1010:30;;;0:1384;1010:30;;;;:::i;:::-;1058;0:1384;;1069:18;1058:30;;;0:1384;1058:30;;;;:::i;:::-;1115;0:1384;;1126:18;1115:30;;;0:1384;1115:30;;;;:::i;:::-;0:1384;;;;;:::i;:::-;;;;;;;1165:29;:::o;981:279::-;0:1384;;1212:30;1314;0:1384;;1223:18;1212:30;;;0:1384;1212:30;;;;:::i;:::-;1261;0:1384;;1272:18;1261:30;;;0:1384;1261:30;;;;:::i;:::-;0:1384;1314:30;1325:18;1314:30;;;0:1384;1314:30;;;:::i;:::-;0:1384;;:::i;:::-;771:611;:::o"},"methodIdentifiers":{"getName()":"17d7de7c","name()":"06fdde03","setName(string)":"c47f0027"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newName\",\"type\":\"string\"}],\"name\":\"Updated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getName\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"}],\"name\":\"setName\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"coverage/contracts/test/fixtures/coverage/Foo.sol\":\"Foo\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"coverage/contracts/test/fixtures/coverage/Foo.sol\":{\"keccak256\":\"0xd38453874e319d659a9d3e797b9ca479a512f47c2d0614d2e4dea3ac36080d16\",\"urls\":[\"bzz-raw://5cd6f5a71e2a0e93e3e933f856e0928f358e508de30369714b8a451ab49ce1c4\",\"dweb:/ipfs/QmZNXA5MLDyA5aJoSMviCaFoJZiAfRci2b3V7zdvGiMpYQ\"]}},\"version\":1}"}}}}}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-cache-2",
|
|
3
|
+
"files": {
|
|
4
|
+
"/home/runner/work/hardhat/hardhat/coverage/contracts/test/fixtures/coverage/Foo.sol": {
|
|
5
|
+
"lastModificationDate": 1764846117580,
|
|
6
|
+
"contentHash": "3867fe733d707529b35534b0f07ffb91",
|
|
7
|
+
"sourceName": "coverage/contracts/test/fixtures/coverage/Foo.sol",
|
|
8
|
+
"solcConfig": {
|
|
9
|
+
"version": "0.8.20",
|
|
10
|
+
"settings": {
|
|
11
|
+
"optimizer": {
|
|
12
|
+
"enabled": true,
|
|
13
|
+
"runs": 200
|
|
14
|
+
},
|
|
15
|
+
"viaIR": true,
|
|
16
|
+
"evmVersion": "paris",
|
|
17
|
+
"outputSelection": {
|
|
18
|
+
"*": {
|
|
19
|
+
"*": [
|
|
20
|
+
"abi",
|
|
21
|
+
"evm.bytecode",
|
|
22
|
+
"evm.deployedBytecode",
|
|
23
|
+
"evm.methodIdentifiers",
|
|
24
|
+
"metadata"
|
|
25
|
+
],
|
|
26
|
+
"": [
|
|
27
|
+
"ast"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"imports": [],
|
|
34
|
+
"versionPragmas": [],
|
|
35
|
+
"artifacts": [
|
|
36
|
+
"Foo"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|