@artblocks/contracts 1.2.1 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/contracts/BytecodeStorageReaders/BytecodeStorageReaderContractV2_Web3Call.sol/BytecodeStorageReaderContractV2_Web3Call.json +201 -0
- package/artifacts/contracts/BytecodeStorageReaders/UniversalBytecodeStorageReader.sol/UniversalBytecodeStorageReader.json +2 -2
- package/artifacts/contracts/DependencyRegistryV0.sol/DependencyRegistryV0.json +42 -53
- package/artifacts/contracts/engine/V3/GenArt721CoreV3_Engine_Flex.sol/GenArt721CoreV3_Engine_Flex.json +2 -2
- package/artifacts/contracts/generator/GenArt721GeneratorV0.sol/GenArt721GeneratorV0.json +2 -2
- package/artifacts/contracts/interfaces/v0.8.x/IDelegateRegistry.sol/IDelegateRegistry.json +820 -0
- package/artifacts/contracts/interfaces/v0.8.x/IDependencyRegistryV0.sol/IDependencyRegistryV0.json +13 -0
- package/artifacts/contracts/interfaces/v0.8.x/IPMPAugmentHook.sol/IPMPAugmentHook.json +83 -0
- package/artifacts/contracts/interfaces/v0.8.x/IPMPConfigureHook.sol/IPMPConfigureHook.json +80 -0
- package/artifacts/contracts/interfaces/v0.8.x/IPMPV0.sol/IPMPV0.json +402 -0
- package/artifacts/contracts/interfaces/v0.8.x/IUniversalBytecodeStorageReader.sol/IUniversalBytecodeStorageReader.json +13 -0
- package/artifacts/contracts/interfaces/v0.8.x/IWeb3Call.sol/IWeb3Call.json +47 -0
- package/artifacts/contracts/libs/integration-refs/delegation-registry/DelegateRegistry.sol/DelegateRegistry.json +846 -0
- package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryHashes.sol/RegistryHashes.json +10 -0
- package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryOps.sol/RegistryOps.json +10 -0
- package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryStorage.sol/RegistryStorage.json +10 -0
- package/artifacts/contracts/libs/v0.8.x/DependencyRegistryStorageLib.sol/DependencyRegistryStorageLib.json +2 -2
- package/artifacts/contracts/libs/v0.8.x/ImmutableStringArray.sol/ImmutableStringArray.json +10 -0
- package/artifacts/contracts/libs/v0.8.x/V3FlexLib.sol/V3FlexLib.json +2 -2
- package/artifacts/contracts/mock/ImmutableStringArrayMock.sol/ImmutableStringArrayMock.json +69 -0
- package/artifacts/contracts/mock/MockPMPAugmentHook.sol/MockPMPAugmentHook.json +214 -0
- package/artifacts/contracts/mock/MockPMPConfigureHook.sol/MockPMPConfigureHook.json +236 -0
- package/artifacts/contracts/web3call/PMPV0.sol/PMPV0.json +629 -0
- package/artifacts/contracts/web3call/Web3Call.sol/Web3Call.json +66 -0
- package/artifacts/contracts/web3call/augment-hooks/AbstractPMPAugmentHook.sol/AbstractPMPAugmentHook.json +83 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectBaseGasFee.sol/InjectBaseGasFee.json +83 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol/IUniswapV2Pair.json +60 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol/InjectChromieSquiggleFloorPrice.json +107 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectIsNounsDaoMember.sol/InjectIsNounsDaoMember.json +96 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectIsProjectFullyMinted.sol/InjectIsProjectFullyMinted.json +83 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectPolyptychTokenHash.sol/InjectPolyptychTokenHash.json +141 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectTokenHashSeed.sol/InjectTokenHashSeed.json +99 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectTokenOwner.sol/InjectTokenOwner.json +99 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectTokenOwnerEthBalance.sol/InjectTokenOwnerEthBalance.json +83 -0
- package/artifacts/contracts/web3call/augment-hooks/InjectUSDCTotalSupply.sol/InjectUSDCTotalSupply.json +107 -0
- package/artifacts/contracts/web3call/configure-hooks/abstractPMPConfigureHook.sol/AbstractPMPConfigureHook.json +80 -0
- package/contracts/BytecodeStorageReaders/BytecodeStorageReaderContractV2_Web3Call.sol +128 -0
- package/contracts/DependencyRegistryV0.sol +67 -28
- package/contracts/engine/V3/GenArt721CoreV3_Engine_Flex.sol +7 -1
- package/contracts/generator/GenArt721GeneratorV0.sol +77 -8
- package/contracts/interfaces/v0.8.x/IDelegateRegistry.sol +318 -0
- package/contracts/interfaces/v0.8.x/IDependencyRegistryV0.sol +2 -0
- package/contracts/interfaces/v0.8.x/IPMPAugmentHook.sol +31 -0
- package/contracts/interfaces/v0.8.x/IPMPConfigureHook.sol +25 -0
- package/contracts/interfaces/v0.8.x/IPMPV0.sol +224 -0
- package/contracts/interfaces/v0.8.x/IUniversalBytecodeStorageReader.sol +5 -0
- package/contracts/interfaces/v0.8.x/IWeb3Call.sol +28 -0
- package/contracts/libs/integration-refs/delegation-registry/DelegateRegistry.sol +753 -0
- package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryHashes.sol +359 -0
- package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryOps.sol +31 -0
- package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryStorage.sol +87 -0
- package/contracts/libs/v0.8.x/DependencyRegistryStorageLib.sol +3 -0
- package/contracts/libs/v0.8.x/ImmutableStringArray.sol +301 -0
- package/contracts/libs/v0.8.x/V3FlexLib.sol +7 -1
- package/contracts/mock/ImmutableStringArrayMock.sol +47 -0
- package/contracts/mock/MockPMPAugmentHook.sol +170 -0
- package/contracts/mock/MockPMPConfigureHook.sol +78 -0
- package/contracts/web3call/PMPV0.sol +1126 -0
- package/contracts/web3call/Web3Call.sol +25 -0
- package/contracts/web3call/augment-hooks/AbstractPMPAugmentHook.sol +46 -0
- package/contracts/web3call/augment-hooks/InjectBaseGasFee.sol +57 -0
- package/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol +103 -0
- package/contracts/web3call/augment-hooks/InjectIsNounsDaoMember.sol +66 -0
- package/contracts/web3call/augment-hooks/InjectIsProjectFullyMinted.sol +73 -0
- package/contracts/web3call/augment-hooks/InjectPolyptychTokenHash.sol +88 -0
- package/contracts/web3call/augment-hooks/InjectTokenHashSeed.sol +62 -0
- package/contracts/web3call/augment-hooks/InjectTokenOwner.sol +60 -0
- package/contracts/web3call/augment-hooks/InjectTokenOwnerEthBalance.sol +61 -0
- package/contracts/web3call/augment-hooks/InjectUSDCTotalSupply.sol +69 -0
- package/contracts/web3call/configure-hooks/abstractPMPConfigureHook.sol +41 -0
- package/package.json +5 -5
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "BytecodeStorageReaderContractV2_Web3Call",
|
|
4
|
+
"sourceName": "contracts/BytecodeStorageReaders/BytecodeStorageReaderContractV2_Web3Call.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "VERSION",
|
|
9
|
+
"outputs": [
|
|
10
|
+
{
|
|
11
|
+
"internalType": "string",
|
|
12
|
+
"name": "",
|
|
13
|
+
"type": "string"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"stateMutability": "view",
|
|
17
|
+
"type": "function"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"inputs": [
|
|
21
|
+
{
|
|
22
|
+
"internalType": "address",
|
|
23
|
+
"name": "_address",
|
|
24
|
+
"type": "address"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"name": "getIsCompressedForBytecode",
|
|
28
|
+
"outputs": [
|
|
29
|
+
{
|
|
30
|
+
"internalType": "bool",
|
|
31
|
+
"name": "",
|
|
32
|
+
"type": "bool"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"stateMutability": "view",
|
|
36
|
+
"type": "function"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"inputs": [
|
|
40
|
+
{
|
|
41
|
+
"internalType": "address",
|
|
42
|
+
"name": "address_",
|
|
43
|
+
"type": "address"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"name": "getLibraryVersionForBytecode",
|
|
47
|
+
"outputs": [
|
|
48
|
+
{
|
|
49
|
+
"internalType": "bytes32",
|
|
50
|
+
"name": "",
|
|
51
|
+
"type": "bytes32"
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"stateMutability": "view",
|
|
55
|
+
"type": "function"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"inputs": [
|
|
59
|
+
{
|
|
60
|
+
"internalType": "address",
|
|
61
|
+
"name": "address_",
|
|
62
|
+
"type": "address"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"name": "getWriterAddressForBytecode",
|
|
66
|
+
"outputs": [
|
|
67
|
+
{
|
|
68
|
+
"internalType": "address",
|
|
69
|
+
"name": "",
|
|
70
|
+
"type": "address"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"stateMutability": "view",
|
|
74
|
+
"type": "function"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"inputs": [
|
|
78
|
+
{
|
|
79
|
+
"internalType": "address",
|
|
80
|
+
"name": "address_",
|
|
81
|
+
"type": "address"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"internalType": "uint256",
|
|
85
|
+
"name": "offset",
|
|
86
|
+
"type": "uint256"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"name": "readBytesFromBytecode",
|
|
90
|
+
"outputs": [
|
|
91
|
+
{
|
|
92
|
+
"internalType": "bytes",
|
|
93
|
+
"name": "",
|
|
94
|
+
"type": "bytes"
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"stateMutability": "view",
|
|
98
|
+
"type": "function"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"inputs": [
|
|
102
|
+
{
|
|
103
|
+
"internalType": "address",
|
|
104
|
+
"name": "address_",
|
|
105
|
+
"type": "address"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"name": "readBytesFromSSTORE2Bytecode",
|
|
109
|
+
"outputs": [
|
|
110
|
+
{
|
|
111
|
+
"internalType": "bytes",
|
|
112
|
+
"name": "",
|
|
113
|
+
"type": "bytes"
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"stateMutability": "view",
|
|
117
|
+
"type": "function"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"inputs": [
|
|
121
|
+
{
|
|
122
|
+
"internalType": "address",
|
|
123
|
+
"name": "address_",
|
|
124
|
+
"type": "address"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"name": "readFromBytecode",
|
|
128
|
+
"outputs": [
|
|
129
|
+
{
|
|
130
|
+
"internalType": "string",
|
|
131
|
+
"name": "",
|
|
132
|
+
"type": "string"
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"stateMutability": "view",
|
|
136
|
+
"type": "function"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"bytecode": "0x608060405234801561001057600080fd5b5061087f806100206000396000f3fe608060405234801561001057600080fd5b506004361061006d5760003560e01c80632475d7091461007257806342e832e01461009b57806375662f38146100bb57806387630c15146100ce578063cc31a331146100e1578063f667001414610102578063ffa1ad7414610125575b600080fd5b610085610080366004610630565b61012d565b604051610092919061069d565b60405180910390f35b6100ae6100a9366004610630565b6101bb565b60405161009291906106b0565b6100856100c9366004610630565b61023f565b6100856100dc3660046106c4565b61038a565b6100f46100ef366004610630565b61041b565b604051908152602001610092565b610115610110366004610630565b61049f565b6040519015158152602001610092565b610085610523565b604051632475d70960e01b815260609073__$a84cab3dc26412b6358fa38e3bc69cb812$__90632475d70990610170906001600160a01b038616906004016106b0565b600060405180830381865af415801561018d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526101b59190810190610779565b92915050565b604051630217419760e51b815260009073__$a84cab3dc26412b6358fa38e3bc69cb812$__906342e832e0906101fe906001600160a01b038616906004016106b0565b602060405180830381865af415801561021b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101b591906107c9565b604051630eacc5e760e31b815260609073__$a84cab3dc26412b6358fa38e3bc69cb812$__906375662f3890610282906001600160a01b038616906004016106b0565b600060405180830381865af49250505080156102c057506040513d6000823e601f3d908101601f191682016040526102bd9190810190610779565b60015b6101b5576102d58263c2b4f41160e01b61053f565b15610309575050604080518082019091526013815272237765623363616c6c5f636f6e74726163742360681b602082015290565b60405162461bcd60e51b815260206004820152604660248201527f42797465636f646553746f72616765526561646572436f6e747261637456325f60448201527f5765623343616c6c3a204661696c656420746f20726561642066726f6d2062796064820152657465636f646560d01b608482015260a40160405180910390fd5b6040516387630c1560e01b81526001600160a01b03831660048201526024810182905260609073__$a84cab3dc26412b6358fa38e3bc69cb812$__906387630c1590604401600060405180830381865af41580156103ec573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104149190810190610779565b9392505050565b60405163cc31a33160e01b815260009073__$a84cab3dc26412b6358fa38e3bc69cb812$__9063cc31a3319061045e906001600160a01b038616906004016106b0565b602060405180830381865af415801561047b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101b591906107e6565b604051633d99c00560e21b815260009073__$a84cab3dc26412b6358fa38e3bc69cb812$__9063f6670014906104e2906001600160a01b038616906004016106b0565b602060405180830381865af41580156104ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101b591906107ff565b6040518060600160405280602881526020016108226028913981565b600061054a8361055b565b80156104145750610414838361058e565b600061056e826301ffc9a760e01b61058e565b80156101b55750610587826001600160e01b031961058e565b1592915050565b6040516001600160e01b031982166024820152600090819060440160408051601f19818403018152919052602080820180516001600160e01b03166301ffc9a760e01b178152825192935060009283928392909183918a617530fa92503d91506000519050828015610601575060208210155b801561060d5750600081115b979650505050505050565b6001600160a01b038116811461062d57600080fd5b50565b60006020828403121561064257600080fd5b813561041481610618565b60005b83811015610668578181015183820152602001610650565b50506000910152565b6000815180845261068981602086016020860161064d565b601f01601f19169290920160200192915050565b6020815260006104146020830184610671565b6001600160a01b0391909116815260200190565b600080604083850312156106d757600080fd5b82356106e281610618565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115610720576107206106f0565b604051601f8501601f19908116603f01168101908282118183101715610748576107486106f0565b8160405280935085815286868601111561076157600080fd5b61076f86602083018761064d565b5050509392505050565b60006020828403121561078b57600080fd5b81516001600160401b038111156107a157600080fd5b8201601f810184136107b257600080fd5b6107c184825160208401610706565b949350505050565b6000602082840312156107db57600080fd5b815161041481610618565b6000602082840312156107f857600080fd5b5051919050565b60006020828403121561081157600080fd5b8151801515811461041457600080fdfe42797465636f646553746f72616765526561646572436f6e747261637456325f5765623343616c6ca264697066735822122039a5c52bfda6cefa2c8b077cae02c86b40915a5078b3e55370d25e7f35511a1164736f6c63430008160033",
|
|
140
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061006d5760003560e01c80632475d7091461007257806342e832e01461009b57806375662f38146100bb57806387630c15146100ce578063cc31a331146100e1578063f667001414610102578063ffa1ad7414610125575b600080fd5b610085610080366004610630565b61012d565b604051610092919061069d565b60405180910390f35b6100ae6100a9366004610630565b6101bb565b60405161009291906106b0565b6100856100c9366004610630565b61023f565b6100856100dc3660046106c4565b61038a565b6100f46100ef366004610630565b61041b565b604051908152602001610092565b610115610110366004610630565b61049f565b6040519015158152602001610092565b610085610523565b604051632475d70960e01b815260609073__$a84cab3dc26412b6358fa38e3bc69cb812$__90632475d70990610170906001600160a01b038616906004016106b0565b600060405180830381865af415801561018d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526101b59190810190610779565b92915050565b604051630217419760e51b815260009073__$a84cab3dc26412b6358fa38e3bc69cb812$__906342e832e0906101fe906001600160a01b038616906004016106b0565b602060405180830381865af415801561021b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101b591906107c9565b604051630eacc5e760e31b815260609073__$a84cab3dc26412b6358fa38e3bc69cb812$__906375662f3890610282906001600160a01b038616906004016106b0565b600060405180830381865af49250505080156102c057506040513d6000823e601f3d908101601f191682016040526102bd9190810190610779565b60015b6101b5576102d58263c2b4f41160e01b61053f565b15610309575050604080518082019091526013815272237765623363616c6c5f636f6e74726163742360681b602082015290565b60405162461bcd60e51b815260206004820152604660248201527f42797465636f646553746f72616765526561646572436f6e747261637456325f60448201527f5765623343616c6c3a204661696c656420746f20726561642066726f6d2062796064820152657465636f646560d01b608482015260a40160405180910390fd5b6040516387630c1560e01b81526001600160a01b03831660048201526024810182905260609073__$a84cab3dc26412b6358fa38e3bc69cb812$__906387630c1590604401600060405180830381865af41580156103ec573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104149190810190610779565b9392505050565b60405163cc31a33160e01b815260009073__$a84cab3dc26412b6358fa38e3bc69cb812$__9063cc31a3319061045e906001600160a01b038616906004016106b0565b602060405180830381865af415801561047b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101b591906107e6565b604051633d99c00560e21b815260009073__$a84cab3dc26412b6358fa38e3bc69cb812$__9063f6670014906104e2906001600160a01b038616906004016106b0565b602060405180830381865af41580156104ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101b591906107ff565b6040518060600160405280602881526020016108226028913981565b600061054a8361055b565b80156104145750610414838361058e565b600061056e826301ffc9a760e01b61058e565b80156101b55750610587826001600160e01b031961058e565b1592915050565b6040516001600160e01b031982166024820152600090819060440160408051601f19818403018152919052602080820180516001600160e01b03166301ffc9a760e01b178152825192935060009283928392909183918a617530fa92503d91506000519050828015610601575060208210155b801561060d5750600081115b979650505050505050565b6001600160a01b038116811461062d57600080fd5b50565b60006020828403121561064257600080fd5b813561041481610618565b60005b83811015610668578181015183820152602001610650565b50506000910152565b6000815180845261068981602086016020860161064d565b601f01601f19169290920160200192915050565b6020815260006104146020830184610671565b6001600160a01b0391909116815260200190565b600080604083850312156106d757600080fd5b82356106e281610618565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115610720576107206106f0565b604051601f8501601f19908116603f01168101908282118183101715610748576107486106f0565b8160405280935085815286868601111561076157600080fd5b61076f86602083018761064d565b5050509392505050565b60006020828403121561078b57600080fd5b81516001600160401b038111156107a157600080fd5b8201601f810184136107b257600080fd5b6107c184825160208401610706565b949350505050565b6000602082840312156107db57600080fd5b815161041481610618565b6000602082840312156107f857600080fd5b5051919050565b60006020828403121561081157600080fd5b8151801515811461041457600080fdfe42797465636f646553746f72616765526561646572436f6e747261637456325f5765623343616c6ca264697066735822122039a5c52bfda6cefa2c8b077cae02c86b40915a5078b3e55370d25e7f35511a1164736f6c63430008160033",
|
|
141
|
+
"linkReferences": {
|
|
142
|
+
"contracts/libs/v0.8.x/BytecodeStorageV2.sol": {
|
|
143
|
+
"BytecodeStorageReader": [
|
|
144
|
+
{
|
|
145
|
+
"length": 20,
|
|
146
|
+
"start": 351
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"length": 20,
|
|
150
|
+
"start": 493
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"length": 20,
|
|
154
|
+
"start": 625
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"length": 20,
|
|
158
|
+
"start": 978
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"length": 20,
|
|
162
|
+
"start": 1101
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"length": 20,
|
|
166
|
+
"start": 1233
|
|
167
|
+
}
|
|
168
|
+
]
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"deployedLinkReferences": {
|
|
172
|
+
"contracts/libs/v0.8.x/BytecodeStorageV2.sol": {
|
|
173
|
+
"BytecodeStorageReader": [
|
|
174
|
+
{
|
|
175
|
+
"length": 20,
|
|
176
|
+
"start": 319
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"length": 20,
|
|
180
|
+
"start": 461
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"length": 20,
|
|
184
|
+
"start": 593
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"length": 20,
|
|
188
|
+
"start": 946
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"length": 20,
|
|
192
|
+
"start": 1069
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"length": 20,
|
|
196
|
+
"start": 1201
|
|
197
|
+
}
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
@@ -147,8 +147,8 @@
|
|
|
147
147
|
"type": "function"
|
|
148
148
|
}
|
|
149
149
|
],
|
|
150
|
-
"bytecode": "
|
|
151
|
-
"deployedBytecode": "
|
|
150
|
+
"bytecode": "0x608060405234801561001057600080fd5b5060405161053b38038061053b83398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b61043e806100fd6000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c806310ba84aa14610067578063715018a61461009057806375662f381461009a5780638da5cb5b146100ba578063993c0cbf146100c2578063f2fde38b146100d5575b600080fd5b60015461007a906001600160a01b031681565b60405161008791906102a2565b60405180910390f35b6100986100e8565b005b6100ad6100a83660046102cb565b6100fc565b6040516100879190610313565b61007a610178565b6100986100d03660046102cb565b610187565b6100986100e33660046102cb565b6101d9565b6100f0610220565b6100fa6000610252565b565b600154604051630eacc5e760e31b81526060916001600160a01b0316906375662f389061012d9085906004016102a2565b600060405180830381865afa15801561014a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610172919081019061035c565b92915050565b6000546001600160a01b031690565b61018f610220565b600180546001600160a01b0319166001600160a01b0383169081179091556040517f9b5e1beb1e6649002b63d33952d5d892fecf9ccc12defdf8800f910b5ddca5a490600090a250565b6101e1610220565b6001600160a01b038116610214576000604051631e4fbdf760e01b815260040161020b91906102a2565b60405180910390fd5b61021d81610252565b50565b33610229610178565b6001600160a01b0316146100fa573360405163118cdaa760e01b815260040161020b91906102a2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0391909116815260200190565b6001600160a01b038116811461021d57600080fd5b6000602082840312156102dd57600080fd5b81356102e8816102b6565b9392505050565b60005b8381101561030a5781810151838201526020016102f2565b50506000910152565b60208152600082518060208401526103328160408501602087016102ef565b601f01601f19169190910160400192915050565b634e487b7160e01b600052604160045260246000fd5b60006020828403121561036e57600080fd5b81516001600160401b038082111561038557600080fd5b818401915084601f83011261039957600080fd5b8151818111156103ab576103ab610346565b604051601f8201601f19908116603f011681019083821181831017156103d3576103d3610346565b816040528281528760208487010111156103ec57600080fd5b6103fd8360208301602088016102ef565b97965050505050505056fea2646970667358221220eced404b76b2daeab58d93faf4b27fa79db17f8e6a5bc8d41e4c6de7f95e85cd64736f6c63430008160033",
|
|
151
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100625760003560e01c806310ba84aa14610067578063715018a61461009057806375662f381461009a5780638da5cb5b146100ba578063993c0cbf146100c2578063f2fde38b146100d5575b600080fd5b60015461007a906001600160a01b031681565b60405161008791906102a2565b60405180910390f35b6100986100e8565b005b6100ad6100a83660046102cb565b6100fc565b6040516100879190610313565b61007a610178565b6100986100d03660046102cb565b610187565b6100986100e33660046102cb565b6101d9565b6100f0610220565b6100fa6000610252565b565b600154604051630eacc5e760e31b81526060916001600160a01b0316906375662f389061012d9085906004016102a2565b600060405180830381865afa15801561014a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610172919081019061035c565b92915050565b6000546001600160a01b031690565b61018f610220565b600180546001600160a01b0319166001600160a01b0383169081179091556040517f9b5e1beb1e6649002b63d33952d5d892fecf9ccc12defdf8800f910b5ddca5a490600090a250565b6101e1610220565b6001600160a01b038116610214576000604051631e4fbdf760e01b815260040161020b91906102a2565b60405180910390fd5b61021d81610252565b50565b33610229610178565b6001600160a01b0316146100fa573360405163118cdaa760e01b815260040161020b91906102a2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0391909116815260200190565b6001600160a01b038116811461021d57600080fd5b6000602082840312156102dd57600080fd5b81356102e8816102b6565b9392505050565b60005b8381101561030a5781810151838201526020016102f2565b50506000910152565b60208152600082518060208401526103328160408501602087016102ef565b601f01601f19169190910160400192915050565b634e487b7160e01b600052604160045260246000fd5b60006020828403121561036e57600080fd5b81516001600160401b038082111561038557600080fd5b818401915084601f83011261039957600080fd5b8151818111156103ab576103ab610346565b604051601f8201601f19908116603f011681019083821181831017156103d3576103d3610346565b816040528281528760208487010111156103ec57600080fd5b6103fd8360208301602088016102ef565b97965050505050505056fea2646970667358221220eced404b76b2daeab58d93faf4b27fa79db17f8e6a5bc8d41e4c6de7f95e85cd64736f6c63430008160033",
|
|
152
152
|
"linkReferences": {},
|
|
153
153
|
"deployedLinkReferences": {}
|
|
154
154
|
}
|