More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 91 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Submit Transacti... | 16497136 | 650 days ago | IN | 0 ETH | 0.00272611 | ||||
Submit Transacti... | 16497130 | 650 days ago | IN | 0 ETH | 0.00301673 | ||||
Execute Transact... | 16497106 | 650 days ago | IN | 0 ETH | 0.00090207 | ||||
Execute Transact... | 16497097 | 650 days ago | IN | 0 ETH | 0.00096024 | ||||
Submit Transacti... | 16497093 | 650 days ago | IN | 0 ETH | 0.00295399 | ||||
Submit Transacti... | 16497080 | 650 days ago | IN | 0 ETH | 0.00231993 | ||||
Confirm Transact... | 16497041 | 650 days ago | IN | 0 ETH | 0.00180903 | ||||
Confirm Transact... | 16496859 | 651 days ago | IN | 0 ETH | 0.00118335 | ||||
Execute Transact... | 16489490 | 652 days ago | IN | 0 ETH | 0.00094047 | ||||
Execute Transact... | 16484442 | 652 days ago | IN | 0 ETH | 0.00104317 | ||||
Confirm Transact... | 16484196 | 652 days ago | IN | 0 ETH | 0.00141838 | ||||
Confirm Transact... | 16483942 | 652 days ago | IN | 0 ETH | 0.00135786 | ||||
Submit Transacti... | 16483920 | 652 days ago | IN | 0 ETH | 0.00368034 | ||||
Submit Transacti... | 16483911 | 652 days ago | IN | 0 ETH | 0.00290112 | ||||
Confirm Transact... | 12718122 | 1229 days ago | IN | 0 ETH | 0.00406699 | ||||
Confirm Transact... | 12718120 | 1229 days ago | IN | 0 ETH | 0.00532706 | ||||
Confirm Transact... | 12717993 | 1229 days ago | IN | 0 ETH | 0.00350216 | ||||
Submit Transacti... | 12717954 | 1229 days ago | IN | 0 ETH | 0.00709244 | ||||
Confirm Transact... | 12717800 | 1229 days ago | IN | 0 ETH | 0.00288297 | ||||
Submit Transacti... | 12717784 | 1229 days ago | IN | 0 ETH | 0.00504027 | ||||
Confirm Transact... | 12683114 | 1234 days ago | IN | 0 ETH | 0.0056017 | ||||
Confirm Transact... | 12678695 | 1235 days ago | IN | 0 ETH | 0.00364694 | ||||
Submit Transacti... | 12678683 | 1235 days ago | IN | 0 ETH | 0.00853894 | ||||
Confirm Transact... | 11809439 | 1369 days ago | IN | 0 ETH | 0.01244691 | ||||
Confirm Transact... | 11809425 | 1369 days ago | IN | 0 ETH | 0.00293816 |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xFd26e0b9...fF6E80FDD The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MultiSigWalletWithDailyLimit
Compiler Version
v0.4.26+commit.4563c3fc
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-06-16 */ // iOWN Operations Administrative Gnosis Wallet // https://www.iowntoken.com // https://github.com/gnosis/MultiSigWallet // File: contracts/MultiSigWallet.sol pragma solidity ^0.4.15; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <[email protected]> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed sender, uint indexed transactionId); event Revocation(address indexed sender, uint indexed transactionId); event Submission(uint indexed transactionId); event Execution(uint indexed transactionId); event ExecutionFailure(uint indexed transactionId); event Deposit(address indexed sender, uint value); event OwnerAddition(address indexed owner); event OwnerRemoval(address indexed owner); event RequirementChange(uint required); /* * Constants */ uint constant public MAX_OWNER_COUNT = 50; /* * Storage */ mapping (uint => Transaction) public transactions; mapping (uint => mapping (address => bool)) public confirmations; mapping (address => bool) public isOwner; address[] public owners; uint public required; uint public transactionCount; struct Transaction { address destination; uint value; bytes data; bool executed; } /* * Modifiers */ modifier onlyWallet() { require(msg.sender == address(this)); _; } modifier ownerDoesNotExist(address owner) { require(!isOwner[owner]); _; } modifier ownerExists(address owner) { require(isOwner[owner]); _; } modifier transactionExists(uint transactionId) { require(transactions[transactionId].destination != 0); _; } modifier confirmed(uint transactionId, address owner) { require(confirmations[transactionId][owner]); _; } modifier notConfirmed(uint transactionId, address owner) { require(!confirmations[transactionId][owner]); _; } modifier notExecuted(uint transactionId) { require(!transactions[transactionId].executed); _; } modifier notNull(address _address) { require(_address != 0); _; } modifier validRequirement(uint ownerCount, uint _required) { require(ownerCount <= MAX_OWNER_COUNT && _required <= ownerCount && _required != 0 && ownerCount != 0); _; } /// @dev Fallback function allows to deposit ether. function() payable { if (msg.value > 0) Deposit(msg.sender, msg.value); } /* * Public functions */ /// @dev Contract constructor sets initial owners and required number of confirmations. /// @param _owners List of initial owners. /// @param _required Number of required confirmations. function MultiSigWallet(address[] _owners, uint _required) public validRequirement(_owners.length, _required) { for (uint i=0; i<_owners.length; i++) { require(!isOwner[_owners[i]] && _owners[i] != 0); isOwner[_owners[i]] = true; } owners = _owners; required = _required; } /// @dev Allows to add a new owner. Transaction has to be sent by wallet. /// @param owner Address of new owner. function addOwner(address owner) public onlyWallet ownerDoesNotExist(owner) notNull(owner) validRequirement(owners.length + 1, required) { isOwner[owner] = true; owners.push(owner); OwnerAddition(owner); } /// @dev Allows to remove an owner. Transaction has to be sent by wallet. /// @param owner Address of owner. function removeOwner(address owner) public onlyWallet ownerExists(owner) { isOwner[owner] = false; for (uint i=0; i<owners.length - 1; i++) if (owners[i] == owner) { owners[i] = owners[owners.length - 1]; break; } owners.length -= 1; if (required > owners.length) changeRequirement(owners.length); OwnerRemoval(owner); } /// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet. /// @param owner Address of owner to be replaced. /// @param newOwner Address of new owner. function replaceOwner(address owner, address newOwner) public onlyWallet ownerExists(owner) ownerDoesNotExist(newOwner) { for (uint i=0; i<owners.length; i++) if (owners[i] == owner) { owners[i] = newOwner; break; } isOwner[owner] = false; isOwner[newOwner] = true; OwnerRemoval(owner); OwnerAddition(newOwner); } /// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet. /// @param _required Number of required confirmations. function changeRequirement(uint _required) public onlyWallet validRequirement(owners.length, _required) { required = _required; RequirementChange(_required); } /// @dev Allows an owner to submit and confirm a transaction. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return Returns transaction ID. function submitTransaction(address destination, uint value, bytes data) public returns (uint transactionId) { transactionId = addTransaction(destination, value, data); confirmTransaction(transactionId); } /// @dev Allows an owner to confirm a transaction. /// @param transactionId Transaction ID. function confirmTransaction(uint transactionId) public ownerExists(msg.sender) transactionExists(transactionId) notConfirmed(transactionId, msg.sender) { confirmations[transactionId][msg.sender] = true; Confirmation(msg.sender, transactionId); executeTransaction(transactionId); } /// @dev Allows an owner to revoke a confirmation for a transaction. /// @param transactionId Transaction ID. function revokeConfirmation(uint transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { confirmations[transactionId][msg.sender] = false; Revocation(msg.sender, transactionId); } /// @dev Allows anyone to execute a confirmed transaction. /// @param transactionId Transaction ID. function executeTransaction(uint transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { if (isConfirmed(transactionId)) { Transaction storage txn = transactions[transactionId]; txn.executed = true; if (external_call(txn.destination, txn.value, txn.data.length, txn.data)) Execution(transactionId); else { ExecutionFailure(transactionId); txn.executed = false; } } } // call has been separated into its own function in order to take advantage // of the Solidity's code generator to produce a loop that copies tx.data into memory. function external_call(address destination, uint value, uint dataLength, bytes data) private returns (bool) { bool result; assembly { let x := mload(0x40) // "Allocate" memory for output (0x40 is where "free memory" pointer is stored by convention) let d := add(data, 32) // First 32 bytes are the padded length of data, so exclude that result := call( sub(gas, 34710), // 34710 is the value that solidity is currently emitting // It includes callGas (700) + callVeryLow (3, to pay for SUB) + callValueTransferGas (9000) + // callNewAccountGas (25000, in case the destination address does not exist and needs creating) destination, value, d, dataLength, // Size of the input (in bytes) - this is what fixes the padding problem x, 0 // Output is ignored, therefore the output size is zero ) } return result; } /// @dev Returns the confirmation status of a transaction. /// @param transactionId Transaction ID. /// @return Confirmation status. function isConfirmed(uint transactionId) public constant returns (bool) { uint count = 0; for (uint i=0; i<owners.length; i++) { if (confirmations[transactionId][owners[i]]) count += 1; if (count == required) return true; } } /* * Internal functions */ /// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return Returns transaction ID. function addTransaction(address destination, uint value, bytes data) internal notNull(destination) returns (uint transactionId) { transactionId = transactionCount; transactions[transactionId] = Transaction({ destination: destination, value: value, data: data, executed: false }); transactionCount += 1; Submission(transactionId); } /* * Web3 call functions */ /// @dev Returns number of confirmations of a transaction. /// @param transactionId Transaction ID. /// @return Number of confirmations. function getConfirmationCount(uint transactionId) public constant returns (uint count) { for (uint i=0; i<owners.length; i++) if (confirmations[transactionId][owners[i]]) count += 1; } /// @dev Returns total number of transactions after filers are applied. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return Total number of transactions after filters are applied. function getTransactionCount(bool pending, bool executed) public constant returns (uint count) { for (uint i=0; i<transactionCount; i++) if ( pending && !transactions[i].executed || executed && transactions[i].executed) count += 1; } /// @dev Returns list of owners. /// @return List of owner addresses. function getOwners() public constant returns (address[]) { return owners; } /// @dev Returns array with owner addresses, which confirmed transaction. /// @param transactionId Transaction ID. /// @return Returns array of owner addresses. function getConfirmations(uint transactionId) public constant returns (address[] _confirmations) { address[] memory confirmationsTemp = new address[](owners.length); uint count = 0; uint i; for (i=0; i<owners.length; i++) if (confirmations[transactionId][owners[i]]) { confirmationsTemp[count] = owners[i]; count += 1; } _confirmations = new address[](count); for (i=0; i<count; i++) _confirmations[i] = confirmationsTemp[i]; } /// @dev Returns list of transaction IDs in defined range. /// @param from Index start position of transaction array. /// @param to Index end position of transaction array. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return Returns array of transaction IDs. function getTransactionIds(uint from, uint to, bool pending, bool executed) public constant returns (uint[] _transactionIds) { uint[] memory transactionIdsTemp = new uint[](transactionCount); uint count = 0; uint i; for (i=0; i<transactionCount; i++) if ( pending && !transactions[i].executed || executed && transactions[i].executed) { transactionIdsTemp[count] = i; count += 1; } _transactionIds = new uint[](to - from); for (i=from; i<to; i++) _transactionIds[i - from] = transactionIdsTemp[i]; } } // File: contracts/MultiSigWalletWithDailyLimit.sol pragma solidity ^0.4.15; /// @title Multisignature wallet with daily limit - Allows an owner to withdraw a daily limit without multisig. /// @author Stefan George - <[email protected]> contract MultiSigWalletWithDailyLimit is MultiSigWallet { /* * Events */ event DailyLimitChange(uint dailyLimit); /* * Storage */ uint public dailyLimit; uint public lastDay; uint public spentToday; /* * Public functions */ /// @dev Contract constructor sets initial owners, required number of confirmations and daily withdraw limit. /// @param _owners List of initial owners. /// @param _required Number of required confirmations. /// @param _dailyLimit Amount in wei, which can be withdrawn without confirmations on a daily basis. function MultiSigWalletWithDailyLimit(address[] _owners, uint _required, uint _dailyLimit) public MultiSigWallet(_owners, _required) { dailyLimit = _dailyLimit; } /// @dev Allows to change the daily limit. Transaction has to be sent by wallet. /// @param _dailyLimit Amount in wei. function changeDailyLimit(uint _dailyLimit) public onlyWallet { dailyLimit = _dailyLimit; DailyLimitChange(_dailyLimit); } /// @dev Allows anyone to execute a confirmed transaction or ether withdraws until daily limit is reached. /// @param transactionId Transaction ID. function executeTransaction(uint transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { Transaction storage txn = transactions[transactionId]; bool _confirmed = isConfirmed(transactionId); if (_confirmed || txn.data.length == 0 && isUnderLimit(txn.value)) { txn.executed = true; if (!_confirmed) spentToday += txn.value; if (txn.destination.call.value(txn.value)(txn.data)) Execution(transactionId); else { ExecutionFailure(transactionId); txn.executed = false; if (!_confirmed) spentToday -= txn.value; } } } /* * Internal functions */ /// @dev Returns if amount is within daily limit and resets spentToday after one day. /// @param amount Amount to withdraw. /// @return Returns if amount is under daily limit. function isUnderLimit(uint amount) internal returns (bool) { if (now > lastDay + 24 hours) { lastDay = now; spentToday = 0; } if (spentToday + amount > dailyLimit || spentToday + amount < spentToday) return false; return true; } /* * Web3 call functions */ /// @dev Returns maximum withdraw amount. /// @return Returns amount. function calcMaxWithdraw() public constant returns (uint) { if (now > lastDay + 24 hours) return dailyLimit; if (dailyLimit < spentToday) return 0; return dailyLimit - spentToday; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"owners","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"revokeConfirmation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"confirmations","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"calcMaxWithdraw","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dailyLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"isConfirmed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmationCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"},{"name":"executed","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwners","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"from","type":"uint256"},{"name":"to","type":"uint256"},{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionIds","outputs":[{"name":"_transactionIds","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmations","outputs":[{"name":"_confirmations","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transactionCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_required","type":"uint256"}],"name":"changeRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"}],"name":"submitTransaction","outputs":[{"name":"transactionId","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_dailyLimit","type":"uint256"}],"name":"changeDailyLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_OWNER_COUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"required","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"newOwner","type":"address"}],"name":"replaceOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"executeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"spentToday","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"},{"name":"_dailyLimit","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"dailyLimit","type":"uint256"}],"name":"DailyLimitChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Revocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Submission","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Execution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"ExecutionFailure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"OwnerAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"OwnerRemoval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"required","type":"uint256"}],"name":"RequirementChange","type":"event"}]
Deployed Bytecode
0x608060405260043610610154576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063025e7c27146101ae578063173825d91461021b57806320ea8d861461025e5780632f54bf6e1461028b5780633411c81c146102e65780634bc9fdc21461034b578063547415251461037657806367eeba0c146103c55780636b0c932d146103f05780637065cb481461041b578063784547a71461045e5780638b51d13f146104a35780639ace38c2146104e4578063a0e67e2b146105cf578063a8abe69a1461063b578063b5dc40c3146106df578063b77bf60014610761578063ba51a6df1461078c578063c01a8c84146107b9578063c6427474146107e6578063cea086211461088d578063d74f8edd146108ba578063dc8452cd146108e5578063e20056e614610910578063ee22610b14610973578063f059cf2b146109a0575b60003411156101ac573373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c346040518082815260200191505060405180910390a25b005b3480156101ba57600080fd5b506101d9600480360381019080803590602001909291905050506109cb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561022757600080fd5b5061025c600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a09565b005b34801561026a57600080fd5b5061028960048036038101908080359060200190929190505050610ca2565b005b34801561029757600080fd5b506102cc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e4a565b604051808215151515815260200191505060405180910390f35b3480156102f257600080fd5b5061033160048036038101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e6a565b604051808215151515815260200191505060405180910390f35b34801561035757600080fd5b50610360610e99565b6040518082815260200191505060405180910390f35b34801561038257600080fd5b506103af600480360381019080803515159060200190929190803515159060200190929190505050610ed6565b6040518082815260200191505060405180910390f35b3480156103d157600080fd5b506103da610f68565b6040518082815260200191505060405180910390f35b3480156103fc57600080fd5b50610405610f6e565b6040518082815260200191505060405180910390f35b34801561042757600080fd5b5061045c600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f74565b005b34801561046a57600080fd5b5061048960048036038101908080359060200190929190505050611179565b604051808215151515815260200191505060405180910390f35b3480156104af57600080fd5b506104ce6004803603810190808035906020019092919050505061125e565b6040518082815260200191505060405180910390f35b3480156104f057600080fd5b5061050f60048036038101908080359060200190929190505050611329565b604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200183151515158152602001828103825284818151815260200191508051906020019080838360005b83811015610591578082015181840152602081019050610576565b50505050905090810190601f1680156105be5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b3480156105db57600080fd5b506105e461141e565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561062757808201518184015260208101905061060c565b505050509050019250505060405180910390f35b34801561064757600080fd5b5061068860048036038101908080359060200190929190803590602001909291908035151590602001909291908035151590602001909291905050506114ac565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156106cb5780820151818401526020810190506106b0565b505050509050019250505060405180910390f35b3480156106eb57600080fd5b5061070a6004803603810190808035906020019092919050505061161d565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561074d578082015181840152602081019050610732565b505050509050019250505060405180910390f35b34801561076d57600080fd5b5061077661185a565b6040518082815260200191505060405180910390f35b34801561079857600080fd5b506107b760048036038101908080359060200190929190505050611860565b005b3480156107c557600080fd5b506107e46004803603810190808035906020019092919050505061191a565b005b3480156107f257600080fd5b50610877600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001908201803590602001908080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050509192919290505050611af7565b6040518082815260200191505060405180910390f35b34801561089957600080fd5b506108b860048036038101908080359060200190929190505050611b16565b005b3480156108c657600080fd5b506108cf611b91565b6040518082815260200191505060405180910390f35b3480156108f157600080fd5b506108fa611b96565b6040518082815260200191505060405180910390f35b34801561091c57600080fd5b50610971600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b9c565b005b34801561097f57600080fd5b5061099e60048036038101908080359060200190929190505050611eb1565b005b3480156109ac57600080fd5b506109b56121a5565b6040518082815260200191505060405180910390f35b6003818154811015156109da57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610a4557600080fd5b81600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515610a9e57600080fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600091505b600160038054905003821015610c23578273ffffffffffffffffffffffffffffffffffffffff16600383815481101515610b3157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c16576003600160038054905003815481101515610b8f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600383815481101515610bc957fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c23565b8180600101925050610afb565b6001600381818054905003915081610c3b919061234f565b506003805490506004541115610c5a57610c59600380549050611860565b5b8273ffffffffffffffffffffffffffffffffffffffff167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a2505050565b33600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515610cfb57600080fd5b81336001600083815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515610d6657600080fd5b8360008082815260200190815260200160002060030160009054906101000a900460ff16151515610d9657600080fd5b60006001600087815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550843373ffffffffffffffffffffffffffffffffffffffff167ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e960405160405180910390a35050505050565b60026020528060005260406000206000915054906101000a900460ff1681565b60016020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60006201518060075401421115610eb4576006549050610ed3565b6008546006541015610ec95760009050610ed3565b6008546006540390505b90565b600080600090505b600554811015610f6157838015610f15575060008082815260200190815260200160002060030160009054906101000a900460ff16155b80610f485750828015610f47575060008082815260200190815260200160002060030160009054906101000a900460ff165b5b15610f54576001820191505b8080600101915050610ede565b5092915050565b60065481565b60075481565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610fae57600080fd5b80600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151561100857600080fd5b8160008173ffffffffffffffffffffffffffffffffffffffff161415151561102f57600080fd5b6001600380549050016004546032821115801561104c5750818111155b8015611059575060008114155b8015611066575060008214155b151561107157600080fd5b6001600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060038590806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550508473ffffffffffffffffffffffffffffffffffffffff167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b6000806000809150600090505b600380549050811015611256576001600085815260200190815260200160002060006003838154811015156111b757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611236576001820191505b6004548214156112495760019250611257565b8080600101915050611186565b5b5050919050565b600080600090505b6003805490508110156113235760016000848152602001908152602001600020600060038381548110151561129757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611316576001820191505b8080600101915050611266565b50919050565b60006020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001015490806002018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b5050505050908060030160009054906101000a900460ff16905084565b606060038054806020026020016040519081016040528092919081815260200182805480156114a257602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611458575b5050505050905090565b6060806000806005546040519080825280602002602001820160405280156114e35781602001602082028038833980820191505090505b50925060009150600090505b60055481101561158f57858015611526575060008082815260200190815260200160002060030160009054906101000a900460ff16155b806115595750848015611558575060008082815260200190815260200160002060030160009054906101000a900460ff165b5b156115825780838381518110151561156d57fe5b90602001906020020181815250506001820191505b80806001019150506114ef565b8787036040519080825280602002602001820160405280156115c05781602001602082028038833980820191505090505b5093508790505b868110156116125782818151811015156115dd57fe5b90602001906020020151848983038151811015156115f757fe5b906020019060200201818152505080806001019150506115c7565b505050949350505050565b6060806000806003805490506040519080825280602002602001820160405280156116575781602001602082028038833980820191505090505b50925060009150600090505b6003805490508110156117a45760016000868152602001908152602001600020600060038381548110151561169457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117975760038181548110151561171b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110151561175457fe5b9060200190602002019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506001820191505b8080600101915050611663565b816040519080825280602002602001820160405280156117d35781602001602082028038833980820191505090505b509350600090505b818110156118525782818151811015156117f157fe5b90602001906020020151848281518110151561180957fe5b9060200190602002019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806001019150506117db565b505050919050565b60055481565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561189a57600080fd5b60038054905081603282111580156118b25750818111155b80156118bf575060008114155b80156118cc575060008214155b15156118d757600080fd5b826004819055507fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a836040518082815260200191505060405180910390a1505050565b33600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151561197357600080fd5b81600080600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141515156119cf57600080fd5b82336001600083815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151515611a3b57600080fd5b600180600087815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550843373ffffffffffffffffffffffffffffffffffffffff167f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef60405160405180910390a3611af085611eb1565b5050505050565b6000611b048484846121ab565b9050611b0f8161191a565b9392505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611b5057600080fd5b806006819055507fc71bdc6afaf9b1aa90a7078191d4fc1adf3bf680fca3183697df6b0dc226bca2816040518082815260200191505060405180910390a150565b603281565b60045481565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611bd857600080fd5b82600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515611c3157600080fd5b82600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151515611c8b57600080fd5b600092505b600380549050831015611d74578473ffffffffffffffffffffffffffffffffffffffff16600384815481101515611cc357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d675783600384815481101515611d1a57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611d74565b8280600101935050611c90565b6000600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508473ffffffffffffffffffffffffffffffffffffffff167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a28373ffffffffffffffffffffffffffffffffffffffff167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b60008033600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515611f0d57600080fd5b83336001600083815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515611f7857600080fd5b8560008082815260200190815260200160002060030160009054906101000a900460ff16151515611fa857600080fd5b6000808881526020019081526020016000209550611fc587611179565b945084806120005750600086600201805460018160011615610100020316600290049050148015611fff5750611ffe86600101546122fd565b5b5b1561219c5760018660030160006101000a81548160ff02191690831515021790555084151561203e5785600101546008600082825401925050819055505b8560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1686600101548760020160405180828054600181600116156101000203166002900480156120e75780601f106120bc576101008083540402835291602001916120e7565b820191906000526020600020905b8154815290600101906020018083116120ca57829003601f168201915b505091505060006040518083038185875af1925050501561213457867f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7560405160405180910390a261219b565b867f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923660405160405180910390a260008660030160006101000a81548160ff02191690831515021790555084151561219a5785600101546008600082825403925050819055505b5b5b50505050505050565b60085481565b60008360008173ffffffffffffffffffffffffffffffffffffffff16141515156121d457600080fd5b60055491506080604051908101604052808673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020016000151581525060008084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201908051906020019061229392919061237b565b5060608201518160030160006101000a81548160ff0219169083151502179055509050506001600560008282540192505081905550817fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5160405160405180910390a2509392505050565b6000620151806007540142111561231e574260078190555060006008819055505b6006548260085401118061233757506008548260085401105b15612345576000905061234a565b600190505b919050565b8154818355818111156123765781836000526020600020918201910161237591906123fb565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106123bc57805160ff19168380011785556123ea565b828001600101855582156123ea579182015b828111156123e95782518255916020019190600101906123ce565b5b5090506123f791906123fb565b5090565b61241d91905b80821115612419576000816000905550600101612401565b5090565b905600a165627a7a723058200938c6db21fae174b97bd693c38ef9ef819c2d3433b57a30287c54e108169bc10029
Deployed Bytecode Sourcemap
13635:3107:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2785:1;2773:9;:13;2769:62;;;2809:10;2801:30;;;2821:9;2801:30;;;;;;;;;;;;;;;;;;2769:62;13635:3107;1229:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1229:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3998:475;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3998:475:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6640:299;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6640:299:0;;;;;;;;;;;;;;;;;;;;;;;;;;1182:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1182:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1111:64;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1111:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16468:271;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16468:271:0;;;;;;;;;;;;;;;;;;;;;;;11006:328;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11006:328:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13815:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13815:22:0;;;;;;;;;;;;;;;;;;;;;;;13844:19;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13844:19:0;;;;;;;;;;;;;;;;;;;;;;;3584:287;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3584:287:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9116:349;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9116:349:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10478:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10478:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1055:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1055:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1055:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11422:121;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11422:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11422:121:0;;;;;;;;;;;;;;;;;12675:694;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12675:694:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;12675:694:0;;;;;;;;;;;;;;;;;11727:591;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11727:591:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11727:591:0;;;;;;;;;;;;;;;;;1286:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1286:28:0;;;;;;;;;;;;;;;;;;;;;;;5319:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5319:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;6159:353;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6159:353:0;;;;;;;;;;;;;;;;;;;;;;;;;;5799:250;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5799:250:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14608:168;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14608:168:0;;;;;;;;;;;;;;;;;;;;;;;;;;971:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;971:41:0;;;;;;;;;;;;;;;;;;;;;;;1259:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1259:20:0;;;;;;;;;;;;;;;;;;;;;;;4680:464;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4680:464:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14942:819;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14942:819:0;;;;;;;;;;;;;;;;;;;;;;;;;;13870:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13870:22:0;;;;;;;;;;;;;;;;;;;;;;;1229:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3998:475::-;4152:6;1553:4;1531:27;;:10;:27;;;1523:36;;;;;;;;4091:5;1747:7;:14;1755:5;1747:14;;;;;;;;;;;;;;;;;;;;;;;;;1739:23;;;;;;;;4131:5;4114:7;:14;4122:5;4114:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;4159:1;4152:8;;4147:174;4180:1;4164:6;:13;;;;:17;4162:1;:19;4147:174;;;4218:5;4205:18;;:6;4212:1;4205:9;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;;;4201:120;;;4256:6;4279:1;4263:6;:13;;;;:17;4256:25;;;;;;;;;;;;;;;;;;;;;;;;;;;4244:6;4251:1;4244:9;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;4300:5;;4201:120;4183:3;;;;;;;4147:174;;;4348:1;4331:6;:18;;;;;;;;;;;;;;:::i;:::-;;4375:6;:13;;;;4364:8;;:24;4360:75;;;4403:32;4421:6;:13;;;;4403:17;:32::i;:::-;4360:75;4459:5;4446:19;;;;;;;;;;;;1570:1;3998:475;;:::o;6640:299::-;6725:10;1747:7;:14;1755:5;1747:14;;;;;;;;;;;;;;;;;;;;;;;;;1739:23;;;;;;;;6756:13;6771:10;2002:13;:28;2016:13;2002:28;;;;;;;;;;;:35;2031:5;2002:35;;;;;;;;;;;;;;;;;;;;;;;;;1994:44;;;;;;;;6804:13;2268:12;:27;2281:13;2268:27;;;;;;;;;;;:36;;;;;;;;;;;;2267:37;2259:46;;;;;;;;6878:5;6835:13;:28;6849:13;6835:28;;;;;;;;;;;:40;6864:10;6835:40;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;;;;;6917:13;6905:10;6894:37;;;;;;;;;;;;2049:1;1773;;6640:299;;:::o;1182:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;1111:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16468:271::-;16547:4;16589:8;16579:7;;:18;16573:3;:24;16569:60;;;16619:10;;16612:17;;;;16569:60;16657:10;;16644;;:23;16640:50;;;16689:1;16682:8;;;;16640:50;16721:10;;16708;;:23;16701:30;;16468:271;;:::o;11006:328::-;11116:10;11149:6;11156:1;11149:8;;11144:182;11161:16;;11159:1;:18;11144:182;;;11204:7;:36;;;;;11216:12;:15;11229:1;11216:15;;;;;;;;;;;:24;;;;;;;;;;;;11215:25;11204:36;:93;;;;11261:8;:36;;;;;11273:12;:15;11286:1;11273:15;;;;;;;;;;;:24;;;;;;;;;;;;11261:36;11204:93;11197:129;;;11325:1;11316:10;;;;11197:129;11179:3;;;;;;;11144:182;;;11006:328;;;;;:::o;13815:22::-;;;;:::o;13844:19::-;;;;:::o;3584:287::-;1553:4;1531:27;;:10;:27;;;1523:36;;;;;;;;3680:5;1649:7;:14;1657:5;1649:14;;;;;;;;;;;;;;;;;;;;;;;;;1648:15;1640:24;;;;;;;;3704:5;2399:1;2387:8;:13;;;;2379:22;;;;;;;;3753:1;3737:6;:13;;;;:17;3756:8;;1010:2;2507:10;:29;;:69;;;;;2566:10;2553:9;:23;;2507:69;:100;;;;;2606:1;2593:9;:14;;2507:100;:132;;;;;2638:1;2624:10;:15;;2507:132;2499:141;;;;;;;;3799:4;3782:7;:14;3790:5;3782:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;3814:6;3826:5;3814:18;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;3814:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3857:5;3843:20;;;;;;;;;;;;2412:1;;1675;1570;3584:287;:::o;9116:349::-;9209:4;9231:10;9261:6;9244:1;9231:14;;9268:1;9261:8;;9256:202;9273:6;:13;;;;9271:1;:15;9256:202;;;9312:13;:28;9326:13;9312:28;;;;;;;;;;;:39;9341:6;9348:1;9341:9;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:39;;;;;;;;;;;;;;;;;;;;;;;;;9308:72;;;9379:1;9370:10;;;;9308:72;9408:8;;9399:5;:17;9395:51;;;9442:4;9435:11;;;;9395:51;9288:3;;;;;;;9256:202;;;9116:349;;;;;;:::o;10478:260::-;10580:10;10613:6;10620:1;10613:8;;10608:122;10625:6;:13;;;;10623:1;:15;10608:122;;;10662:13;:28;10676:13;10662:28;;;;;;;;;;;:39;10691:6;10698:1;10691:9;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:39;;;;;;;;;;;;;;;;;;;;;;;;;10658:72;;;10729:1;10720:10;;;;10658:72;10640:3;;;;;;;10608:122;;;10478:260;;;;:::o;1055:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11422:121::-;11495:9;11529:6;11522:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11422:121;:::o;12675:694::-;12803:22;12843:32;12917:10;12942:6;12889:16;;12878:28;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;12878:28:0;;;;12843:63;;12930:1;12917:14;;12966:1;12964:3;;12959:256;12971:16;;12969:1;:18;12959:256;;;13014:7;:36;;;;;13026:12;:15;13039:1;13026:15;;;;;;;;;;;:24;;;;;;;;;;;;13025:25;13014:36;:93;;;;13071:8;:36;;;;;13083:12;:15;13096:1;13083:15;;;;;;;;;;;:24;;;;;;;;;;;;13071:36;13014:93;13007:208;;;13169:1;13141:18;13160:5;13141:25;;;;;;;;;;;;;;;;;:29;;;;;13198:1;13189:10;;;;13007:208;12989:3;;;;;;;12959:256;;;13259:4;13254:2;:9;13243:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;13243:21:0;;;;13225:39;;13282:4;13280:6;;13275:86;13290:2;13288:1;:4;13275:86;;;13340:18;13359:1;13340:21;;;;;;;;;;;;;;;;;;13312:15;13332:4;13328:1;:8;13312:25;;;;;;;;;;;;;;;;;:49;;;;;13294:3;;;;;;;13275:86;;;12675:694;;;;;;;;;:::o;11727:591::-;11825:24;11867:34;11943:10;11968:6;11918;:13;;;;11904:28;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;11904:28:0;;;;11867:65;;11956:1;11943:14;;11992:1;11990:3;;11985:190;11997:6;:13;;;;11995:1;:15;11985:190;;;12034:13;:28;12048:13;12034:28;;;;;;;;;;;:39;12063:6;12070:1;12063:9;;;;;;;;;;;;;;;;;;;;;;;;;;;12034:39;;;;;;;;;;;;;;;;;;;;;;;;;12030:145;;;12121:6;12128:1;12121:9;;;;;;;;;;;;;;;;;;;;;;;;;;;12094:17;12112:5;12094:24;;;;;;;;;;;;;;;;;:36;;;;;;;;;;;12158:1;12149:10;;;;12030:145;12012:3;;;;;;;11985:190;;;12216:5;12202:20;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;12202:20:0;;;;12185:37;;12240:1;12238:3;;12233:77;12245:5;12243:1;:7;12233:77;;;12290:17;12308:1;12290:20;;;;;;;;;;;;;;;;;;12270:14;12285:1;12270:17;;;;;;;;;;;;;;;;;:40;;;;;;;;;;;12252:3;;;;;;;12233:77;;;11727:591;;;;;;:::o;1286:28::-;;;;:::o;5319:214::-;1553:4;1531:27;;:10;:27;;;1523:36;;;;;;;;5424:6;:13;;;;5439:9;1010:2;2507:10;:29;;:69;;;;;2566:10;2553:9;:23;;2507:69;:100;;;;;2606:1;2593:9;:14;;2507:100;:132;;;;;2638:1;2624:10;:15;;2507:132;2499:141;;;;;;;;5477:9;5466:8;:20;;;;5497:28;5515:9;5497:28;;;;;;;;;;;;;;;;;;1570:1;;5319:214;:::o;6159:353::-;6244:10;1747:7;:14;1755:5;1747:14;;;;;;;;;;;;;;;;;;;;;;;;;1739:23;;;;;;;;6283:13;1899:1;1856:12;:27;1869:13;1856:27;;;;;;;;;;;:39;;;;;;;;;;;;:44;;;;1848:53;;;;;;;;6320:13;6335:10;2143:13;:28;2157:13;2143:28;;;;;;;;;;;:35;2172:5;2143:35;;;;;;;;;;;;;;;;;;;;;;;;;2142:36;2134:45;;;;;;;;6406:4;6363:13;:28;6377:13;6363:28;;;;;;;;;;;:40;6392:10;6363:40;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;6446:13;6434:10;6421:39;;;;;;;;;;;;6471:33;6490:13;6471:18;:33::i;:::-;1912:1;;1773;6159:353;;:::o;5799:250::-;5905:18;5957:40;5972:11;5985:5;5992:4;5957:14;:40::i;:::-;5941:56;;6008:33;6027:13;6008:18;:33::i;:::-;5799:250;;;;;:::o;14608:168::-;1553:4;1531:27;;:10;:27;;;1523:36;;;;;;;;14717:11;14704:10;:24;;;;14739:29;14756:11;14739:29;;;;;;;;;;;;;;;;;;14608:168;:::o;971:41::-;1010:2;971:41;:::o;1259:20::-;;;;:::o;4680:464::-;4857:6;1553:4;1531:27;;:10;:27;;;1523:36;;;;;;;;4792:5;1747:7;:14;1755:5;1747:14;;;;;;;;;;;;;;;;;;;;;;;;;1739:23;;;;;;;;4826:8;1649:7;:14;1657:5;1649:14;;;;;;;;;;;;;;;;;;;;;;;;;1648:15;1640:24;;;;;;;;4864:1;4857:8;;4852:153;4869:6;:13;;;;4867:1;:15;4852:153;;;4919:5;4906:18;;:6;4913:1;4906:9;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;;;4902:103;;;4957:8;4945:6;4952:1;4945:9;;;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;4984:5;;4902:103;4884:3;;;;;;;4852:153;;;5032:5;5015:7;:14;5023:5;5015:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;5068:4;5048:7;:17;5056:8;5048:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;5096:5;5083:19;;;;;;;;;;;;5127:8;5113:23;;;;;;;;;;;;1773:1;1570;4680:464;;;:::o;14942:819::-;15137:23;15201:15;15027:10;1747:7;:14;1755:5;1747:14;;;;;;;;;;;;;;;;;;;;;;;;;1739:23;;;;;;;;15058:13;15073:10;2002:13;:28;2016:13;2002:28;;;;;;;;;;;:35;2031:5;2002:35;;;;;;;;;;;;;;;;;;;;;;;;;1994:44;;;;;;;;15106:13;2268:12;:27;2281:13;2268:27;;;;;;;;;;;:36;;;;;;;;;;;;2267:37;2259:46;;;;;;;;15163:12;:27;15176:13;15163:27;;;;;;;;;;;15137:53;;15219:26;15231:13;15219:11;:26::i;:::-;15201:44;;15260:10;:61;;;;15293:1;15274:3;:8;;:15;;;;;;;;;;;;;;;;:20;:47;;;;;15298:23;15311:3;:9;;;15298:12;:23::i;:::-;15274:47;15260:61;15256:498;;;15353:4;15338:3;:12;;;:19;;;;;;;;;;;;;;;;;;15377:10;15376:11;15372:57;;;15420:3;:9;;;15406:10;;:23;;;;;;;;;;;15372:57;15448:3;:15;;;;;;;;;;;;:20;;15475:3;:9;;;15486:3;:8;;15448:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15444:299;;;15524:13;15514:24;;;;;;;;;;15444:299;;;15594:13;15577:31;;;;;;;;;;15642:5;15627:3;:12;;;:20;;;;;;;;;;;;;;;;;;15671:10;15670:11;15666:61;;;15718:3;:9;;;15704:10;;:23;;;;;;;;;;;15666:61;15444:299;15256:498;2049:1;1773;;14942:819;;;;:::o;13870:22::-;;;;:::o;9808:465::-;9943:18;9912:11;2399:1;2387:8;:13;;;;2379:22;;;;;;;;9995:16;;9979:32;;10052:145;;;;;;;;;10092:11;10052:145;;;;;;10125:5;10052:145;;;;10151:4;10052:145;;;;10180:5;10052:145;;;;;10022:12;:27;10035:13;10022:27;;;;;;;;;;;:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10228:1;10208:16;;:21;;;;;;;;;;;10251:13;10240:25;;;;;;;;;;9808:465;;;;;;:::o;16004:331::-;16075:4;16117:8;16107:7;;:18;16101:3;:24;16097:99;;;16152:3;16142:7;:13;;;;16183:1;16170:10;:14;;;;16097:99;16232:10;;16223:6;16210:10;;:19;:32;:68;;;;16268:10;;16259:6;16246:10;;:19;:32;16210:68;16206:99;;;16300:5;16293:12;;;;16206:99;16323:4;16316:11;;16004:331;;;;:::o;13635:3107::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://0938c6db21fae174b97bd693c38ef9ef819c2d3433b57a30287c54e108169bc1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $2,903.85 | 0.00928451 | $26.96 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.