foundry icon indicating copy to clipboard operation
foundry copied to clipboard

forge build with evm_version 'paris' produces PUSH0 opcode in output artifacts

Open jaketimothy opened this issue 2 years ago • 6 comments

Component

Forge

Have you ensured that all of these are up to date?

  • [X] Foundry
  • [X] Foundryup

What version of Foundry are you on?

forge 0.2.0 (d48ff70 2024-01-29T21:27:38.959956000Z)

What command(s) is the bug in?

forge build

Operating System

macOS (Apple Silicon)

Describe the bug

My foundry.toml contains the following config under [profile.default].

solc_version = '0.8.22'
evm_version = 'paris'

When I build with the following commands, the output opcodes in the out directory contain PUSH0.

  • forge build --force --extra-output evm.bytecode.opcodes
  • forge build --evm-version paris --force --extra-output evm.bytecode.opcodes

My understanding is that specifying an EVM version prior to shanghai should be sufficient to prevent PUSH0 opcodes from being generated in the bytecode.

I'm observing this specifically when building MockToken here.

jaketimothy avatar Jan 30 '24 00:01 jaketimothy

interesting, the contract artifact's metadata include evm version paris, so unclear what's going on here

{"abi":[{"type":"constructor","inputs":[{"name":"name_","type":"string","internalType":"string"},{"name":"symbol_","type":"string","internalType":"string"}],"stateMutability":"nonpayable"},{"type":"function","name":"DEFAULT_ADMIN_ROLE","inputs":[],"outputs":[{"name":"","type":"bytes32","internalType":"bytes32"}],"stateMutability":"view"},{"type":"function","name":"DOMAIN_SEPARATOR","inputs":[],"outputs":[{"name":"","type":"bytes32","internalType":"bytes32"}],"stateMutability":"view"},{"type":"function","name":"MINTER_ROLE","inputs":[],"outputs":[{"name":"","type":"bytes32","internalType":"bytes32"}],"stateMutability":"view"},{"type":"function","name":"allowance","inputs":[{"name":"owner","type":"address","internalType":"address"},{"name":"spender","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"uint256","internalType":"uint256"}],"stateMutability":"view"},{"type":"function","name":"approve","inputs":[{"name":"spender","type":"address","internalType":"address"},{"name":"value","type":"uint256","internalType":"uint256"}],"outputs":[{"name":"","type":"bool","internalType":"bool"}],"stateMutability":"nonpayable"},{"type":"function","name":"balanceOf","inputs":[{"name":"account","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"uint256","internalType":"uint256"}],"stateMutability":"view"},{"type":"function","name":"blacklist","inputs":[{"name":"account","type":"address","internalType":"address"}],"outputs":[],"stateMutability":"nonpayable"},{"type":"function","name":"decimals","inputs":[],"outputs":[{"name":"","type":"uint8","internalType":"uint8"}],"stateMutability":"pure"},{"type":"function","name":"eip712Domain","inputs":[],"outputs":[{"name":"fields","type":"bytes1","internalType":"bytes1"},{"name":"name","type":"string","internalType":"string"},{"name":"version","type":"string","internalType":"string"},{"name":"chainId","type":"uint256","internalType":"uint256"},{"name":"verifyingContract","type":"address","internalType":"address"},{"name":"salt","type":"bytes32","internalType":"bytes32"},{"name":"extensions","type":"uint256[]","internalType":"uint256[]"}],"stateMutability":"view"},{"type":"function","name":"getRoleAdmin","inputs":[{"name":"role","type":"bytes32","internalType":"bytes32"}],"outputs":[{"name":"","type":"bytes32","internalType":"bytes32"}],"stateMutability":"view"},{"type":"function","name":"grantRole","inputs":[{"name":"role","type":"bytes32","internalType":"bytes32"},{"name":"account","type":"address","internalType":"address"}],"outputs":[],"stateMutability":"nonpayable"},{"type":"function","name":"hasRole","inputs":[{"name":"role","type":"bytes32","internalType":"bytes32"},{"name":"account","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"bool","internalType":"bool"}],"stateMutability":"view"},{"type":"function","name":"isBlackListed","inputs":[{"name":"","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"bool","internalType":"bool"}],"stateMutability":"view"},{"type":"function","name":"isBlacklisted","inputs":[{"name":"","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"bool","internalType":"bool"}],"stateMutability":"view"},{"type":"function","name":"isBlocked","inputs":[{"name":"","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"bool","internalType":"bool"}],"stateMutability":"view"},{"type":"function","name":"mint","inputs":[{"name":"account","type":"address","internalType":"address"},{"name":"amount","type":"uint256","internalType":"uint256"}],"outputs":[],"stateMutability":"nonpayable"},{"type":"function","name":"name","inputs":[],"outputs":[{"name":"","type":"string","internalType":"string"}],"stateMutability":"view"},{"type":"function","name":"nonces","inputs":[{"name":"owner","type":"address","internalType":"address"}],"outputs":[{"name":"","type":"uint256","internalType":"uint256"}],"stateMutability":"view"},{"type":"function","name":"permit","inputs":[{"name":"owner","type":"address","internalType":"address"},{"name":"spender","type":"address","internalType":"address"},{"name":"value","type":"uint256","internalType":"uint256"},{"name":"deadline","type":"uint256","internalType":"uint256"},{"name":"v","type":"uint8","internalType":"uint8"},{"name":"r","type":"bytes32","internalType":"bytes32"},{"name":"s","type":"bytes32","internalType":"bytes32"}],"outputs":[],"stateMutability":"nonpayable"},{"type":"function","name":"renounceRole","inputs":[{"name":"role","type":"bytes32","internalType":"bytes32"},{"name":"callerConfirmation","type":"address","internalType":"address"}],"outputs":[],"stateMutability":"nonpayable"},{"type":"function","name":"revokeRole","inputs":[{"name":"role","type":"bytes32","internalType":"bytes32"},{"name":"account","type":"address","internalType":"address"}],"outputs":[],"stateMutability":"nonpayable"},{"type":"function","name":"supportsInterface","inputs":[{"name":"interfaceId","type":"bytes4","internalType":"bytes4"}],"outputs":[{"name":"","type":"bool","internalType":"bool"}],"stateMutability":"view"},{"type":"function","name":"symbol","inputs":[],"outputs":[{"name":"","type":"string","internalType":"string"}],"stateMutability":"view"},{"type":"function","name":"totalSupply","inputs":[],"outputs":[{"name":"","type":"uint256","internalType":"uint256"}],"stateMutability":"view"},{"type":"function","name":"transfer","inputs":[{"name":"to","type":"address","internalType":"address"},{"name":"value","type":"uint256","internalType":"uint256"}],"outputs":[{"name":"","type":"bool","internalType":"bool"}],"stateMutability":"nonpayable"},{"type":"function","name":"transferFrom","inputs":[{"name":"from","type":"address","internalType":"address"},{"name":"to","type":"address","internalType":"address"},{"name":"value","type":"uint256","internalType":"uint256"}],"outputs":[{"name":"","type":"bool","internalType":"bool"}],"stateMutability":"nonpayable"},{"type":"function","name":"version","inputs":[],"outputs":[{"name":"","type":"string","internalType":"string"}],"stateMutability":"view"},{"type":"event","name":"Approval","inputs":[{"name":"owner","type":"address","indexed":true,"internalType":"address"},{"name":"spender","type":"address","indexed":true,"internalType":"address"},{"name":"value","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"event","name":"EIP712DomainChanged","inputs":[],"anonymous":false},{"type":"event","name":"RoleAdminChanged","inputs":[{"name":"role","type":"bytes32","indexed":true,"internalType":"bytes32"},{"name":"previousAdminRole","type":"bytes32","indexed":true,"internalType":"bytes32"},{"name":"newAdminRole","type":"bytes32","indexed":true,"internalType":"bytes32"}],"anonymous":false},{"type":"event","name":"RoleGranted","inputs":[{"name":"role","type":"bytes32","indexed":true,"internalType":"bytes32"},{"name":"account","type":"address","indexed":true,"internalType":"address"},{"name":"sender","type":"address","indexed":true,"internalType":"address"}],"anonymous":false},{"type":"event","name":"RoleRevoked","inputs":[{"name":"role","type":"bytes32","indexed":true,"internalType":"bytes32"},{"name":"account","type":"address","indexed":true,"internalType":"address"},{"name":"sender","type":"address","indexed":true,"internalType":"address"}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"name":"from","type":"address","indexed":true,"internalType":"address"},{"name":"to","type":"address","indexed":true,"internalType":"address"},{"name":"value","type":"uint256","indexed":false,"internalType":"uint256"}],"anonymous":false},{"type":"error","name":"AccessControlBadConfirmation","inputs":[]},{"type":"error","name":"AccessControlUnauthorizedAccount","inputs":[{"name":"account","type":"address","internalType":"address"},{"name":"neededRole","type":"bytes32","internalType":"bytes32"}]},{"type":"error","name":"ECDSAInvalidSignature","inputs":[]},{"type":"error","name":"ECDSAInvalidSignatureLength","inputs":[{"name":"length","type":"uint256","internalType":"uint256"}]},{"type":"error","name":"ECDSAInvalidSignatureS","inputs":[{"name":"s","type":"bytes32","internalType":"bytes32"}]},{"type":"error","name":"ERC20InsufficientAllowance","inputs":[{"name":"spender","type":"address","internalType":"address"},{"name":"allowance","type":"uint256","internalType":"uint256"},{"name":"needed","type":"uint256","internalType":"uint256"}]},{"type":"error","name":"ERC20InsufficientBalance","inputs":[{"name":"sender","type":"address","internalType":"address"},{"name":"balance","type":"uint256","internalType":"uint256"},{"name":"needed","type":"uint256","internalType":"uint256"}]},{"type":"error","name":"ERC20InvalidApprover","inputs":[{"name":"approver","type":"address","internalType":"address"}]},{"type":"error","name":"ERC20InvalidReceiver","inputs":[{"name":"receiver","type":"address","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSender","inputs":[{"name":"sender","type":"address","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSpender","inputs":[{"name":"spender","type":"address","internalType":"address"}]},{"type":"error","name":"ERC2612ExpiredSignature","inputs":[{"name":"deadline","type":"uint256","internalType":"uint256"}]},{"type":"error","name":"ERC2612InvalidSigner","inputs":[{"name":"signer","type":"address","internalType":"address"},{"name":"owner","type":"address","internalType":"address"}]},{"type":"error","name":"InvalidAccountNonce","inputs":[{"name":"account","type":"address","internalType":"address"},{"name":"currentNonce","type":"uint256","internalType":"uint256"}]},{"type":"error","name":"InvalidShortString","inputs":[]},{"type":"error","name":"StringTooLong","inputs":[{"name":"str","type":"string","internalType":"string"}]}],"bytecode":{"object":"0x6101606040523480156200001257600080fd5b5060405162001c7238038062001c7283398101604081905262000035916200055c565b816200008760fa424460405160200162000059929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c6200007e9190620005c6565b60ff16620001d6565b8181858560036200009983826200067a565b506004620000a882826200067a565b50620000ba915083905060056200026f565b61012052620000cb8160066200026f565b61014052815160208084019190912060e052815190820120610100524660a0526200015960e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c05260086200017082826200067a565b50600a915062000183905083826200067a565b50600b6200019282826200067a565b50620001a0600033620002a8565b50620001cd7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002a8565b505050620007a0565b60606000620001e5836200035a565b60010190506000816001600160401b038111156200020757620002076200048f565b6040519080825280601f01601f19166020018201604052801562000232576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846200023c57509392505050565b60006020835110156200028f57620002878362000443565b9050620002a2565b816200029c84826200067a565b5060ff90505b92915050565b60008281526009602090815260408083206001600160a01b038516845290915281205460ff16620003515760008381526009602090815260408083206001600160a01b03861684529091529020805460ff19166001179055620003083390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001620002a2565b506000620002a2565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310620003a4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310620003d1576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310620003f057662386f26fc10000830492506010015b6305f5e100831062000409576305f5e100830492506008015b61271083106200041e57612710830492506004015b6064831062000431576064830492506002015b600a8310620002a25760010192915050565b600080829050601f815111156200047a578260405163305a27a960e01b815260040162000471919062000746565b60405180910390fd5b805162000487826200077b565b179392505050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620004c2578181015183820152602001620004a8565b50506000910152565b600082601f830112620004dd57600080fd5b81516001600160401b0380821115620004fa57620004fa6200048f565b604051601f8301601f19908116603f011681019082821181831017156200052557620005256200048f565b816040528381528660208588010111156200053f57600080fd5b62000552846020830160208901620004a5565b9695505050505050565b600080604083850312156200057057600080fd5b82516001600160401b03808211156200058857600080fd5b6200059686838701620004cb565b93506020850151915080821115620005ad57600080fd5b50620005bc85828601620004cb565b9150509250929050565b600082620005e457634e487b7160e01b600052601260045260246000fd5b500690565b600181811c90821680620005fe57607f821691505b6020821081036200061f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000675576000816000526020600020601f850160051c81016020861015620006505750805b601f850160051c820191505b8181101562000671578281556001016200065c565b5050505b505050565b81516001600160401b038111156200069657620006966200048f565b620006ae81620006a78454620005e9565b8462000625565b602080601f831160018114620006e65760008415620006cd5750858301515b600019600386901b1c1916600185901b17855562000671565b600085815260208120601f198616915b828110156200071757888601518255948401946001909101908401620006f6565b5085821015620007365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602081526000825180602084015262000767816040850160208701620004a5565b601f01601f19169190910160400192915050565b805160208083015191908110156200061f5760001960209190910360031b1b16919050565b60805160a05160c05160e051610100516101205161014051611477620007fb6000396000610bdb01526000610bae01526000610aaf01526000610a87015260006109e201526000610a0c01526000610a3601526114776000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80637ecebe00116100f9578063d539139311610097578063e47d606011610071578063e47d6060146103b3578063f9f92be4146103d6578063fbac3951146103e9578063fe575a871461040c57600080fd5b8063d539139314610340578063d547741f14610367578063dd62ed3e1461037a57600080fd5b806395d89b41116100d357806395d89b411461030a578063a217fddf14610312578063a9059cbb1461031a578063d505accf1461032d57600080fd5b80637ecebe00146102c957806384b0196e146102dc57806391d14854146102f757600080fd5b80632f2ff15d1161016657806336568abe1161014057806336568abe1461027257806340c10f191461028557806354fd4d501461029857806370a08231146102a057600080fd5b80632f2ff15d14610246578063313ce5671461025b5780633644e5151461026a57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063095ea7b3146101eb57806318160ddd146101fe57806323b872dd14610210578063248a9ca314610223575b600080fd5b6101c16101bc36600461112e565b61042f565b60405190151581526020015b60405180910390f35b6101de610466565b6040516101cd91906111a5565b6101c16101f93660046111d4565b6104f8565b6002545b6040519081526020016101cd565b6101c161021e3660046111fe565b610510565b61020261023136600461123a565b60009081526009602052604090206001015490565b610259610254366004611253565b610534565b005b604051600681526020016101cd565b61020261055f565b610259610280366004611253565b61056e565b6102596102933660046111d4565b6105a6565b6101de6105da565b6102026102ae36600461127f565b6001600160a01b031660009081526020819052604090205490565b6102026102d736600461127f565b6105e9565b6102e4610607565b6040516101cd979695949392919061129a565b6101c1610305366004611253565b61064d565b6101de610678565b610202600081565b6101c16103283660046111d4565b610687565b61025961033b366004611333565b610695565b6102027f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610259610375366004611253565b6107d4565b6102026103883660046113a6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c16103c136600461127f565b600d6020526000908152604090205460ff1681565b6102596103e436600461127f565b6107f9565b6101c16103f736600461127f565b600e6020526000908152604090205460ff1681565b6101c161041a36600461127f565b600c6020526000908152604090205460ff1681565b60006001600160e01b03198216637965db0b60e01b148061046057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610475906113d0565b80601f01602080910402602001604051908101604052809291908181526020018280546104a1906113d0565b80156104ee5780601f106104c3576101008083540402835291602001916104ee565b820191906000526020600020905b8154815290600101906020018083116104d157829003601f168201915b5050505050905090565b600033610506818585610850565b5060019392505050565b60003361051e85828561085d565b6105298585856108d5565b506001949350505050565b60008281526009602052604090206001015461054f81610934565b6105598383610941565b50505050565b60006105696109d5565b905090565b6001600160a01b03811633146105975760405163334bd91960e11b815260040160405180910390fd5b6105a18282610b00565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105d081610934565b6105a18383610b6d565b606060088054610475906113d0565b6001600160a01b038116600090815260076020526040812054610460565b60006060806000806000606061061b610ba7565b610623610bd4565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600b8054610475906113d0565b6000336105068185856108d5565b834211156106be5760405163313c898160e11b8152600481018590526024015b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861070b8c6001600160a01b0316600090815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061076682610c01565b9050600061077682878787610c2e565b9050896001600160a01b0316816001600160a01b0316146107bd576040516325c0072360e11b81526001600160a01b0380831660048301528b1660248201526044016106b5565b6107c88a8a8a610850565b50505050505050505050565b6000828152600960205260409020600101546107ef81610934565b6105598383610b00565b600061080481610934565b506001600160a01b03166000908152600c602090815260408083208054600160ff199182168117909255600d84528285208054821683179055600e909352922080549091169091179055565b6105a18383836001610c5c565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461055957818110156108c657604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106b5565b61055984848484036000610c5c565b6001600160a01b0383166108ff57604051634b637e8f60e11b8152600060048201526024016106b5565b6001600160a01b0382166109295760405163ec442f0560e01b8152600060048201526024016106b5565b6105a1838383610d31565b61093e8133610e5b565b50565b600061094d838361064d565b6109cd5760008381526009602090815260408083206001600160a01b03861684529091529020805460ff191660011790556109853390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610460565b506000610460565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610a2e57507f000000000000000000000000000000000000000000000000000000000000000046145b15610a5857507f000000000000000000000000000000000000000000000000000000000000000090565b610569604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6000610b0c838361064d565b156109cd5760008381526009602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610460565b6001600160a01b038216610b975760405163ec442f0560e01b8152600060048201526024016106b5565b610ba360008383610d31565b5050565b60606105697f00000000000000000000000000000000000000000000000000000000000000006005610e94565b60606105697f00000000000000000000000000000000000000000000000000000000000000006006610e94565b6000610460610c0e6109d5565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600080610c4088888888610f3f565b925092509250610c50828261100e565b50909695505050505050565b6001600160a01b038416610c865760405163e602df0560e01b8152600060048201526024016106b5565b6001600160a01b038316610cb057604051634a1406b160e11b8152600060048201526024016106b5565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561055957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d2391815260200190565b60405180910390a350505050565b6001600160a01b038316610d5c578060026000828254610d51919061140a565b90915550610dce9050565b6001600160a01b03831660009081526020819052604090205481811015610daf5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106b5565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610dea57600280548290039055610e09565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4e91815260200190565b60405180910390a3505050565b610e65828261064d565b610ba35760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016106b5565b606060ff8314610eae57610ea7836110c7565b9050610460565b818054610eba906113d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee6906113d0565b8015610f335780601f10610f0857610100808354040283529160200191610f33565b820191906000526020600020905b815481529060010190602001808311610f1657829003601f168201915b50505050509050610460565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610f7a5750600091506003905082611004565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610fce573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610ffa57506000925060019150829050611004565b9250600091508190505b9450945094915050565b60008260038111156110225761102261142b565b0361102b575050565b600182600381111561103f5761103f61142b565b0361105d5760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156110715761107161142b565b036110925760405163fce698f760e01b8152600481018290526024016106b5565b60038260038111156110a6576110a661142b565b03610ba3576040516335e2f38360e21b8152600481018290526024016106b5565b606060006110d483611106565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b600060ff8216601f81111561046057604051632cd44ac360e21b815260040160405180910390fd5b60006020828403121561114057600080fd5b81356001600160e01b03198116811461115857600080fd5b9392505050565b6000815180845260005b8181101561118557602081850181015186830182015201611169565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611158602083018461115f565b80356001600160a01b03811681146111cf57600080fd5b919050565b600080604083850312156111e757600080fd5b6111f0836111b8565b946020939093013593505050565b60008060006060848603121561121357600080fd5b61121c846111b8565b925061122a602085016111b8565b9150604084013590509250925092565b60006020828403121561124c57600080fd5b5035919050565b6000806040838503121561126657600080fd5b82359150611276602084016111b8565b90509250929050565b60006020828403121561129157600080fd5b611158826111b8565b60ff60f81b881681526000602060e060208401526112bb60e084018a61115f565b83810360408501526112cd818a61115f565b606085018990526001600160a01b038816608086015260a0850187905284810360c08601528551808252602080880193509091019060005b8181101561132157835183529284019291840191600101611305565b50909c9b505050505050505050505050565b600080600080600080600060e0888a03121561134e57600080fd5b611357886111b8565b9650611365602089016111b8565b95506040880135945060608801359350608088013560ff8116811461138957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156113b957600080fd5b6113c2836111b8565b9150611276602084016111b8565b600181811c908216806113e457607f821691505b60208210810361140457634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561046057634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea264697066735822122027ce5fbc5b8bcbe58b8e3eb49d1bf5160a1cb112550d0172e0a378454eb6ad9864736f6c63430008160033","sourceMap":"418:1350:132:-:0;;;742:421;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;842:5;861:102;958:3;919:15;936:16;902:51;;;;;;;;1829:19:133;;;1873:2;1864:12;;1857:28;1910:2;1901:12;;1672:247;902:51:132;;;;;;;;;;;;;892:62;;;;;;884:71;;:77;;;;:::i;:::-;861:102;;:16;:102::i;:::-;1267:5:131;1274:8;988:5:132;995:7;1962:5:44;:13;988:5:132;1962::44;:13;:::i;:::-;-1:-1:-1;1985:7:44;:17;1995:7;1985;:17;:::i;:::-;-1:-1:-1;3401:45:58;;-1:-1:-1;3401:4:58;;-1:-1:-1;3432:13:58;3401:30;:45::i;:::-;3393:53;;3467:51;:7;3501:16;3467:33;:51::i;:::-;3456:62;;3542:22;;;;;;;;;;3528:36;;3591:25;;;;;;3574:42;;3644:13;3627:30;;3692:23;4226:11;;4239:14;;4204:80;;;2079:95;4204:80;;;5109:25:133;5150:18;;;5143:34;;;;5193:18;;;5186:34;4255:13:58;5236:18:133;;;5229:34;4278:4:58;5279:19:133;;;5272:61;4168:7:58;;5081:19:133;;4204:80:58;;;;;;;;;;;;4194:91;;;;;;4187:98;;4113:179;;3692:23;3667:48;;-1:-1:-1;;3747:4:58;3725:27;;1294:8:131::1;:19;1305:8:::0;1294;:19:::1;:::i;:::-;-1:-1:-1::0;1018:5:132::2;::::0;-1:-1:-1;1018:13:132::2;::::0;-1:-1:-1;1026:5:132;1018;:13:::2;:::i;:::-;-1:-1:-1::0;1041:7:132::2;:17;1051:7:::0;1041;:17:::2;:::i;:::-;-1:-1:-1::0;1069:42:132::2;2232:4:29;1100:10:132;1069;:42::i;:::-;-1:-1:-1::0;1121:35:132::2;522:24;1145:10;1121;:35::i;:::-;;742:421:::0;;418:1350;;637:698:56;693:13;742:14;759:17;770:5;759:10;:17::i;:::-;779:1;759:21;742:38;;794:20;828:6;-1:-1:-1;;;;;817:18:56;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:18:56;-1:-1:-1;794:41:56;-1:-1:-1;955:28:56;;;971:2;955:28;1010:282;-1:-1:-1;;1041:5:56;-1:-1:-1;;;1175:2:56;1164:14;;1159:32;1041:5;1146:46;1236:2;1227:11;;;-1:-1:-1;1256:21:56;1010:282;1256:21;-1:-1:-1;1312:6:56;637:698;-1:-1:-1;;;637:698:56:o;2914:340:54:-;3010:11;3059:2;3043:5;3037:19;:24;3033:215;;;3084:20;3098:5;3084:13;:20::i;:::-;3077:27;;;;3033:215;3161:5;3135:46;3176:5;3161;3135:46;:::i;:::-;-1:-1:-1;1390:66:54;;-1:-1:-1;3033:215:54;2914:340;;;;:::o;6179:316:29:-;6256:4;2954:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;2954:29:29;;;;;;;;;;;;6272:217;;6315:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6315:29:29;;;;;;;;;:36;;-1:-1:-1;;6315:36:29;6347:4;6315:36;;;6397:12;735:10:50;;656:96;6397:12:29;-1:-1:-1;;;;;6370:40:29;6388:7;-1:-1:-1;;;;;6370:40:29;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:29;6424:11;;6272:217;-1:-1:-1;6473:5:29;6466:12;;12214:916:62;12267:7;;12351:8;12342:17;;12338:103;;12388:8;12379:17;;;-1:-1:-1;12424:2:62;12414:12;12338:103;12467:8;12458:5;:17;12454:103;;12504:8;12495:17;;;-1:-1:-1;12540:2:62;12530:12;12454:103;12583:8;12574:5;:17;12570:103;;12620:8;12611:17;;;-1:-1:-1;12656:2:62;12646:12;12570:103;12699:7;12690:5;:16;12686:100;;12735:7;12726:16;;;-1:-1:-1;12770:1:62;12760:11;12686:100;12812:7;12803:5;:16;12799:100;;12848:7;12839:16;;;-1:-1:-1;12883:1:62;12873:11;12799:100;12925:7;12916:5;:16;12912:100;;12961:7;12952:16;;;-1:-1:-1;12996:1:62;12986:11;12912:100;13038:7;13029:5;:16;13025:66;;13075:1;13065:11;13117:6;12214:916;-1:-1:-1;;12214:916:62:o;1708:286:54:-;1773:11;1796:17;1822:3;1796:30;;1854:2;1840:4;:11;:16;1836:72;;;1893:3;1879:18;;-1:-1:-1;;;1879:18:54;;;;;;;;:::i;:::-;;;;;;;;1836:72;1974:11;;1957:13;1974:4;1957:13;:::i;:::-;1949:36;;1708:286;-1:-1:-1;;;1708:286:54:o;14:127:133:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:250;231:1;241:113;255:6;252:1;249:13;241:113;;;331:11;;;325:18;312:11;;;305:39;277:2;270:10;241:113;;;-1:-1:-1;;388:1:133;370:16;;363:27;146:250::o;401:699::-;455:5;508:3;501:4;493:6;489:17;485:27;475:55;;526:1;523;516:12;475:55;549:13;;-1:-1:-1;;;;;611:10:133;;;608:36;;;624:18;;:::i;:::-;699:2;693:9;667:2;753:13;;-1:-1:-1;;749:22:133;;;773:2;745:31;741:40;729:53;;;797:18;;;817:22;;;794:46;791:72;;;843:18;;:::i;:::-;883:10;879:2;872:22;918:2;910:6;903:18;964:3;957:4;952:2;944:6;940:15;936:26;933:35;930:55;;;981:1;978;971:12;930:55;994:76;1067:2;1060:4;1052:6;1048:17;1041:4;1033:6;1029:17;994:76;:::i;:::-;1088:6;401:699;-1:-1:-1;;;;;;401:699:133:o;1105:562::-;1204:6;1212;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1308:16;;-1:-1:-1;;;;;1373:14:133;;;1370:34;;;1400:1;1397;1390:12;1370:34;1423:61;1476:7;1467:6;1456:9;1452:22;1423:61;:::i;:::-;1413:71;;1530:2;1519:9;1515:18;1509:25;1493:41;;1559:2;1549:8;1546:16;1543:36;;;1575:1;1572;1565:12;1543:36;;1598:63;1653:7;1642:8;1631:9;1627:24;1598:63;:::i;:::-;1588:73;;;1105:562;;;;;:::o;2056:209::-;2088:1;2114;2104:132;;2158:10;2153:3;2149:20;2146:1;2139:31;2193:4;2190:1;2183:15;2221:4;2218:1;2211:15;2104:132;-1:-1:-1;2250:9:133;;2056:209::o;2270:380::-;2349:1;2345:12;;;;2392;;;2413:61;;2467:4;2459:6;2455:17;2445:27;;2413:61;2520:2;2512:6;2509:14;2489:18;2486:38;2483:161;;2566:10;2561:3;2557:20;2554:1;2547:31;2601:4;2598:1;2591:15;2629:4;2626:1;2619:15;2483:161;;2270:380;;;:::o;2781:543::-;2883:2;2878:3;2875:11;2872:446;;;2919:1;2943:5;2940:1;2933:16;2987:4;2984:1;2974:18;3057:2;3045:10;3041:19;3038:1;3034:27;3028:4;3024:38;3093:4;3081:10;3078:20;3075:47;;;-1:-1:-1;3116:4:133;3075:47;3171:2;3166:3;3162:12;3159:1;3155:20;3149:4;3145:31;3135:41;;3226:82;3244:2;3237:5;3234:13;3226:82;;;3289:17;;;3270:1;3259:13;3226:82;;;3230:3;;;2872:446;2781:543;;;:::o;3500:1345::-;3620:10;;-1:-1:-1;;;;;3642:30:133;;3639:56;;;3675:18;;:::i;:::-;3704:97;3794:6;3754:38;3786:4;3780:11;3754:38;:::i;:::-;3748:4;3704:97;:::i;:::-;3856:4;;3913:2;3902:14;;3930:1;3925:663;;;;4632:1;4649:6;4646:89;;;-1:-1:-1;4701:19:133;;;4695:26;4646:89;-1:-1:-1;;3457:1:133;3453:11;;;3449:24;3445:29;3435:40;3481:1;3477:11;;;3432:57;4748:81;;3895:944;;3925:663;2728:1;2721:14;;;2765:4;2752:18;;-1:-1:-1;;3961:20:133;;;4079:236;4093:7;4090:1;4087:14;4079:236;;;4182:19;;;4176:26;4161:42;;4274:27;;;;4242:1;4230:14;;;;4109:19;;4079:236;;;4083:3;4343:6;4334:7;4331:19;4328:201;;;4404:19;;;4398:26;-1:-1:-1;;4487:1:133;4483:14;;;4499:3;4479:24;4475:37;4471:42;4456:58;4441:74;;4328:201;-1:-1:-1;;;;;4575:1:133;4559:14;;;4555:22;4542:36;;-1:-1:-1;3500:1345:133:o;5344:396::-;5493:2;5482:9;5475:21;5456:4;5525:6;5519:13;5568:6;5563:2;5552:9;5548:18;5541:34;5584:79;5656:6;5651:2;5640:9;5636:18;5631:2;5623:6;5619:15;5584:79;:::i;:::-;5724:2;5703:15;-1:-1:-1;;5699:29:133;5684:45;;;;5731:2;5680:54;;5344:396;-1:-1:-1;;5344:396:133:o;5745:297::-;5863:12;;5910:4;5899:16;;;5893:23;;5863:12;5928:16;;5925:111;;;-1:-1:-1;;6002:4:133;5998:17;;;;5995:1;5991:25;5987:38;5976:50;;5745:297;-1:-1:-1;5745:297:133:o;:::-;418:1350:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","linkReferences":{}},"deployedBytecode":{"object":"0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80637ecebe00116100f9578063d539139311610097578063e47d606011610071578063e47d6060146103b3578063f9f92be4146103d6578063fbac3951146103e9578063fe575a871461040c57600080fd5b8063d539139314610340578063d547741f14610367578063dd62ed3e1461037a57600080fd5b806395d89b41116100d357806395d89b411461030a578063a217fddf14610312578063a9059cbb1461031a578063d505accf1461032d57600080fd5b80637ecebe00146102c957806384b0196e146102dc57806391d14854146102f757600080fd5b80632f2ff15d1161016657806336568abe1161014057806336568abe1461027257806340c10f191461028557806354fd4d501461029857806370a08231146102a057600080fd5b80632f2ff15d14610246578063313ce5671461025b5780633644e5151461026a57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063095ea7b3146101eb57806318160ddd146101fe57806323b872dd14610210578063248a9ca314610223575b600080fd5b6101c16101bc36600461112e565b61042f565b60405190151581526020015b60405180910390f35b6101de610466565b6040516101cd91906111a5565b6101c16101f93660046111d4565b6104f8565b6002545b6040519081526020016101cd565b6101c161021e3660046111fe565b610510565b61020261023136600461123a565b60009081526009602052604090206001015490565b610259610254366004611253565b610534565b005b604051600681526020016101cd565b61020261055f565b610259610280366004611253565b61056e565b6102596102933660046111d4565b6105a6565b6101de6105da565b6102026102ae36600461127f565b6001600160a01b031660009081526020819052604090205490565b6102026102d736600461127f565b6105e9565b6102e4610607565b6040516101cd979695949392919061129a565b6101c1610305366004611253565b61064d565b6101de610678565b610202600081565b6101c16103283660046111d4565b610687565b61025961033b366004611333565b610695565b6102027f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610259610375366004611253565b6107d4565b6102026103883660046113a6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c16103c136600461127f565b600d6020526000908152604090205460ff1681565b6102596103e436600461127f565b6107f9565b6101c16103f736600461127f565b600e6020526000908152604090205460ff1681565b6101c161041a36600461127f565b600c6020526000908152604090205460ff1681565b60006001600160e01b03198216637965db0b60e01b148061046057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610475906113d0565b80601f01602080910402602001604051908101604052809291908181526020018280546104a1906113d0565b80156104ee5780601f106104c3576101008083540402835291602001916104ee565b820191906000526020600020905b8154815290600101906020018083116104d157829003601f168201915b5050505050905090565b600033610506818585610850565b5060019392505050565b60003361051e85828561085d565b6105298585856108d5565b506001949350505050565b60008281526009602052604090206001015461054f81610934565b6105598383610941565b50505050565b60006105696109d5565b905090565b6001600160a01b03811633146105975760405163334bd91960e11b815260040160405180910390fd5b6105a18282610b00565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66105d081610934565b6105a18383610b6d565b606060088054610475906113d0565b6001600160a01b038116600090815260076020526040812054610460565b60006060806000806000606061061b610ba7565b610623610bd4565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600b8054610475906113d0565b6000336105068185856108d5565b834211156106be5760405163313c898160e11b8152600481018590526024015b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861070b8c6001600160a01b0316600090815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061076682610c01565b9050600061077682878787610c2e565b9050896001600160a01b0316816001600160a01b0316146107bd576040516325c0072360e11b81526001600160a01b0380831660048301528b1660248201526044016106b5565b6107c88a8a8a610850565b50505050505050505050565b6000828152600960205260409020600101546107ef81610934565b6105598383610b00565b600061080481610934565b506001600160a01b03166000908152600c602090815260408083208054600160ff199182168117909255600d84528285208054821683179055600e909352922080549091169091179055565b6105a18383836001610c5c565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461055957818110156108c657604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106b5565b61055984848484036000610c5c565b6001600160a01b0383166108ff57604051634b637e8f60e11b8152600060048201526024016106b5565b6001600160a01b0382166109295760405163ec442f0560e01b8152600060048201526024016106b5565b6105a1838383610d31565b61093e8133610e5b565b50565b600061094d838361064d565b6109cd5760008381526009602090815260408083206001600160a01b03861684529091529020805460ff191660011790556109853390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610460565b506000610460565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610a2e57507f000000000000000000000000000000000000000000000000000000000000000046145b15610a5857507f000000000000000000000000000000000000000000000000000000000000000090565b610569604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6000610b0c838361064d565b156109cd5760008381526009602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610460565b6001600160a01b038216610b975760405163ec442f0560e01b8152600060048201526024016106b5565b610ba360008383610d31565b5050565b60606105697f00000000000000000000000000000000000000000000000000000000000000006005610e94565b60606105697f00000000000000000000000000000000000000000000000000000000000000006006610e94565b6000610460610c0e6109d5565b8360405161190160f01b8152600281019290925260228201526042902090565b600080600080610c4088888888610f3f565b925092509250610c50828261100e565b50909695505050505050565b6001600160a01b038416610c865760405163e602df0560e01b8152600060048201526024016106b5565b6001600160a01b038316610cb057604051634a1406b160e11b8152600060048201526024016106b5565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561055957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d2391815260200190565b60405180910390a350505050565b6001600160a01b038316610d5c578060026000828254610d51919061140a565b90915550610dce9050565b6001600160a01b03831660009081526020819052604090205481811015610daf5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106b5565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610dea57600280548290039055610e09565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4e91815260200190565b60405180910390a3505050565b610e65828261064d565b610ba35760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016106b5565b606060ff8314610eae57610ea7836110c7565b9050610460565b818054610eba906113d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee6906113d0565b8015610f335780601f10610f0857610100808354040283529160200191610f33565b820191906000526020600020905b815481529060010190602001808311610f1657829003601f168201915b50505050509050610460565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610f7a5750600091506003905082611004565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610fce573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610ffa57506000925060019150829050611004565b9250600091508190505b9450945094915050565b60008260038111156110225761102261142b565b0361102b575050565b600182600381111561103f5761103f61142b565b0361105d5760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156110715761107161142b565b036110925760405163fce698f760e01b8152600481018290526024016106b5565b60038260038111156110a6576110a661142b565b03610ba3576040516335e2f38360e21b8152600481018290526024016106b5565b606060006110d483611106565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b600060ff8216601f81111561046057604051632cd44ac360e21b815260040160405180910390fd5b60006020828403121561114057600080fd5b81356001600160e01b03198116811461115857600080fd5b9392505050565b6000815180845260005b8181101561118557602081850181015186830182015201611169565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611158602083018461115f565b80356001600160a01b03811681146111cf57600080fd5b919050565b600080604083850312156111e757600080fd5b6111f0836111b8565b946020939093013593505050565b60008060006060848603121561121357600080fd5b61121c846111b8565b925061122a602085016111b8565b9150604084013590509250925092565b60006020828403121561124c57600080fd5b5035919050565b6000806040838503121561126657600080fd5b82359150611276602084016111b8565b90509250929050565b60006020828403121561129157600080fd5b611158826111b8565b60ff60f81b881681526000602060e060208401526112bb60e084018a61115f565b83810360408501526112cd818a61115f565b606085018990526001600160a01b038816608086015260a0850187905284810360c08601528551808252602080880193509091019060005b8181101561132157835183529284019291840191600101611305565b50909c9b505050505050505050505050565b600080600080600080600060e0888a03121561134e57600080fd5b611357886111b8565b9650611365602089016111b8565b95506040880135945060608801359350608088013560ff8116811461138957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156113b957600080fd5b6113c2836111b8565b9150611276602084016111b8565b600181811c908216806113e457607f821691505b60208210810361140457634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561046057634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea264697066735822122027ce5fbc5b8bcbe58b8e3eb49d1bf5160a1cb112550d0172e0a378454eb6ad9864736f6c63430008160033","sourceMap":"418:1350:132:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2565:202:29;;;;;;:::i;:::-;;:::i;:::-;;;470:14:133;;463:22;445:41;;433:2;418:18;2565:202:29;;;;;;;;1169:90:132;;;:::i;:::-;;;;;;;:::i;4293:186:44:-;;;;;;:::i;:::-;;:::i;3144:97::-;3222:12;;3144:97;;;1733:25:133;;;1721:2;1706:18;3144:97:44;1587:177:133;5039:244:44;;;;;;:::i;:::-;;:::i;3810:120:29:-;;;;;;:::i;:::-;3875:7;3901:12;;;:6;:12;;;;;:22;;;;3810:120;4226:136;;;;;;:::i;:::-;;:::i;:::-;;1365:82:132;;;1439:1;2870:36:133;;2858:2;2843:18;1365:82:132;2728:184:133;2401:112:131;;;:::i;5328:245:29:-;;;;;;:::i;:::-;;:::i;1453:115:132:-;;;;;;:::i;:::-;;:::i;1326:87:131:-;;;:::i;3299:116:44:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3390:18:44;3364:7;3390:18;;;;;;;;;;;;3299:116;2151:143:131;;;;;;:::i;:::-;;:::i;5144:557:58:-;;;:::i;:::-;;;;;;;;;;;;;:::i;2854:136:29:-;;;;;;:::i;:::-;;:::i;1265:94:132:-;;;:::i;2187:49:29:-;;2232:4;2187:49;;3610:178:44;;;;;;:::i;:::-;;:::i;1467:630:131:-;;;;;;:::i;:::-;;:::i;484:62:132:-;;522:24;484:62;;4642:138:29;;;;;;:::i;:::-;;:::i;3846:140:44:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3952:18:44;;;3926:7;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3846:140;643:45:132;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1574:192;;;;;;:::i;:::-;;:::i;694:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;592:45;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2565:202:29;2650:4;-1:-1:-1;;;;;;2673:47:29;;-1:-1:-1;;;2673:47:29;;:87;;-1:-1:-1;;;;;;;;;;861:40:60;;;2724:36:29;2666:94;2565:202;-1:-1:-1;;2565:202:29:o;1169:90:132:-;1215:13;1247:5;1240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1169:90;:::o;4293:186:44:-;4366:4;735:10:50;4420:31:44;735:10:50;4436:7:44;4445:5;4420:8;:31::i;:::-;-1:-1:-1;4468:4:44;;4293:186;-1:-1:-1;;;4293:186:44:o;5039:244::-;5126:4;735:10:50;5182:37:44;5198:4;735:10:50;5213:5:44;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;-1:-1:-1;5272:4:44;;5039:244;-1:-1:-1;;;;5039:244:44:o;4226:136:29:-;3875:7;3901:12;;;:6;:12;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4330:25:::1;4341:4;4347:7;4330:10;:25::i;:::-;;4226:136:::0;;;:::o;2401:112:131:-;2460:7;2486:20;:18;:20::i;:::-;2479:27;;2401:112;:::o;5328:245:29:-;-1:-1:-1;;;;;5421:34:29;;735:10:50;5421:34:29;5417:102;;5478:30;;-1:-1:-1;;;5478:30:29;;;;;;;;;;;5417:102;5529:37;5541:4;5547:18;5529:11;:37::i;:::-;;5328:245;;:::o;1453:115:132:-;522:24;2464:16:29;2475:4;2464:10;:16::i;:::-;1539:22:132::1;1545:7;1554:6;1539:5;:22::i;1326:87:131:-:0;1366:13;1398:8;1391:15;;;;;:::i;2151:143::-;-1:-1:-1;;;;;624:14:52;;2242:7:131;624:14:52;;;:7;:14;;;;;;2268:19:131;538:107:52;5144:557:58;5242:13;5269:18;5301:21;5336:15;5365:25;5404:12;5430:27;5533:13;:11;:13::i;:::-;5560:16;:14;:16::i;:::-;5668;;;5652:1;5668:16;;;;;;;;;-1:-1:-1;;;5482:212:58;;;-1:-1:-1;5482:212:58;;-1:-1:-1;5590:13:58;;-1:-1:-1;5625:4:58;;-1:-1:-1;5652:1:58;-1:-1:-1;5668:16:58;-1:-1:-1;5482:212:58;-1:-1:-1;5144:557:58:o;2854:136:29:-;2931:4;2954:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;2954:29:29;;;;;;;;;;;;;;;2854:136::o;1265:94:132:-;1313:13;1345:7;1338:14;;;;;:::i;3610:178:44:-;3679:4;735:10:50;3733:27:44;735:10:50;3750:2:44;3754:5;3733:9;:27::i;1467:630:131:-;1646:8;1628:15;:26;1624:97;;;1677:33;;-1:-1:-1;;;1677:33:131;;;;;1733:25:133;;;1706:18;;1677:33:131;;;;;;;;1624:97;1731:18;629:95;1790:5;1797:7;1806:5;1813:16;1823:5;-1:-1:-1;;;;;1121:14:52;819:7;1121:14;;;:7;:14;;;;;:16;;;;;;;;;759:395;1813:16:131;1762:78;;;;;;6139:25:133;;;;-1:-1:-1;;;;;6238:15:133;;;6218:18;;;6211:43;6290:15;;;;6270:18;;;6263:43;6322:18;;;6315:34;6365:19;;;6358:35;6409:19;;;6402:35;;;6111:19;;1762:78:131;;;;;;;;;;;;1752:89;;;;;;1731:110;;1852:12;1867:28;1884:10;1867:16;:28::i;:::-;1852:43;;1906:14;1923:28;1937:4;1943:1;1946;1949;1923:13;:28::i;:::-;1906:45;;1975:5;-1:-1:-1;;;;;1965:15:131;:6;-1:-1:-1;;;;;1965:15:131;;1961:88;;2003:35;;-1:-1:-1;;;2003:35:131;;-1:-1:-1;;;;;6678:15:133;;;2003:35:131;;;6660:34:133;6730:15;;6710:18;;;6703:43;6595:18;;2003:35:131;6448:304:133;1961:88:131;2059:31;2068:5;2075:7;2084:5;2059:8;:31::i;:::-;1614:483;;;1467:630;;;;;;;:::o;4642:138:29:-;3875:7;3901:12;;;:6;:12;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4747:26:::1;4759:4;4765:7;4747:11;:26::i;1574:192:132:-:0;2232:4:29;2464:16;2232:4;2464:10;:16::i;:::-;-1:-1:-1;;;;;;1656:22:132::1;;::::0;;;:13:::1;:22;::::0;;;;;;;:29;;1681:4:::1;-1:-1:-1::0;;1656:29:132;;::::1;::::0;::::1;::::0;;;1695:13:::1;:22:::0;;;;;:29;;;::::1;::::0;::::1;::::0;;1734:9:::1;:18:::0;;;;;:25;;;;::::1;::::0;;::::1;::::0;;1574:192::o;8989:128:44:-;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;10663:477::-;-1:-1:-1;;;;;3952:18:44;;;10762:24;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10828:37:44;;10824:310;;10904:5;10885:16;:24;10881:130;;;10936:60;;-1:-1:-1;;;10936:60:44;;-1:-1:-1;;;;;6977:32:133;;10936:60:44;;;6959:51:133;7026:18;;;7019:34;;;7069:18;;;7062:34;;;6932:18;;10936:60:44;6757:345:133;10881:130:44;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;5656:300::-;-1:-1:-1;;;;;5739:18:44;;5735:86;;5780:30;;-1:-1:-1;;;5780:30:44;;5807:1;5780:30;;;7253:51:133;7226:18;;5780:30:44;7107:203:133;5735:86:44;-1:-1:-1;;;;;5834:16:44;;5830:86;;5873:32;;-1:-1:-1;;;5873:32:44;;5902:1;5873:32;;;7253:51:133;7226:18;;5873:32:44;7107:203:133;5830:86:44;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;3199:103:29:-;3265:30;3276:4;735:10:50;3265::29;:30::i;:::-;3199:103;:::o;6179:316::-;6256:4;6277:22;6285:4;6291:7;6277;:22::i;:::-;6272:217;;6315:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6315:29:29;;;;;;;;;:36;;-1:-1:-1;;6315:36:29;6347:4;6315:36;;;6397:12;735:10:50;;656:96;6397:12:29;-1:-1:-1;;;;;6370:40:29;6388:7;-1:-1:-1;;;;;6370:40:29;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:29;6424:11;;6272:217;-1:-1:-1;6473:5:29;6466:12;;3845:262:58;3898:7;3929:4;-1:-1:-1;;;;;3938:11:58;3921:28;;:63;;;;;3970:14;3953:13;:31;3921:63;3917:184;;;-1:-1:-1;4007:22:58;;3845:262::o;3917:184::-;4067:23;4204:80;;;2079:95;4204:80;;;8080:25:133;4226:11:58;8121:18:133;;;8114:34;;;;4239:14:58;8164:18:133;;;8157:34;4255:13:58;8207:18:133;;;8200:34;4278:4:58;8250:19:133;;;8243:61;4168:7:58;;8052:19:133;;4204:80:58;;;;;;;;;;;;4194:91;;;;;;4187:98;;4113:179;;6730:317:29;6808:4;6828:22;6836:4;6842:7;6828;:22::i;:::-;6824:217;;;6898:5;6866:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6866:29:29;;;;;;;;;;:37;;-1:-1:-1;;6866:37:29;;;6922:40;735:10:50;;6866:12:29;;6922:40;;6898:5;6922:40;-1:-1:-1;6983:4:29;6976:11;;7721:208:44;-1:-1:-1;;;;;7791:21:44;;7787:91;;7835:32;;-1:-1:-1;;;7835:32:44;;7864:1;7835:32;;;7253:51:133;7226:18;;7835:32:44;7107:203:133;7787:91:44;7887:35;7903:1;7907:7;7916:5;7887:7;:35::i;:::-;7721:208;;:::o;6021:126:58:-;6067:13;6099:41;:5;6126:13;6099:26;:41::i;6473:135::-;6522:13;6554:47;:8;6584:16;6554:29;:47::i;4917:176::-;4994:7;5020:66;5053:20;:18;:20::i;:::-;5075:10;3555:4:59;3549:11;-1:-1:-1;;;3573:23:59;;3625:4;3616:14;;3609:39;;;;3677:4;3668:14;;3661:34;3733:4;3718:20;;;3353:401;6803:260:57;6888:7;6908:17;6927:18;6947:16;6967:25;6978:4;6984:1;6987;6990;6967:10;:25::i;:::-;6907:85;;;;;;7002:28;7014:5;7021:8;7002:11;:28::i;:::-;-1:-1:-1;7047:9:57;;6803:260;-1:-1:-1;;;;;;6803:260:57:o;9949:432:44:-;-1:-1:-1;;;;;10061:19:44;;10057:89;;10103:32;;-1:-1:-1;;;10103:32:44;;10132:1;10103:32;;;7253:51:133;7226:18;;10103:32:44;7107:203:133;10057:89:44;-1:-1:-1;;;;;10159:21:44;;10155:90;;10203:31;;-1:-1:-1;;;10203:31:44;;10231:1;10203:31;;;7253:51:133;7226:18;;10203:31:44;7107:203:133;10155:90:44;-1:-1:-1;;;;;10254:18:44;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10299:76;;;;10349:7;-1:-1:-1;;;;;10333:31:44;10342:5;-1:-1:-1;;;;;10333:31:44;;10358:5;10333:31;;;;1733:25:133;;1721:2;1706:18;;1587:177;10333:31:44;;;;;;;;9949:432;;;;:::o;6271:1107::-;-1:-1:-1;;;;;6360:18:44;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6356:540:44;;-1:-1:-1;6356:540:44;;-1:-1:-1;;;;;6570:15:44;;6548:19;6570:15;;;;;;;;;;;6603:19;;;6599:115;;;6649:50;;-1:-1:-1;;;6649:50:44;;-1:-1:-1;;;;;6977:32:133;;6649:50:44;;;6959:51:133;7026:18;;;7019:34;;;7069:18;;;7062:34;;;6932:18;;6649:50:44;6757:345:133;6599:115:44;-1:-1:-1;;;;;6834:15:44;;:9;:15;;;;;;;;;;6852:19;;;;6834:37;;6356:540;-1:-1:-1;;;;;6910:16:44;;6906:425;;7073:12;:21;;;;;;;6906:425;;;-1:-1:-1;;;;;7284:13:44;;:9;:13;;;;;;;;;;:22;;;;;;6906:425;7361:2;-1:-1:-1;;;;;7346:25:44;7355:4;-1:-1:-1;;;;;7346:25:44;;7365:5;7346:25;;;;1733::133;;1721:2;1706:18;;1587:177;7346:25:44;;;;;;;;6271:1107;;;:::o;3432:197:29:-;3520:22;3528:4;3534:7;3520;:22::i;:::-;3515:108;;3565:47;;-1:-1:-1;;;3565:47:29;;-1:-1:-1;;;;;7734:32:133;;3565:47:29;;;7716:51:133;7783:18;;;7776:34;;;7689:18;;3565:47:29;7542:274:133;3385:267:54;3479:13;1390:66;3508:46;;3504:142;;3577:15;3586:5;3577:8;:15::i;:::-;3570:22;;;;3504:142;3630:5;3623:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5140:1530:57;5266:7;;;6199:66;6186:79;;6182:164;;;-1:-1:-1;6297:1:57;;-1:-1:-1;6301:30:57;;-1:-1:-1;6333:1:57;6281:54;;6182:164;6457:24;;;6440:14;6457:24;;;;;;;;;8542:25:133;;;8615:4;8603:17;;8583:18;;;8576:45;;;;8637:18;;;8630:34;;;8680:18;;;8673:34;;;6457:24:57;;8514:19:133;;6457:24:57;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6457:24:57;;-1:-1:-1;;6457:24:57;;;-1:-1:-1;;;;;;;6495:20:57;;6491:113;;-1:-1:-1;6547:1:57;;-1:-1:-1;6551:29:57;;-1:-1:-1;6547:1:57;;-1:-1:-1;6531:62:57;;6491:113;6622:6;-1:-1:-1;6630:20:57;;-1:-1:-1;6630:20:57;;-1:-1:-1;5140:1530:57;;;;;;;;;:::o;7196:532::-;7291:20;7282:5;:29;;;;;;;;:::i;:::-;;7278:444;;7196:532;;:::o;7278:444::-;7387:29;7378:5;:38;;;;;;;;:::i;:::-;;7374:348;;7439:23;;-1:-1:-1;;;7439:23:57;;;;;;;;;;;7374:348;7492:35;7483:5;:44;;;;;;;;:::i;:::-;;7479:243;;7550:46;;-1:-1:-1;;;7550:46:57;;;;;1733:25:133;;;1706:18;;7550:46:57;1587:177:133;7479:243:57;7626:30;7617:5;:39;;;;;;;;:::i;:::-;;7613:109;;7679:32;;-1:-1:-1;;;7679:32:57;;;;;1733:25:133;;;1706:18;;7679:32:57;1587:177:133;2078:405:54;2137:13;2162:11;2176:16;2187:4;2176:10;:16::i;:::-;2300:14;;;2311:2;2300:14;;;;;;;;;2162:30;;-1:-1:-1;2280:17:54;;2300:14;;;;;;;;;-1:-1:-1;;;2390:16:54;;;-1:-1:-1;2435:4:54;2426:14;;2419:28;;;;-1:-1:-1;2390:16:54;2078:405::o;2555:245::-;2616:7;2688:4;2652:40;;2715:2;2706:11;;2702:69;;;2740:20;;-1:-1:-1;;;2740:20:54;;;;;;;;;;;14:286:133;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:133;;209:43;;199:71;;266:1;263;256:12;199:71;289:5;14:286;-1:-1:-1;;;14:286:133:o;497:423::-;539:3;577:5;571:12;604:6;599:3;592:19;629:1;639:162;653:6;650:1;647:13;639:162;;;715:4;771:13;;;767:22;;761:29;743:11;;;739:20;;732:59;668:12;639:162;;;643:3;846:1;839:4;830:6;825:3;821:16;817:27;810:38;909:4;902:2;898:7;893:2;885:6;881:15;877:29;872:3;868:39;864:50;857:57;;;497:423;;;;:::o;925:220::-;1074:2;1063:9;1056:21;1037:4;1094:45;1135:2;1124:9;1120:18;1112:6;1094:45;:::i;1150:173::-;1218:20;;-1:-1:-1;;;;;1267:31:133;;1257:42;;1247:70;;1313:1;1310;1303:12;1247:70;1150:173;;;:::o;1328:254::-;1396:6;1404;1457:2;1445:9;1436:7;1432:23;1428:32;1425:52;;;1473:1;1470;1463:12;1425:52;1496:29;1515:9;1496:29;:::i;:::-;1486:39;1572:2;1557:18;;;;1544:32;;-1:-1:-1;;;1328:254:133:o;1769:328::-;1846:6;1854;1862;1915:2;1903:9;1894:7;1890:23;1886:32;1883:52;;;1931:1;1928;1921:12;1883:52;1954:29;1973:9;1954:29;:::i;:::-;1944:39;;2002:38;2036:2;2025:9;2021:18;2002:38;:::i;:::-;1992:48;;2087:2;2076:9;2072:18;2059:32;2049:42;;1769:328;;;;;:::o;2102:180::-;2161:6;2214:2;2202:9;2193:7;2189:23;2185:32;2182:52;;;2230:1;2227;2220:12;2182:52;-1:-1:-1;2253:23:133;;2102:180;-1:-1:-1;2102:180:133:o;2469:254::-;2537:6;2545;2598:2;2586:9;2577:7;2573:23;2569:32;2566:52;;;2614:1;2611;2604:12;2566:52;2650:9;2637:23;2627:33;;2679:38;2713:2;2702:9;2698:18;2679:38;:::i;:::-;2669:48;;2469:254;;;;;:::o;2917:186::-;2976:6;3029:2;3017:9;3008:7;3004:23;3000:32;2997:52;;;3045:1;3042;3035:12;2997:52;3068:29;3087:9;3068:29;:::i;3108:1259::-;3514:3;3509;3505:13;3497:6;3493:26;3482:9;3475:45;3456:4;3539:2;3577:3;3572:2;3561:9;3557:18;3550:31;3604:46;3645:3;3634:9;3630:19;3622:6;3604:46;:::i;:::-;3698:9;3690:6;3686:22;3681:2;3670:9;3666:18;3659:50;3732:33;3758:6;3750;3732:33;:::i;:::-;3796:2;3781:18;;3774:34;;;-1:-1:-1;;;;;3845:32:133;;3839:3;3824:19;;3817:61;3865:3;3894:19;;3887:35;;;3959:22;;;3953:3;3938:19;;3931:51;4031:13;;4053:22;;;4103:2;4129:15;;;;-1:-1:-1;4091:15:133;;;;-1:-1:-1;4172:169:133;4186:6;4183:1;4180:13;4172:169;;;4247:13;;4235:26;;4316:15;;;;4281:12;;;;4208:1;4201:9;4172:169;;;-1:-1:-1;4358:3:133;;3108:1259;-1:-1:-1;;;;;;;;;;;;3108:1259:133:o;4372:693::-;4483:6;4491;4499;4507;4515;4523;4531;4584:3;4572:9;4563:7;4559:23;4555:33;4552:53;;;4601:1;4598;4591:12;4552:53;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4672:38;4706:2;4695:9;4691:18;4672:38;:::i;:::-;4662:48;;4757:2;4746:9;4742:18;4729:32;4719:42;;4808:2;4797:9;4793:18;4780:32;4770:42;;4862:3;4851:9;4847:19;4834:33;4907:4;4900:5;4896:16;4889:5;4886:27;4876:55;;4927:1;4924;4917:12;4876:55;4372:693;;;;-1:-1:-1;4372:693:133;;;;4950:5;5002:3;4987:19;;4974:33;;-1:-1:-1;5054:3:133;5039:19;;;5026:33;;4372:693;-1:-1:-1;;4372:693:133:o;5070:260::-;5138:6;5146;5199:2;5187:9;5178:7;5174:23;5170:32;5167:52;;;5215:1;5212;5205:12;5167:52;5238:29;5257:9;5238:29;:::i;:::-;5228:39;;5286:38;5320:2;5309:9;5305:18;5286:38;:::i;5335:380::-;5414:1;5410:12;;;;5457;;;5478:61;;5532:4;5524:6;5520:17;5510:27;;5478:61;5585:2;5577:6;5574:14;5554:18;5551:38;5548:161;;5631:10;5626:3;5622:20;5619:1;5612:31;5666:4;5663:1;5656:15;5694:4;5691:1;5684:15;5548:161;;5335:380;;;:::o;7315:222::-;7380:9;;;7401:10;;;7398:133;;;7453:10;7448:3;7444:20;7441:1;7434:31;7488:4;7485:1;7478:15;7516:4;7513:1;7506:15;8718:127;8779:10;8774:3;8770:20;8767:1;8760:31;8810:4;8807:1;8800:15;8834:4;8831:1;8824:15","linkReferences":{},"immutableReferences":{"49505":[{"start":2614,"length":32}],"49507":[{"start":2572,"length":32}],"49509":[{"start":2530,"length":32}],"49511":[{"start":2695,"length":32}],"49513":[{"start":2735,"length":32}],"49516":[{"start":2990,"length":32}],"49519":[{"start":3035,"length":32}]}},"opcodes":"PUSH2 0x160 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x12 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1C72 CODESIZE SUB DUP1 PUSH3 0x1C72 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x35 SWAP2 PUSH3 0x55C JUMP JUMPDEST DUP2 PUSH3 0x87 PUSH1 0xFA TIMESTAMP PREVRANDAO PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x59 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR PUSH3 0x7E SWAP2 SWAP1 PUSH3 0x5C6 JUMP JUMPDEST PUSH1 0xFF AND PUSH3 0x1D6 JUMP JUMPDEST DUP2 DUP2 DUP6 DUP6 PUSH1 0x3 PUSH3 0x99 DUP4 DUP3 PUSH3 0x67A JUMP JUMPDEST POP PUSH1 0x4 PUSH3 0xA8 DUP3 DUP3 PUSH3 0x67A JUMP JUMPDEST POP PUSH3 0xBA SWAP2 POP DUP4 SWAP1 POP PUSH1 0x5 PUSH3 0x26F JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH3 0xCB DUP2 PUSH1 0x6 PUSH3 0x26F JUMP JUMPDEST PUSH2 0x140 MSTORE DUP2 MLOAD PUSH1 0x20 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 KECCAK256 PUSH1 0xE0 MSTORE DUP2 MLOAD SWAP1 DUP3 ADD KECCAK256 PUSH2 0x100 MSTORE CHAINID PUSH1 0xA0 MSTORE PUSH3 0x159 PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x80 MSTORE POP POP ADDRESS PUSH1 0xC0 MSTORE PUSH1 0x8 PUSH3 0x170 DUP3 DUP3 PUSH3 0x67A JUMP JUMPDEST POP PUSH1 0xA SWAP2 POP PUSH3 0x183 SWAP1 POP DUP4 DUP3 PUSH3 0x67A JUMP JUMPDEST POP PUSH1 0xB PUSH3 0x192 DUP3 DUP3 PUSH3 0x67A JUMP JUMPDEST POP PUSH3 0x1A0 PUSH1 0x0 CALLER PUSH3 0x2A8 JUMP JUMPDEST POP PUSH3 0x1CD PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 CALLER PUSH3 0x2A8 JUMP JUMPDEST POP POP POP PUSH3 0x7A0 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH3 0x1E5 DUP4 PUSH3 0x35A JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x207 JUMPI PUSH3 0x207 PUSH3 0x48F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH3 0x232 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH1 0x0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH3 0x23C JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 MLOAD LT ISZERO PUSH3 0x28F JUMPI PUSH3 0x287 DUP4 PUSH3 0x443 JUMP JUMPDEST SWAP1 POP PUSH3 0x2A2 JUMP JUMPDEST DUP2 PUSH3 0x29C DUP5 DUP3 PUSH3 0x67A JUMP JUMPDEST POP PUSH1 0xFF SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH1 0xFF AND PUSH3 0x351 JUMPI PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH3 0x308 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH3 0x2A2 JUMP JUMPDEST POP PUSH1 0x0 PUSH3 0x2A2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 LT PUSH3 0x3A4 JUMPI PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH3 0x3D1 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH3 0x3F0 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH3 0x409 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH3 0x41E JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH3 0x431 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH3 0x2A2 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP1 POP PUSH1 0x1F DUP2 MLOAD GT ISZERO PUSH3 0x47A JUMPI DUP3 PUSH1 0x40 MLOAD PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x471 SWAP2 SWAP1 PUSH3 0x746 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD PUSH3 0x487 DUP3 PUSH3 0x77B JUMP JUMPDEST OR SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x4C2 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x4A8 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x4DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x4FA JUMPI PUSH3 0x4FA PUSH3 0x48F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x525 JUMPI PUSH3 0x525 PUSH3 0x48F JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x53F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x552 DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0x4A5 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x570 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x588 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x596 DUP7 DUP4 DUP8 ADD PUSH3 0x4CB JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x5AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x5BC DUP6 DUP3 DUP7 ADD PUSH3 0x4CB JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x5E4 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x5FE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x61F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x675 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x650 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x671 JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x65C JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x696 JUMPI PUSH3 0x696 PUSH3 0x48F JUMP JUMPDEST PUSH3 0x6AE DUP2 PUSH3 0x6A7 DUP5 SLOAD PUSH3 0x5E9 JUMP JUMPDEST DUP5 PUSH3 0x625 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x6E6 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x6CD JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x671 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x717 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x6F6 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x736 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x767 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH3 0x4A5 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP2 SWAP1 DUP2 LT ISZERO PUSH3 0x61F JUMPI PUSH1 0x0 NOT PUSH1 0x20 SWAP2 SWAP1 SWAP2 SUB PUSH1 0x3 SHL SHL AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x1477 PUSH3 0x7FB PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0xBDB ADD MSTORE PUSH1 0x0 PUSH2 0xBAE ADD MSTORE PUSH1 0x0 PUSH2 0xAAF ADD MSTORE PUSH1 0x0 PUSH2 0xA87 ADD MSTORE PUSH1 0x0 PUSH2 0x9E2 ADD MSTORE PUSH1 0x0 PUSH2 0xA0C ADD MSTORE PUSH1 0x0 PUSH2 0xA36 ADD MSTORE PUSH2 0x1477 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1A9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7ECEBE00 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0xD5391393 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xE47D6060 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE47D6060 EQ PUSH2 0x3B3 JUMPI DUP1 PUSH4 0xF9F92BE4 EQ PUSH2 0x3D6 JUMPI DUP1 PUSH4 0xFBAC3951 EQ PUSH2 0x3E9 JUMPI DUP1 PUSH4 0xFE575A87 EQ PUSH2 0x40C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD5391393 EQ PUSH2 0x340 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x367 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x37A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x30A JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x312 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x31A JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x32D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x2C9 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x2F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0x166 JUMPI DUP1 PUSH4 0x36568ABE GT PUSH2 0x140 JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x272 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x285 JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x246 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x26A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1FE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x223 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C1 PUSH2 0x1BC CALLDATASIZE PUSH1 0x4 PUSH2 0x112E JUMP JUMPDEST PUSH2 0x42F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1DE PUSH2 0x466 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x11A5 JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x1F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x11D4 JUMP JUMPDEST PUSH2 0x4F8 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CD JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x21E CALLDATASIZE PUSH1 0x4 PUSH2 0x11FE JUMP JUMPDEST PUSH2 0x510 JUMP JUMPDEST PUSH2 0x202 PUSH2 0x231 CALLDATASIZE PUSH1 0x4 PUSH2 0x123A JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x259 PUSH2 0x254 CALLDATASIZE PUSH1 0x4 PUSH2 0x1253 JUMP JUMPDEST PUSH2 0x534 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CD JUMP JUMPDEST PUSH2 0x202 PUSH2 0x55F JUMP JUMPDEST PUSH2 0x259 PUSH2 0x280 CALLDATASIZE PUSH1 0x4 PUSH2 0x1253 JUMP JUMPDEST PUSH2 0x56E JUMP JUMPDEST PUSH2 0x259 PUSH2 0x293 CALLDATASIZE PUSH1 0x4 PUSH2 0x11D4 JUMP JUMPDEST PUSH2 0x5A6 JUMP JUMPDEST PUSH2 0x1DE PUSH2 0x5DA JUMP JUMPDEST PUSH2 0x202 PUSH2 0x2AE CALLDATASIZE PUSH1 0x4 PUSH2 0x127F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x202 PUSH2 0x2D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x127F JUMP JUMPDEST PUSH2 0x5E9 JUMP JUMPDEST PUSH2 0x2E4 PUSH2 0x607 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x129A JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x305 CALLDATASIZE PUSH1 0x4 PUSH2 0x1253 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH2 0x1DE PUSH2 0x678 JUMP JUMPDEST PUSH2 0x202 PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x328 CALLDATASIZE PUSH1 0x4 PUSH2 0x11D4 JUMP JUMPDEST PUSH2 0x687 JUMP JUMPDEST PUSH2 0x259 PUSH2 0x33B CALLDATASIZE PUSH1 0x4 PUSH2 0x1333 JUMP JUMPDEST PUSH2 0x695 JUMP JUMPDEST PUSH2 0x202 PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0x259 PUSH2 0x375 CALLDATASIZE PUSH1 0x4 PUSH2 0x1253 JUMP JUMPDEST PUSH2 0x7D4 JUMP JUMPDEST PUSH2 0x202 PUSH2 0x388 CALLDATASIZE PUSH1 0x4 PUSH2 0x13A6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x3C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x127F JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x259 PUSH2 0x3E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x127F JUMP JUMPDEST PUSH2 0x7F9 JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x3F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x127F JUMP JUMPDEST PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x41A CALLDATASIZE PUSH1 0x4 PUSH2 0x127F JUMP JUMPDEST PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x460 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xA DUP1 SLOAD PUSH2 0x475 SWAP1 PUSH2 0x13D0 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x4A1 SWAP1 PUSH2 0x13D0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4EE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4C3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4EE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x4D1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x506 DUP2 DUP6 DUP6 PUSH2 0x850 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x51E DUP6 DUP3 DUP6 PUSH2 0x85D JUMP JUMPDEST PUSH2 0x529 DUP6 DUP6 DUP6 PUSH2 0x8D5 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x54F DUP2 PUSH2 0x934 JUMP JUMPDEST PUSH2 0x559 DUP4 DUP4 PUSH2 0x941 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x569 PUSH2 0x9D5 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x597 JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5A1 DUP3 DUP3 PUSH2 0xB00 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0x5D0 DUP2 PUSH2 0x934 JUMP JUMPDEST PUSH2 0x5A1 DUP4 DUP4 PUSH2 0xB6D JUMP JUMPDEST PUSH1 0x60 PUSH1 0x8 DUP1 SLOAD PUSH2 0x475 SWAP1 PUSH2 0x13D0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x460 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 PUSH2 0x61B PUSH2 0xBA7 JUMP JUMPDEST PUSH2 0x623 PUSH2 0xBD4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP12 SWAP4 SWAP11 POP SWAP2 SWAP9 POP CHAINID SWAP8 POP ADDRESS SWAP7 POP SWAP5 POP SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xB DUP1 SLOAD PUSH2 0x475 SWAP1 PUSH2 0x13D0 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x506 DUP2 DUP6 DUP6 PUSH2 0x8D5 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x6BE JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x70B DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x766 DUP3 PUSH2 0xC01 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x776 DUP3 DUP8 DUP8 DUP8 PUSH2 0xC2E JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7BD JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH2 0x7C8 DUP11 DUP11 DUP11 PUSH2 0x850 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x7EF DUP2 PUSH2 0x934 JUMP JUMPDEST PUSH2 0x559 DUP4 DUP4 PUSH2 0xB00 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x804 DUP2 PUSH2 0x934 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0xFF NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0xD DUP5 MSTORE DUP3 DUP6 KECCAK256 DUP1 SLOAD DUP3 AND DUP4 OR SWAP1 SSTORE PUSH1 0xE SWAP1 SWAP4 MSTORE SWAP3 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 AND SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x5A1 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xC5C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 EQ PUSH2 0x559 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x8C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH2 0x559 DUP5 DUP5 DUP5 DUP5 SUB PUSH1 0x0 PUSH2 0xC5C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x8FF JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x929 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH2 0x5A1 DUP4 DUP4 DUP4 PUSH2 0xD31 JUMP JUMPDEST PUSH2 0x93E DUP2 CALLER PUSH2 0xE5B JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x94D DUP4 DUP4 PUSH2 0x64D JUMP JUMPDEST PUSH2 0x9CD JUMPI PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0x985 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x460 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x460 JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0xA2E JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0xA58 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x569 PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x0 SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB0C DUP4 DUP4 PUSH2 0x64D JUMP JUMPDEST ISZERO PUSH2 0x9CD JUMPI PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x460 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB97 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH2 0xBA3 PUSH1 0x0 DUP4 DUP4 PUSH2 0xD31 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x569 PUSH32 0x0 PUSH1 0x5 PUSH2 0xE94 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x569 PUSH32 0x0 PUSH1 0x6 PUSH2 0xE94 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x460 PUSH2 0xC0E PUSH2 0x9D5 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0xC40 DUP9 DUP9 DUP9 DUP9 PUSH2 0xF3F JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xC50 DUP3 DUP3 PUSH2 0x100E JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0xC86 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xCB0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x559 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xD23 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD5C JUMPI DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xD51 SWAP2 SWAP1 PUSH2 0x140A JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xDCE SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xDAF JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDEA JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xE4E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0xE65 DUP3 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH2 0xBA3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0xEAE JUMPI PUSH2 0xEA7 DUP4 PUSH2 0x10C7 JUMP JUMPDEST SWAP1 POP PUSH2 0x460 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xEBA SWAP1 PUSH2 0x13D0 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xEE6 SWAP1 PUSH2 0x13D0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xF33 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xF08 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xF33 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xF16 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x460 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xF7A JUMPI POP PUSH1 0x0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xFCE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xFFA JUMPI POP PUSH1 0x0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x1004 JUMP JUMPDEST SWAP3 POP PUSH1 0x0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1022 JUMPI PUSH2 0x1022 PUSH2 0x142B JUMP JUMPDEST SUB PUSH2 0x102B JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x103F JUMPI PUSH2 0x103F PUSH2 0x142B JUMP JUMPDEST SUB PUSH2 0x105D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1071 JUMPI PUSH2 0x1071 PUSH2 0x142B JUMP JUMPDEST SUB PUSH2 0x1092 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x10A6 JUMPI PUSH2 0x10A6 PUSH2 0x142B JUMP JUMPDEST SUB PUSH2 0xBA3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x6B5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x10D4 DUP4 PUSH2 0x1106 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP SWAP2 DUP3 MSTORE POP PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x460 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1140 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x1158 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1185 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x1169 JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1158 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x115F JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x11F0 DUP4 PUSH2 0x11B8 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1213 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x121C DUP5 PUSH2 0x11B8 JUMP JUMPDEST SWAP3 POP PUSH2 0x122A PUSH1 0x20 DUP6 ADD PUSH2 0x11B8 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x124C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1266 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x1276 PUSH1 0x20 DUP5 ADD PUSH2 0x11B8 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1291 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1158 DUP3 PUSH2 0x11B8 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0x0 PUSH1 0x20 PUSH1 0xE0 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x12BB PUSH1 0xE0 DUP5 ADD DUP11 PUSH2 0x115F JUMP JUMPDEST DUP4 DUP2 SUB PUSH1 0x40 DUP6 ADD MSTORE PUSH2 0x12CD DUP2 DUP11 PUSH2 0x115F JUMP JUMPDEST PUSH1 0x60 DUP6 ADD DUP10 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x80 DUP7 ADD MSTORE PUSH1 0xA0 DUP6 ADD DUP8 SWAP1 MSTORE DUP5 DUP2 SUB PUSH1 0xC0 DUP7 ADD MSTORE DUP6 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP9 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1321 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1305 JUMP JUMPDEST POP SWAP1 SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x134E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1357 DUP9 PUSH2 0x11B8 JUMP JUMPDEST SWAP7 POP PUSH2 0x1365 PUSH1 0x20 DUP10 ADD PUSH2 0x11B8 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1389 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13C2 DUP4 PUSH2 0x11B8 JUMP JUMPDEST SWAP2 POP PUSH2 0x1276 PUSH1 0x20 DUP5 ADD PUSH2 0x11B8 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x13E4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1404 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x460 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 0xCE PUSH0 0xBC JUMPDEST DUP12 0xCB 0xE5 DUP12 DUP15 RETURNDATACOPY 0xB4 SWAP14 SHL CREATE2 AND EXP SHR 0xB1 SLT SSTORE 0xD ADD PUSH19 0xE0A378454EB6AD9864736F6C63430008160033 ","methodIdentifiers":{"DEFAULT_ADMIN_ROLE()":"a217fddf","DOMAIN_SEPARATOR()":"3644e515","MINTER_ROLE()":"d5391393","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","blacklist(address)":"f9f92be4","decimals()":"313ce567","eip712Domain()":"84b0196e","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","isBlackListed(address)":"e47d6060","isBlacklisted(address)":"fe575a87","isBlocked(address)":"fbac3951","mint(address,uint256)":"40c10f19","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","version()":"54fd4d50"},"rawMetadata":"{\"compiler\":{\"version\":\"0.8.22+commit.4fc1097e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"MINTER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"blacklist\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"isBlackListed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"isBlacklisted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"isBlocked\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {AccessControl-_setupRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"eip712Domain()\":{\"details\":\"See {IERC-5267}.\"},\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"test/utils/mocks/MockToken.sol\":\"MockToken\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/\",\":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/\",\":@prb/test/=lib/prb-math/lib/prb-test/src/\",\":chainlink/=lib/chainlink/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":prb-math/=lib/prb-math/src/\",\":prb-test/=lib/prb-math/lib/prb-test/src/\",\":solady/=lib/solady/\",\":solidity-code-metrics/=node_modules/solidity-code-metrics/\"]},\"sources\":{\"lib/openzeppelin-contracts/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"lib/openzeppelin-contracts/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xb6b36edd6a2999fd243ff226d6cbf84bd71af2432bbd0dfe19392996a1d9cb41\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1fd2f35495652e57e3f99bc6c510bc5f7dd398a176ea2e72d8ed730aebc6ca26\",\"dweb:/ipfs/QmTQV6X4gkikTib49cho5iDX3JvSQbdsoEChoDwrk3CbbH\"]},\"lib/openzeppelin-contracts/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f\",\"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0xc3e1fa9d1987f8d349dfb4d6fe93bf2ca014b52ba335cfac30bfe71e357e6f80\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5703ccdeb7b1d685e375ed719117e9edf2ab4bc544f24f23b0d50ec82257229\",\"dweb:/ipfs/QmTdwkbQq7owpCiyuzE7eh5LrD2ddrBCZ5WHVsWPi1RrTS\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c\",\"dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850\",\"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV\"]},\"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x6008dabfe393240d73d7dd7688033f72740d570aa422254d29a7dce8568f3aff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5196ec75139918c6c7bb4251b36395e668f1fa6d206beba7e7520e74913940d\",\"dweb:/ipfs/QmSyqjksXxmm2mCG6qRd1yuwLykypkSVBbnBnGqJRcuJMi\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0x75a4ee64c68dbd5f38bddd06e664a64c8271b4caa554fb6f0607dfd672bb4bf3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0c4e6cb30d3601e2f7af5af09e265508147cb275a8dcd99d6f7363645cc56867\",\"dweb:/ipfs/QmNgFkoXNWoUbAyw71rr1sKQ95Rj2GfvYiWg79xEYDn2NY\"]},\"lib/openzeppelin-contracts/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"lib/openzeppelin-contracts/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x18a7171df639a934592915a520ecb97c5bbc9675a1105607aac8a94e72bf62c6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7478e1f13da69a2867ccd883001d836b75620362e743f196376d63ed0c422a1c\",\"dweb:/ipfs/QmWywcQ9TNfwtoqAxbn25d8C5VrV12PrPS9UjtGe6pL2BA\"]},\"lib/openzeppelin-contracts/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0x32ba59b4b7299237c8ba56319110989d7978a039faf754793064e967e5894418\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1ae50c8b562427df610cc4540c9bf104acca7ef8e2dcae567ae7e52272281e9c\",\"dweb:/ipfs/QmTHiadFCSJUPpRjNegc5SahmeU8bAoY8i9Aq6tVscbcKR\"]},\"lib/openzeppelin-contracts/contracts/utils/Strings.sol\":{\"keccak256\":\"0x55f102ea785d8399c0e58d1108e2d289506dde18abc6db1b7f68c1f9f9bc5792\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e52e0a7765c943ef14e5bcf11e46e6139fa044be564881378349236bf2e3453\",\"dweb:/ipfs/QmZEeeXoFPW47amyP35gfzomF9DixqqTEPwzBakv6cZw6i\"]},\"lib/openzeppelin-contracts/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0xeed0a08b0b091f528356cbc7245891a4c748682d4f6a18055e8e6ca77d12a6cf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba80ba06c8e6be852847e4c5f4492cef801feb6558ae09ed705ff2e04ea8b13c\",\"dweb:/ipfs/QmXRJDv3xHLVQCVXg1ZvR35QS9sij5y9NDWYzMfUfAdTHF\"]},\"lib/openzeppelin-contracts/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x999f705a027ed6dc2d4e0df2cc4a509852c6bfd11de1c8161bf88832d0503fd0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0798def67258d9a3cc20b2b4da7ebf351a5cefe0abfdd665d2d81f8e32f89b21\",\"dweb:/ipfs/QmPEvJosnPfzHNjKvCv2D3891mA2Ww8eUwkqrxBjuYdHCt\"]},\"lib/openzeppelin-contracts/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0xba333517a3add42cd35fe877656fc3dfcc9de53baa4f3aabbd6d12a92e4ea435\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2ceacff44c0fdc81e48e0e0b1db87a2076d3c1fb497341de077bf1da9f6b406c\",\"dweb:/ipfs/QmRUo1muMRAewxrKQ7TkXUtknyRoR57AyEkoPpiuZQ8FzX\"]},\"lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x9e8778b14317ba9e256c30a76fd6c32b960af621987f56069e1e819c77c6a133\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1777404f1dcd0fac188e55a288724ec3c67b45288e49cc64723e95e702b49ab8\",\"dweb:/ipfs/QmZFdC626GButBApwDUvvTnUzdinevC3B24d7yyh57XkiA\"]},\"lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x4296879f55019b23e135000eb36896057e7101fb7fb859c5ef690cf14643757b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://87b3541437c8c443ccd36795e56a338ed12855eec17f8da624511b8d1a7e14df\",\"dweb:/ipfs/QmeJQCtZrQjtJLr6u7ZHWeH3pBnjtLWzvRrKViAi7UZqxL\"]},\"lib/openzeppelin-contracts/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x005ec64c6313f0555d59e278f9a7a5ab2db5bdc72a027f255a37c327af1ec02d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4ece9f0b9c8daca08c76b6b5405a6446b6f73b3a15fab7ff56e296cbd4a2c875\",\"dweb:/ipfs/QmQyRpyPRL5SQuAgj6SHmbir3foX65FJjbVTTQrA2EFg6L\"]},\"lib/openzeppelin-contracts/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0x5f7e4076e175393767754387c962926577f1660dd9b810187b9002407656be72\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7d533a1c97cd43a57cd9c465f7ee8dd0e39ae93a8fb8ff8e5303a356b081cdcc\",\"dweb:/ipfs/QmVBEei6aTnvYNZp2CHYVNKyZS4q1KkjANfY39WVXZXVoT\"]},\"test/utils/mocks/MockERC20PermitVersion.sol\":{\"keccak256\":\"0x665241fe9d70d60018d5d107545f08a712962067a67c437f404bff994c3513f2\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://ce03907c41835b473b2a11ff589a77c9a11b03f99b29c61f9c3153ee9abf1b2d\",\"dweb:/ipfs/QmVmknMHm37Ju4ccKbgRZShYdZMufJoX3pcpRGrXgz9o4Q\"]},\"test/utils/mocks/MockToken.sol\":{\"keccak256\":\"0xd32e5b25d54b5135ef43de573b4304ea30fb1c2b1f17070a648c3e6e3a7569f2\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://3309f5b8e5b3fa4fc5a8f5f4355c63fe0410cd5bb20169c0007b83d94a13bc24\",\"dweb:/ipfs/QmZVgDi3Gotdu1UWEmKNjc9PSAU6XzHXU2bqvKDtR5BPUD\"]}},\"version\":1}","metadata":{"compiler":{"version":"0.8.22+commit.4fc1097e"},"language":"Solidity","output":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"type":"error","name":"AccessControlBadConfirmation"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"type":"error","name":"AccessControlUnauthorizedAccount"},{"inputs":[],"type":"error","name":"ECDSAInvalidSignature"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"type":"error","name":"ECDSAInvalidSignatureLength"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"type":"error","name":"ECDSAInvalidSignatureS"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"type":"error","name":"ERC20InsufficientAllowance"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"type":"error","name":"ERC20InsufficientBalance"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"type":"error","name":"ERC20InvalidApprover"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"type":"error","name":"ERC20InvalidReceiver"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"type":"error","name":"ERC20InvalidSender"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"type":"error","name":"ERC20InvalidSpender"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"type":"error","name":"ERC2612ExpiredSignature"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"type":"error","name":"ERC2612InvalidSigner"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"type":"error","name":"InvalidAccountNonce"},{"inputs":[],"type":"error","name":"InvalidShortString"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"type":"error","name":"StringTooLong"},{"inputs":[{"internalType":"address","name":"owner","type":"address","indexed":true},{"internalType":"address","name":"spender","type":"address","indexed":true},{"internalType":"uint256","name":"value","type":"uint256","indexed":false}],"type":"event","name":"Approval","anonymous":false},{"inputs":[],"type":"event","name":"EIP712DomainChanged","anonymous":false},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32","indexed":true},{"internalType":"bytes32","name":"previousAdminRole","type":"bytes32","indexed":true},{"internalType":"bytes32","name":"newAdminRole","type":"bytes32","indexed":true}],"type":"event","name":"RoleAdminChanged","anonymous":false},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32","indexed":true},{"internalType":"address","name":"account","type":"address","indexed":true},{"internalType":"address","name":"sender","type":"address","indexed":true}],"type":"event","name":"RoleGranted","anonymous":false},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32","indexed":true},{"internalType":"address","name":"account","type":"address","indexed":true},{"internalType":"address","name":"sender","type":"address","indexed":true}],"type":"event","name":"RoleRevoked","anonymous":false},{"inputs":[{"internalType":"address","name":"from","type":"address","indexed":true},{"internalType":"address","name":"to","type":"address","indexed":true},{"internalType":"uint256","name":"value","type":"uint256","indexed":false}],"type":"event","name":"Transfer","anonymous":false},{"inputs":[],"stateMutability":"view","type":"function","name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}]},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"stateMutability":"view","type":"function","name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}]},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"nonpayable","type":"function","name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}]},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"stateMutability":"view","type":"function","name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}]},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"function","name":"blacklist"},{"inputs":[],"stateMutability":"pure","type":"function","name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}]},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"stateMutability":"view","type":"function","name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}]},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"function","name":"grantRole"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"stateMutability":"view","type":"function","name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}]},{"inputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function","name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}]},{"inputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function","name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}]},{"inputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function","name":"isBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}]},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"function","name":"mint"},{"inputs":[],"stateMutability":"view","type":"function","name":"name","outputs":[{"internalType":"string","name":"","type":"string"}]},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function","name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}]},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"stateMutability":"nonpayable","type":"function","name":"permit"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"stateMutability":"nonpayable","type":"function","name":"renounceRole"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"function","name":"revokeRole"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"stateMutability":"view","type":"function","name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}]},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"nonpayable","type":"function","name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}]},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"nonpayable","type":"function","name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}]},{"inputs":[],"stateMutability":"view","type":"function","name":"version","outputs":[{"internalType":"string","name":"","type":"string"}]}],"devdoc":{"kind":"dev","methods":{"DOMAIN_SEPARATOR()":{"details":"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."},"allowance(address,address)":{"details":"See {IERC20-allowance}."},"approve(address,uint256)":{"details":"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."},"balanceOf(address)":{"details":"See {IERC20-balanceOf}."},"decimals()":{"details":"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."},"eip712Domain()":{"details":"See {IERC-5267}."},"getRoleAdmin(bytes32)":{"details":"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}."},"grantRole(bytes32,address)":{"details":"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event."},"hasRole(bytes32,address)":{"details":"Returns `true` if `account` has been granted `role`."},"name()":{"details":"Returns the name of the token."},"nonces(address)":{"details":"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times."},"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":{"details":"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above."},"renounceRole(bytes32,address)":{"details":"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event."},"revokeRole(bytes32,address)":{"details":"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event."},"supportsInterface(bytes4)":{"details":"See {IERC165-supportsInterface}."},"symbol()":{"details":"Returns the symbol of the token, usually a shorter version of the name."},"totalSupply()":{"details":"See {IERC20-totalSupply}."},"transfer(address,uint256)":{"details":"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`."},"transferFrom(address,address,uint256)":{"details":"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`."}},"version":1},"userdoc":{"kind":"user","methods":{},"version":1}},"settings":{"remappings":["@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@prb/test/=lib/prb-math/lib/prb-test/src/","chainlink/=lib/chainlink/","ds-test/=lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/","openzeppelin-contracts/=lib/openzeppelin-contracts/","prb-math/=lib/prb-math/src/","prb-test/=lib/prb-math/lib/prb-test/src/","solady/=lib/solady/","solidity-code-metrics/=node_modules/solidity-code-metrics/"],"optimizer":{"enabled":true,"runs":200},"metadata":{"bytecodeHash":"ipfs"},"compilationTarget":{"test/utils/mocks/MockToken.sol":"MockToken"},"evmVersion":"paris","libraries":{}},"sources":{"lib/openzeppelin-contracts/contracts/access/AccessControl.sol":{"keccak256":"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308","urls":["bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80","dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/access/IAccessControl.sol":{"keccak256":"0xb6b36edd6a2999fd243ff226d6cbf84bd71af2432bbd0dfe19392996a1d9cb41","urls":["bzz-raw://1fd2f35495652e57e3f99bc6c510bc5f7dd398a176ea2e72d8ed730aebc6ca26","dweb:/ipfs/QmTQV6X4gkikTib49cho5iDX3JvSQbdsoEChoDwrk3CbbH"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/interfaces/IERC5267.sol":{"keccak256":"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92","urls":["bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a","dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol":{"keccak256":"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7","urls":["bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f","dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol":{"keccak256":"0xc3e1fa9d1987f8d349dfb4d6fe93bf2ca014b52ba335cfac30bfe71e357e6f80","urls":["bzz-raw://c5703ccdeb7b1d685e375ed719117e9edf2ab4bc544f24f23b0d50ec82257229","dweb:/ipfs/QmTdwkbQq7owpCiyuzE7eh5LrD2ddrBCZ5WHVsWPi1RrTS"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol":{"keccak256":"0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70","urls":["bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c","dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"keccak256":"0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2","urls":["bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850","dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Permit.sol":{"keccak256":"0x6008dabfe393240d73d7dd7688033f72740d570aa422254d29a7dce8568f3aff","urls":["bzz-raw://f5196ec75139918c6c7bb4251b36395e668f1fa6d206beba7e7520e74913940d","dweb:/ipfs/QmSyqjksXxmm2mCG6qRd1yuwLykypkSVBbnBnGqJRcuJMi"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/Context.sol":{"keccak256":"0x75a4ee64c68dbd5f38bddd06e664a64c8271b4caa554fb6f0607dfd672bb4bf3","urls":["bzz-raw://0c4e6cb30d3601e2f7af5af09e265508147cb275a8dcd99d6f7363645cc56867","dweb:/ipfs/QmNgFkoXNWoUbAyw71rr1sKQ95Rj2GfvYiWg79xEYDn2NY"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/Nonces.sol":{"keccak256":"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f","urls":["bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e","dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/ShortStrings.sol":{"keccak256":"0x18a7171df639a934592915a520ecb97c5bbc9675a1105607aac8a94e72bf62c6","urls":["bzz-raw://7478e1f13da69a2867ccd883001d836b75620362e743f196376d63ed0c422a1c","dweb:/ipfs/QmWywcQ9TNfwtoqAxbn25d8C5VrV12PrPS9UjtGe6pL2BA"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/StorageSlot.sol":{"keccak256":"0x32ba59b4b7299237c8ba56319110989d7978a039faf754793064e967e5894418","urls":["bzz-raw://1ae50c8b562427df610cc4540c9bf104acca7ef8e2dcae567ae7e52272281e9c","dweb:/ipfs/QmTHiadFCSJUPpRjNegc5SahmeU8bAoY8i9Aq6tVscbcKR"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/Strings.sol":{"keccak256":"0x55f102ea785d8399c0e58d1108e2d289506dde18abc6db1b7f68c1f9f9bc5792","urls":["bzz-raw://6e52e0a7765c943ef14e5bcf11e46e6139fa044be564881378349236bf2e3453","dweb:/ipfs/QmZEeeXoFPW47amyP35gfzomF9DixqqTEPwzBakv6cZw6i"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/cryptography/ECDSA.sol":{"keccak256":"0xeed0a08b0b091f528356cbc7245891a4c748682d4f6a18055e8e6ca77d12a6cf","urls":["bzz-raw://ba80ba06c8e6be852847e4c5f4492cef801feb6558ae09ed705ff2e04ea8b13c","dweb:/ipfs/QmXRJDv3xHLVQCVXg1ZvR35QS9sij5y9NDWYzMfUfAdTHF"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/cryptography/EIP712.sol":{"keccak256":"0x999f705a027ed6dc2d4e0df2cc4a509852c6bfd11de1c8161bf88832d0503fd0","urls":["bzz-raw://0798def67258d9a3cc20b2b4da7ebf351a5cefe0abfdd665d2d81f8e32f89b21","dweb:/ipfs/QmPEvJosnPfzHNjKvCv2D3891mA2Ww8eUwkqrxBjuYdHCt"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/cryptography/MessageHashUtils.sol":{"keccak256":"0xba333517a3add42cd35fe877656fc3dfcc9de53baa4f3aabbd6d12a92e4ea435","urls":["bzz-raw://2ceacff44c0fdc81e48e0e0b1db87a2076d3c1fb497341de077bf1da9f6b406c","dweb:/ipfs/QmRUo1muMRAewxrKQ7TkXUtknyRoR57AyEkoPpiuZQ8FzX"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol":{"keccak256":"0x9e8778b14317ba9e256c30a76fd6c32b960af621987f56069e1e819c77c6a133","urls":["bzz-raw://1777404f1dcd0fac188e55a288724ec3c67b45288e49cc64723e95e702b49ab8","dweb:/ipfs/QmZFdC626GButBApwDUvvTnUzdinevC3B24d7yyh57XkiA"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol":{"keccak256":"0x4296879f55019b23e135000eb36896057e7101fb7fb859c5ef690cf14643757b","urls":["bzz-raw://87b3541437c8c443ccd36795e56a338ed12855eec17f8da624511b8d1a7e14df","dweb:/ipfs/QmeJQCtZrQjtJLr6u7ZHWeH3pBnjtLWzvRrKViAi7UZqxL"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/math/Math.sol":{"keccak256":"0x005ec64c6313f0555d59e278f9a7a5ab2db5bdc72a027f255a37c327af1ec02d","urls":["bzz-raw://4ece9f0b9c8daca08c76b6b5405a6446b6f73b3a15fab7ff56e296cbd4a2c875","dweb:/ipfs/QmQyRpyPRL5SQuAgj6SHmbir3foX65FJjbVTTQrA2EFg6L"],"license":"MIT"},"lib/openzeppelin-contracts/contracts/utils/math/SignedMath.sol":{"keccak256":"0x5f7e4076e175393767754387c962926577f1660dd9b810187b9002407656be72","urls":["bzz-raw://7d533a1c97cd43a57cd9c465f7ee8dd0e39ae93a8fb8ff8e5303a356b081cdcc","dweb:/ipfs/QmVBEei6aTnvYNZp2CHYVNKyZS4q1KkjANfY39WVXZXVoT"],"license":"MIT"},"test/utils/mocks/MockERC20PermitVersion.sol":{"keccak256":"0x665241fe9d70d60018d5d107545f08a712962067a67c437f404bff994c3513f2","urls":["bzz-raw://ce03907c41835b473b2a11ff589a77c9a11b03f99b29c61f9c3153ee9abf1b2d","dweb:/ipfs/QmVmknMHm37Ju4ccKbgRZShYdZMufJoX3pcpRGrXgz9o4Q"],"license":"UNLICENSED"},"test/utils/mocks/MockToken.sol":{"keccak256":"0xd32e5b25d54b5135ef43de573b4304ea30fb1c2b1f17070a648c3e6e3a7569f2","urls":["bzz-raw://3309f5b8e5b3fa4fc5a8f5f4355c63fe0410cd5bb20169c0007b83d94a13bc24","dweb:/ipfs/QmZVgDi3Gotdu1UWEmKNjc9PSAU6XzHXU2bqvKDtR5BPUD"],"license":"UNLICENSED"}},"version":1},"ast":{"absolutePath":"test/utils/mocks/MockToken.sol","id":89621,"exportedSymbols":{"AccessControl":[45379],"ERC20":[47656],"MockERC20PermitVersion":[89459],"MockToken":[89620],"Strings":[49136]},"nodeType":"SourceUnit","src":"39:1730:132","nodes":[{"id":89461,"nodeType":"PragmaDirective","src":"39:23:132","nodes":[],"literals":["solidity","0.8",".22"]},{"id":89463,"nodeType":"ImportDirective","src":"105:68:132","nodes":[],"absolutePath":"test/utils/mocks/MockERC20PermitVersion.sol","file":"./MockERC20PermitVersion.sol","nameLocation":"-1:-1:-1","scope":89621,"sourceUnit":89460,"symbolAliases":[{"foreign":{"id":89462,"name":"MockERC20PermitVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89459,"src":"113:22:132","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"id":89465,"nodeType":"ImportDirective","src":"174:88:132","nodes":[],"absolutePath":"lib/openzeppelin-contracts/contracts/access/AccessControl.sol","file":"openzeppelin-contracts/contracts/access/AccessControl.sol","nameLocation":"-1:-1:-1","scope":89621,"sourceUnit":45380,"symbolAliases":[{"foreign":{"id":89464,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":45379,"src":"182:13:132","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"id":89467,"nodeType":"ImportDirective","src":"263:77:132","nodes":[],"absolutePath":"lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol","file":"openzeppelin-contracts/contracts/token/ERC20/ERC20.sol","nameLocation":"-1:-1:-1","scope":89621,"sourceUnit":47657,"symbolAliases":[{"foreign":{"id":89466,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":47656,"src":"271:5:132","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"id":89469,"nodeType":"ImportDirective","src":"341:75:132","nodes":[],"absolutePath":"lib/openzeppelin-contracts/contracts/utils/Strings.sol","file":"openzeppelin-contracts/contracts/utils/Strings.sol","nameLocation":"-1:-1:-1","scope":89621,"sourceUnit":49137,"symbolAliases":[{"foreign":{"id":89468,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":49136,"src":"349:7:132","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"id":89620,"nodeType":"ContractDefinition","src":"418:1350:132","nodes":[{"id":89478,"nodeType":"VariableDeclaration","src":"484:62:132","nodes":[],"constant":true,"functionSelector":"d5391393","mutability":"constant","name":"MINTER_ROLE","nameLocation":"508:11:132","scope":89620,"stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":89474,"name":"bytes32","nodeType":"ElementaryTypeName","src":"484:7:132","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4d494e5445525f524f4c45","id":89476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"532:13:132","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6","typeString":"literal_string \"MINTER_ROLE\""},"value":"MINTER_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6","typeString":"literal_string \"MINTER_ROLE\""}],"id":89475,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"522:9:132","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":89477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"522:24:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"id":89480,"nodeType":"VariableDeclaration","src":"553:12:132","nodes":[],"constant":false,"mutability":"mutable","name":"_name","nameLocation":"560:5:132","scope":89620,"stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":89479,"name":"string","nodeType":"ElementaryTypeName","src":"553:6:132","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"id":89482,"nodeType":"VariableDeclaration","src":"571:14:132","nodes":[],"constant":false,"mutability":"mutable","name":"_symbol","nameLocation":"578:7:132","scope":89620,"stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":89481,"name":"string","nodeType":"ElementaryTypeName","src":"571:6:132","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"id":89486,"nodeType":"VariableDeclaration","src":"592:45:132","nodes":[],"constant":false,"functionSelector":"fe575a87","mutability":"mutable","name":"isBlacklisted","nameLocation":"624:13:132","scope":89620,"stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":89485,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":89483,"name":"address","nodeType":"ElementaryTypeName","src":"600:7:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"592:24:132","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":89484,"name":"bool","nodeType":"ElementaryTypeName","src":"611:4:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"id":89490,"nodeType":"VariableDeclaration","src":"643:45:132","nodes":[],"constant":false,"functionSelector":"e47d6060","mutability":"mutable","name":"isBlackListed","nameLocation":"675:13:132","scope":89620,"stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":89489,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":89487,"name":"address","nodeType":"ElementaryTypeName","src":"651:7:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"643:24:132","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":89488,"name":"bool","nodeType":"ElementaryTypeName","src":"662:4:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"id":89494,"nodeType":"VariableDeclaration","src":"694:41:132","nodes":[],"constant":false,"functionSelector":"fbac3951","mutability":"mutable","name":"isBlocked","nameLocation":"726:9:132","scope":89620,"stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":89493,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":89491,"name":"address","nodeType":"ElementaryTypeName","src":"702:7:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"694:24:132","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":89492,"name":"bool","nodeType":"ElementaryTypeName","src":"713:4:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"id":89549,"nodeType":"FunctionDefinition","src":"742:421:132","nodes":[],"body":{"id":89548,"nodeType":"Block","src":"1008:155:132","nodes":[],"statements":[{"expression":{"id":89530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":89528,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89480,"src":"1018:5:132","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":89529,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89496,"src":"1026:5:132","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1018:13:132","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":89531,"nodeType":"ExpressionStatement","src":"1018:13:132"},{"expression":{"id":89534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":89532,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89482,"src":"1041:7:132","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":89533,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89498,"src":"1051:7:132","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1041:17:132","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":89535,"nodeType":"ExpressionStatement","src":"1041:17:132"},{"expression":{"arguments":[{"id":89537,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":45113,"src":"1080:18:132","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":89538,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1100:3:132","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":89539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1104:6:132","memberName":"sender","nodeType":"MemberAccess","src":"1100:10:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":89536,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":45340,"src":"1069:10:132","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":89540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1069:42:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":89541,"nodeType":"ExpressionStatement","src":"1069:42:132"},{"expression":{"arguments":[{"id":89543,"name":"MINTER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89478,"src":"1132:11:132","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":89544,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1145:3:132","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":89545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1149:6:132","memberName":"sender","nodeType":"MemberAccess","src":"1145:10:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":89542,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":45340,"src":"1121:10:132","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":89546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1121:35:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":89547,"nodeType":"ExpressionStatement","src":"1121:35:132"}]},"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":89501,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89496,"src":"842:5:132","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":89519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"expression":{"id":89511,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"919:5:132","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":89512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:9:132","memberName":"timestamp","nodeType":"MemberAccess","src":"919:15:132","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":89513,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"936:5:132","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":89514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"942:10:132","memberName":"prevrandao","nodeType":"MemberAccess","src":"936:16:132","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":89509,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"902:3:132","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":89510,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"906:12:132","memberName":"encodePacked","nodeType":"MemberAccess","src":"902:16:132","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":89515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"902:51:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":89508,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"892:9:132","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":89516,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"892:62:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":89507,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"884:7:132","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":89506,"name":"uint256","nodeType":"ElementaryTypeName","src":"884:7:132","typeDescriptions":{}}},"id":89517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"884:71:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"323530","id":89518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"958:3:132","typeDescriptions":{"typeIdentifier":"t_rational_250_by_1","typeString":"int_const 250"},"value":"250"},"src":"884:77:132","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":89505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"878:5:132","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":89504,"name":"uint8","nodeType":"ElementaryTypeName","src":"878:5:132","typeDescriptions":{}}},"id":89520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"878:84:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"expression":{"id":89502,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":49136,"src":"861:7:132","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$49136_$","typeString":"type(library Strings)"}},"id":89503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"869:8:132","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":48949,"src":"861:16:132","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":89521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"861:102:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":89522,"kind":"baseConstructorSpecifier","modifierName":{"id":89500,"name":"MockERC20PermitVersion","nameLocations":["806:22:132"],"nodeType":"IdentifierPath","referencedDeclaration":89459,"src":"806:22:132"},"nodeType":"ModifierInvocation","src":"806:167:132"},{"arguments":[{"id":89524,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89496,"src":"988:5:132","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":89525,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89498,"src":"995:7:132","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":89526,"kind":"baseConstructorSpecifier","modifierName":{"id":89523,"name":"ERC20","nameLocations":["982:5:132"],"nodeType":"IdentifierPath","referencedDeclaration":47656,"src":"982:5:132"},"nodeType":"ModifierInvocation","src":"982:21:132"}],"name":"","nameLocation":"-1:-1:-1","parameters":{"id":89499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":89496,"mutability":"mutable","name":"name_","nameLocation":"768:5:132","nodeType":"VariableDeclaration","scope":89549,"src":"754:19:132","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":89495,"name":"string","nodeType":"ElementaryTypeName","src":"754:6:132","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":89498,"mutability":"mutable","name":"symbol_","nameLocation":"789:7:132","nodeType":"VariableDeclaration","scope":89549,"src":"775:21:132","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":89497,"name":"string","nodeType":"ElementaryTypeName","src":"775:6:132","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"753:44:132"},"returnParameters":{"id":89527,"nodeType":"ParameterList","parameters":[],"src":"1008:0:132"},"scope":89620,"stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"id":89558,"nodeType":"FunctionDefinition","src":"1169:90:132","nodes":[],"body":{"id":89557,"nodeType":"Block","src":"1230:29:132","nodes":[],"statements":[{"expression":{"id":89555,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89480,"src":"1247:5:132","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":89554,"id":89556,"nodeType":"Return","src":"1240:12:132"}]},"baseFunctions":[47202],"functionSelector":"06fdde03","implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1178:4:132","overrides":{"id":89551,"nodeType":"OverrideSpecifier","overrides":[],"src":"1197:8:132"},"parameters":{"id":89550,"nodeType":"ParameterList","parameters":[],"src":"1182:2:132"},"returnParameters":{"id":89554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":89553,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":89558,"src":"1215:13:132","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":89552,"name":"string","nodeType":"ElementaryTypeName","src":"1215:6:132","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1214:15:132"},"scope":89620,"stateMutability":"view","virtual":false,"visibility":"public"},{"id":89567,"nodeType":"FunctionDefinition","src":"1265:94:132","nodes":[],"body":{"id":89566,"nodeType":"Block","src":"1328:31:132","nodes":[],"statements":[{"expression":{"id":89564,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89482,"src":"1345:7:132","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":89563,"id":89565,"nodeType":"Return","src":"1338:14:132"}]},"baseFunctions":[47211],"functionSelector":"95d89b41","implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1274:6:132","overrides":{"id":89560,"nodeType":"OverrideSpecifier","overrides":[],"src":"1295:8:132"},"parameters":{"id":89559,"nodeType":"ParameterList","parameters":[],"src":"1280:2:132"},"returnParameters":{"id":89563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":89562,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":89567,"src":"1313:13:132","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":89561,"name":"string","nodeType":"ElementaryTypeName","src":"1313:6:132","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1312:15:132"},"scope":89620,"stateMutability":"view","virtual":false,"visibility":"public"},{"id":89576,"nodeType":"FunctionDefinition","src":"1365:82:132","nodes":[],"body":{"id":89575,"nodeType":"Block","src":"1422:25:132","nodes":[],"statements":[{"expression":{"hexValue":"36","id":89573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1439:1:132","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"functionReturnParameters":89572,"id":89574,"nodeType":"Return","src":"1432:8:132"}]},"baseFunctions":[47220],"functionSelector":"313ce567","implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"1374:8:132","overrides":{"id":89569,"nodeType":"OverrideSpecifier","overrides":[],"src":"1397:8:132"},"parameters":{"id":89568,"nodeType":"ParameterList","parameters":[],"src":"1382:2:132"},"returnParameters":{"id":89572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":89571,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":89576,"src":"1415:5:132","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":89570,"name":"uint8","nodeType":"ElementaryTypeName","src":"1415:5:132","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"1414:7:132"},"scope":89620,"stateMutability":"pure","virtual":false,"visibility":"public"},{"id":89592,"nodeType":"FunctionDefinition","src":"1453:115:132","nodes":[],"body":{"id":89591,"nodeType":"Block","src":"1529:39:132","nodes":[],"statements":[{"expression":{"arguments":[{"id":89587,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89578,"src":"1545:7:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":89588,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89580,"src":"1554:6:132","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":89586,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":47496,"src":"1539:5:132","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":89589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1539:22:132","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":89590,"nodeType":"ExpressionStatement","src":"1539:22:132"}]},"functionSelector":"40c10f19","implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":89583,"name":"MINTER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89478,"src":"1516:11:132","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":89584,"kind":"modifierInvocation","modifierName":{"id":89582,"name":"onlyRole","nameLocations":["1507:8:132"],"nodeType":"IdentifierPath","referencedDeclaration":45124,"src":"1507:8:132"},"nodeType":"ModifierInvocation","src":"1507:21:132"}],"name":"mint","nameLocation":"1462:4:132","parameters":{"id":89581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":89578,"mutability":"mutable","name":"account","nameLocation":"1475:7:132","nodeType":"VariableDeclaration","scope":89592,"src":"1467:15:132","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":89577,"name":"address","nodeType":"ElementaryTypeName","src":"1467:7:132","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":89580,"mutability":"mutable","name":"amount","nameLocation":"1492:6:132","nodeType":"VariableDeclaration","scope":89592,"src":"1484:14:132","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":89579,"name":"uint256","nodeType":"ElementaryTypeName","src":"1484:7:132","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1466:33:132"},"returnParameters":{"id":89585,"nodeType":"ParameterList","parameters":[],"src":"1529:0:132"},"scope":89620,"stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"id":89619,"nodeType":"FunctionDefinition","src":"1574:192:132","nodes":[],"body":{"id":89618,"nodeType":"Block","src":"1646:120:132","nodes":[],"statements":[{"expression":{"id":89604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":89600,"name":"isBlacklisted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89486,"src":"1656:13:132","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":89602,"indexExpression":{"id":89601,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89594,"src":"1670:7:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1656:22:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":89603,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1681:4:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"1656:29:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":89605,"nodeType":"ExpressionStatement","src":"1656:29:132"},{"expression":{"id":89610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":89606,"name":"isBlackListed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89490,"src":"1695:13:132","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":89608,"indexExpression":{"id":89607,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89594,"src":"1709:7:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1695:22:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":89609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1720:4:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"1695:29:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":89611,"nodeType":"ExpressionStatement","src":"1695:29:132"},{"expression":{"id":89616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":89612,"name":"isBlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89494,"src":"1734:9:132","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":89614,"indexExpression":{"id":89613,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":89594,"src":"1744:7:132","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1734:18:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":89615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1755:4:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"1734:25:132","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":89617,"nodeType":"ExpressionStatement","src":"1734:25:132"}]},"functionSelector":"f9f92be4","implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":89597,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":45113,"src":"1626:18:132","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":89598,"kind":"modifierInvocation","modifierName":{"id":89596,"name":"onlyRole","nameLocations":["1617:8:132"],"nodeType":"IdentifierPath","referencedDeclaration":45124,"src":"1617:8:132"},"nodeType":"ModifierInvocation","src":"1617:28:132"}],"name":"blacklist","nameLocation":"1583:9:132","parameters":{"id":89595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":89594,"mutability":"mutable","name":"account","nameLocation":"1601:7:132","nodeType":"VariableDeclaration","scope":89619,"src":"1593:15:132","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":89593,"name":"address","nodeType":"ElementaryTypeName","src":"1593:7:132","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1592:17:132"},"returnParameters":{"id":89599,"nodeType":"ParameterList","parameters":[],"src":"1646:0:132"},"scope":89620,"stateMutability":"nonpayable","virtual":false,"visibility":"public"}],"abstract":false,"baseContracts":[{"baseName":{"id":89470,"name":"MockERC20PermitVersion","nameLocations":["440:22:132"],"nodeType":"IdentifierPath","referencedDeclaration":89459,"src":"440:22:132"},"id":89471,"nodeType":"InheritanceSpecifier","src":"440:22:132"},{"baseName":{"id":89472,"name":"AccessControl","nameLocations":["464:13:132"],"nodeType":"IdentifierPath","referencedDeclaration":45379,"src":"464:13:132"},"id":89473,"nodeType":"InheritanceSpecifier","src":"464:13:132"}],"canonicalName":"MockToken","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"linearizedBaseContracts":[89620,45379,49809,49821,45462,89459,48485,49711,46451,47796,47656,46513,47760,47734,48361],"name":"MockToken","nameLocation":"427:9:132","scope":89621,"usedErrors":[45389,45392,46483,46488,46493,46502,46507,46512,48427,48568,48570,49147,49152,49157,89320,89327],"usedEvents":[45401,45410,45419,46431,47668,47677]}],"license":"UNLICENSED"},"id":132}

cc @mds1

mattsse avatar Jan 30 '24 00:01 mattsse

@jaketimothy could you perhaps try to extract this to a minimal example? so I can easily play around with different versions

mattsse avatar Jan 30 '24 01:01 mattsse

@jaketimothy could you perhaps try to extract this to a minimal example? so I can easily play around with different versions

Yes, I'll cut out as much as I can to isolate

jaketimothy avatar Jan 30 '24 01:01 jaketimothy

@mattsse I cut the project down as far as I could for now: https://github.com/dinaricrypto/sbt-contracts/tree/jake/forge-push0

If I change a single character - even in comments - the PUSH0 goes away. If I remove any of the remaining yarn or forge imports, it goes away as well.

jaketimothy avatar Jan 30 '24 02:01 jaketimothy

How can I reproduce? I cloned your repo on that branch, tried forge build --force --extra-output evm.bytecode.opcodes and forge build --evm-version paris --force --extra-output evm.bytecode.opcodes, but in both cases no artifacts in the out/ dir have PUSH0. I changed evm version to shanghai and there were push0's in that case

mds1 avatar Jan 30 '24 16:01 mds1

+1

I'm also seeing PUSH0 opcodes in opcode output artefacts when specifying EVM version paris. Below is a Makefile test that caught the stray PUSH0 instructions:

test-push0:
	forge build --extra-output evm.bytecode.opcodes
	@if grep -qr --include \*.json PUSH0 ./out; then echo "Contract uses PUSH0 instruction" 1>&2; exit 1; else echo "PUSH0 Verification Succeeded"; fi

djb15 avatar Feb 13 '24 23:02 djb15

Can also reproduce with 0.8.24. This is the compiler input from Forge in dinaricrypto/sbt-contracts @ 4975ec086b96c3b3a12200ca9af00e624eb7dd5a (sources omitted):

{
  "language": "Solidity",
  "sources": {},
  "settings": {
    "remappings": [
      "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
      "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
      "@prb/test/=lib/prb-math/lib/prb-test/src/",
      "chainlink/=lib/chainlink/",
      "ds-test/=lib/solady/lib/ds-test/src/",
      "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
      "forge-std/=lib/forge-std/src/",
      "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
      "openzeppelin-contracts/=lib/openzeppelin-contracts/",
      "prb-math/=lib/prb-math/src/",
      "prb-test/=lib/prb-math/lib/prb-test/src/",
      "solady/=lib/solady/"
    ],
    "optimizer": {
      "enabled": true,
      "runs": 200
    },
    "metadata": {
      "useLiteralContent": false,
      "bytecodeHash": "ipfs",
      "appendCBOR": true
    },
    "outputSelection": {
      "*": {
        "": [
          "ast"
        ],
        "*": [
          "abi",
          "evm.bytecode",
          "evm.deployedBytecode",
          "evm.methodIdentifiers",
          "metadata"
        ]
      }
    },
    "evmVersion": "paris",
    "libraries": {}
  }
}

@jaketimothy I couldn't reproduce it in your jake/forge-push0 branch, this honestly just looks like a Solc bug

DaniPopes avatar Feb 19 '24 20:02 DaniPopes

hey everyone, i'm also seeing PUSH0 in places it doesn't belong. I created an example repo which is basically forge init followed by some changes to foundry.toml

here's my foundry config:

[profile.default]
  evm_version = "paris"
  libs = ["lib"]
  optimizer = true
  optimizer_runs = 30
  out = "out"
  solc_version = "0.8.23"
  src = "src"
  via_ir = false

you can run make test-push0 in my repo to confirm.

wildmolasses avatar Mar 06 '24 20:03 wildmolasses

I think I've figured it out.

TL;DR the PUSH0 appearances are just literal 0x5F bytes in the CBOR metadata which is appended to both deploy and runtime bytecode by default by Solc.


The opcode output does not have any context about metadata hashes, so it will display PUSH0 for any 0x5F byte.

Using v0.8.23, solc --standard-json input.json | jq '.contracts["src/Counter.sol"].Counter.evm.bytecode.opcodes'

input.json:

{
    "language": "Solidity",
    "sources": {
        "src/Counter.sol": {
            "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.13;\n\ncontract Counter {\n    uint256 public number;\n\n    function setNumber(uint256 newNumber) public {\n        number = newNumber;\n    }\n\n    function increment() public {\n        number++;\n    }\n}\n"
        }
    },
    "settings": {
        "remappings": ["ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/"],
        "optimizer": { "enabled": true, "runs": 30 },
        "metadata": {
            "appendCBOR": false
        },
        "outputSelection": {
            "*": {
                "*": [
                    "abi",
                    "evm.bytecode",
                    "evm.deployedBytecode",
                    "evm.methodIdentifiers",
                    "metadata"
                ]
            }
        },
        "evmVersion": "paris"
    }
}

Outputs:

"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xC1 DUP1 PUSH2 0x1F PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x3C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3FB5C1CB EQ PUSH1 0x41 JUMPI DUP1 PUSH4 0x8381F58A EQ PUSH1 0x53 JUMPI DUP1 PUSH4 0xD09DE08A EQ PUSH1 0x6D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x51 PUSH1 0x4C CALLDATASIZE PUSH1 0x4 PUSH1 0x83 JUMP JUMPDEST PUSH1 0x0 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH1 0x5B PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x51 PUSH1 0x0 DUP1 SLOAD SWAP1 DUP1 PUSH1 0x7C DUP4 PUSH1 0x9B JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x94 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH1 0xBA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP "

Notice there are no PUSH0, and that it ends in ADD SWAP1 JUMP.

Changing settings.metadata.appendCBOR to true outputs:

"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xF7 DUP1 PUSH2 0x1F PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x3C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3FB5C1CB EQ PUSH1 0x41 JUMPI DUP1 PUSH4 0x8381F58A EQ PUSH1 0x53 JUMPI DUP1 PUSH4 0xD09DE08A EQ PUSH1 0x6D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x51 PUSH1 0x4C CALLDATASIZE PUSH1 0x4 PUSH1 0x83 JUMP JUMPDEST PUSH1 0x0 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH1 0x5B PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x51 PUSH1 0x0 DUP1 SLOAD SWAP1 DUP1 PUSH1 0x7C DUP4 PUSH1 0x9B JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH1 0x94 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH1 0xBA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH0 MSTORE CALLCODE 0xBC 0xC7 0xF7 PUSH28 0x225DF0E5EF31B2FB84EB8F3FAB52E88F28C59CE7D10C30B36C64736F PUSH13 0x63430008170033000000000000 "

Now after the ADD SWAP1 JUMP there is an INVALID opcode and a bunch of junk, which is the decoded IPFS hash. It just so happens that the content + settings hash for this input contains a byte that gets interpreted as PUSH0.

This only appears in more recent Solc version because the bytecode decoder knows about PUSH0, even though it is never actually generated by the compiler.

DaniPopes avatar Mar 06 '24 21:03 DaniPopes

Thanks for looking into this @DaniPopes! Based on the above, I would expect the following foundry config settings to remove the PUSH0 opcodes from the output artifacts:

  cbor_metadata = false
  bytecode_hash = "none"

However that doesn't seem to get rid of them...any ideas?

djb15 avatar Mar 07 '24 01:03 djb15

@DaniPopes thanks for your help and analysis. Looks like it's just interpreting any literal 0x5F bytestring as PUSH0, right?

If so, this still seems like a bug - it's a bit confusing to interpret the metadata portion of the bytecode as opcodes. Or, do you recommend a test we could use that filters out the metadata portion of the bytecode so that doesn't get scanned when we check for the PUSH0 opcode?

nik-suri avatar Mar 07 '24 05:03 nik-suri

@djb15 That should be the case, are you sure you're on evm_version = "paris"?

@nik-suri

Looks like it's just interpreting any literal 0x5F bytestring as PUSH0, right?

That is correct.

You have to also consider that there are no "sections" in EVM bytecode, it's just one big chunk of bytes that has to be interpreted literally, so it's technically correct that the metadata is interpreted as opcodes.

But then again, Solc itself should know that the last X bytes are appended for metadata, so it should be able to filter it out of the opcode output.

If you think this is the case, I encourage you to open an issue in ethereum/solidity to discuss this further.

DaniPopes avatar Mar 07 '24 11:03 DaniPopes

@djb15 That should be the case, are you sure you're on evm_version = "paris"?

@DaniPopes Yeah sorry for not being more clear! I'm using evm_version = "paris", but I was referring to the metadata portion that contains the 0x5F bytes literal that's then written as a PUSH0 to the opcodes output with the flag --extra-output evm.bytecode.opcodes.

The PUSH0 occurrences I'm seeing in the output are in the metadata portion at the end of the opcodes output, so I would expect specifying the cbor_metadata and bytecode_hash flags above to strip the metadata from the opcodes output, but that doesn't seem to be happening.

Happy to open another issue for this as it's sort of orthogonal to what's discussed above? Also could be a solc issue tbf

djb15 avatar Mar 07 '24 15:03 djb15

@djb15 I could not reproduce, can you check --build-info output (in out/build-info/<...>.json) for the metadata settings? If there's a mismatch with forge config that's a bug in foundry, otherwise in Solc still emitting the metadata.. I can't really tell you more without a way to reproduce it, but I think it's on Solc at this point

DaniPopes avatar Mar 07 '24 18:03 DaniPopes

@DaniPopes Thanks for your help! Yeah the build info output is aligned with forge so looks like it's a solc problem still writing the metadata to the extra opcode output...will follow up with the folks over there

djb15 avatar Mar 07 '24 19:03 djb15