More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set ERC20 | 18881950 | 342 days ago | IN | 0 ETH | 0.0014261 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x2f194FA5...eb4b75cc5 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
TokenLock
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "./Ownable.sol"; import "./IERC20.sol"; import "./TokenLockConst.sol"; import "./ITokenLock.sol"; contract TokenLock is Ownable, TokenLockConst, ITokenLock { event UnLock(address sender, address receiver, uint256 amount); uint8 public immutable _receiverIndex; IERC20 public _erc20Token = IERC20(address(0)); uint256 public _totalUnLock = 0; uint256[] public _scheduleAmount; address public immutable _multiSigWallet; constructor(uint8 receiverIndex, address walletSigAddress) Ownable(msg.sender) { require(walletSigAddress != address(0), "walletSigAddress is null"); require(receiverIndex >= 0 && receiverIndex <= 6, "The scope of the receiverIndex variable is incorrect."); require(isSorted(SCHEDULE_TIMES), "The array is not sorted."); require(TokenLockConst.SCHEDULE_TIMES.length == TokenLockConst.CONST_SCHEDULE_COUNT, "The array is not sorted."); uint256[] memory amounts = TokenLockConst.SCHEDULE_AMOUNT[receiverIndex]; require(amounts.length == TokenLockConst.CONST_SCHEDULE_COUNT, "Array is incorrect."); _receiverIndex = receiverIndex; _scheduleAmount = new uint256[](amounts.length); for (uint8 i = 0; i < amounts.length; i++) { _scheduleAmount[i] = amounts[i]; } _multiSigWallet = walletSigAddress; } function isSorted(uint256[] memory arr) internal pure returns (bool) { for (uint i = 1; i < arr.length; i++) { if (arr[i] < arr[i - 1]) { return false; } } return true; } function setERC20(address tokenAddress) public virtual onlyOwner { require(tokenAddress != address(0), "ERC20 is null"); require(_erc20Token == IERC20(address(0)), "It's already been assigned"); _erc20Token = IERC20(tokenAddress); } function unLock() public virtual { require(_multiSigWallet == msg.sender, "multiSigWallet is wrong"); uint256 sum = 0; for (uint256 i = 0; i < TokenLockConst.SCHEDULE_TIMES.length; i++) { uint256 ts = TokenLockConst.SCHEDULE_TIMES[i]; if(block.timestamp < ts) { break; } uint256 balance = _scheduleAmount[i]; if(balance > 0) { sum += _scheduleAmount[i]; _scheduleAmount[i] = 0; } } if(sum > 0) { _totalUnLock += sum; _erc20Token.transfer(TokenLockConst.CONST_RECEIVERS[_receiverIndex], sum); emit UnLock(address(this), TokenLockConst.CONST_RECEIVERS[_receiverIndex], sum); } } function getDataUnLock() public pure returns (bytes memory) { return abi.encodeWithSignature("unLock()"); } function getReceiver() public view returns (address) { return TokenLockConst.CONST_RECEIVERS[_receiverIndex]; } function tokenBalance() public view returns (uint256) { return _erc20Token.balanceOf(address(this)); } function totalLockAmount() public view returns (uint256) { uint256 balance = 0; for (uint256 i = 0; i < _scheduleAmount.length; i++) { balance += _scheduleAmount[i]; } return balance; } function getReceiverIndex() public view virtual returns (uint256) { return _receiverIndex; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface ITokenLock { function setERC20(address tokenAddress) external ; function unLock() external; function getReceiverIndex() external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract TokenLockConst { address[] CONST_RECEIVERS = [0x72Fbc38d133E4d0E1B55278134Dbbe7Ba4539Bd1, // 0 0x00FEfd30419B2A846aEFF1956735d1Be373a4129, // 1 0x3cE5Cc576D7E6b301051938afecF01B13718bAEc, // 2 0x86D191b243654B5b3c43B92ED48BF52d377cAEe8, // 3 0x0559f10ba108b43D1206e3f78C2382C3911135a2, // 4 0x92Cd73d498632500f729d7423511b4fd49344abF, // 5 0xbA3D728d9fBB03Cbd0c3778f0b66992FC536c194 // 6 ]; uint256 CONST_SCHEDULE_COUNT = 49; uint256[] SCHEDULE_TIMES = [1, 1705276800, 1707955200, 1710460800, 1713139200, 1715731200, 1718409600, 1721001600, 1723680000, 1726358400, 1728950400, 1731628800, 1734220800, 1736899200, 1739577600, 1741996800, 1744675200, 1747267200, 1749945600, 1752537600, 1755216000, 1757894400, 1760486400, 1763164800, 1765756800, 1768435200, 1771113600, 1773532800, 1776211200, 1778803200, 1781481600, 1784073600, 1786752000, 1789430400, 1792022400, 1794700800, 1797292800, 1799971200, 1802649600, 1805068800, 1807747200, 1810339200, 1813017600, 1815609600, 1818288000, 1820966400, 1823558400, 1826236800, 1828828800]; uint256[][] SCHEDULE_AMOUNT = [ [ 3600000000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 600000000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], [ 1350000000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000, 534375000000000 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 1875000000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], [ 7950000000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000, 3146875000000000 ], [ 1500000000000000, 0, 0, 0, 0, 0, 1500000000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 1250000000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], [ 900000000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000, 356250000000000 ] ]; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint8","name":"receiverIndex","type":"uint8"},{"internalType":"address","name":"walletSigAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnLock","type":"event"},{"inputs":[],"name":"_erc20Token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_multiSigWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_receiverIndex","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_scheduleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalUnLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataUnLock","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReceiverIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"setERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unLock","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100cd575f3560e01c80639e1a4d191161008a578063dbb8d6a311610064578063dbb8d6a3146101dd578063ed10e33c146101fb578063efb5402914610205578063ff6cc58f14610223576100cd565b80639e1a4d1914610185578063a111bab9146101a3578063c29a6fda146101c1576100cd565b80634377fe75146100d1578063699e667b146100ef5780636b50b6b31461010d578063843f8b041461012b5780638da5cb5b1461014957806398aca92214610167575b5f80fd5b6100d9610253565b6040516100e69190610a1a565b60405180910390f35b6100f761027d565b6040516101049190610a4e565b60405180910390f35b6101156102a1565b6040516101229190610aa6565b60405180910390f35b6101336102c5565b6040516101409190610a1a565b60405180910390f35b6101516102cb565b60405161015e9190610aa6565b60405180910390f35b61016f6102f2565b60405161017c9190610aa6565b60405180910390f35b61018d610357565b60405161019a9190610a1a565b60405180910390f35b6101ab6103f6565b6040516101b89190610a1a565b60405180910390f35b6101db60048036038101906101d69190610aed565b61044f565b005b6101e5610597565b6040516101f29190610ba2565b60405180910390f35b610203610621565b005b61020d61092f565b60405161021a9190610c1d565b60405180910390f35b61023d60048036038101906102389190610c60565b610954565b60405161024a9190610a1a565b60405180910390f35b5f7f000000000000000000000000000000000000000000000000000000000000000160ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000181565b7f000000000000000000000000420b68ed222ff9ebf254b426deed92379012d69981565b60065481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60017f000000000000000000000000000000000000000000000000000000000000000160ff168154811061032a57610329610c8b565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016103b29190610aa6565b602060405180830381865afa1580156103cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103f19190610ccc565b905090565b5f805f90505f5b600780549050811015610447576007818154811061041e5761041d610c8b565b5b905f5260205f200154826104329190610d24565b9150808061043f90610d57565b9150506103fd565b508091505090565b610457610974565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036104c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bc90610df8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054b90610e60565b60405180910390fd5b8060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606040516024016040516020818303038152906040527fed10e33c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050905090565b3373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000420b68ed222ff9ebf254b426deed92379012d69973ffffffffffffffffffffffffffffffffffffffff16146106af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a690610ec8565b60405180910390fd5b5f805b600380549050811015610776575f600382815481106106d4576106d3610c8b565b5b905f5260205f2001549050804210156106ed5750610776565b5f6007838154811061070257610701610c8b565b5b905f5260205f20015490505f811115610761576007838154811061072957610728610c8b565b5b905f5260205f2001548461073d9190610d24565b93505f6007848154811061075457610753610c8b565b5b905f5260205f2001819055505b5050808061076e90610d57565b9150506106b2565b505f81111561092c578060065f8282546107909190610d24565b9250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60017f000000000000000000000000000000000000000000000000000000000000000160ff168154811061080b5761080a610c8b565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610851929190610ee6565b6020604051808303815f875af115801561086d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108919190610f42565b507f7b5390db237441136077b1b9ec43e9317413fb2ed1836ed6a882d6f46f33d56f3060017f000000000000000000000000000000000000000000000000000000000000000160ff16815481106108eb576108ea610c8b565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168360405161092393929190610f6d565b60405180910390a15b50565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60078181548110610963575f80fd5b905f5260205f20015f915090505481565b61097c6109fb565b73ffffffffffffffffffffffffffffffffffffffff1661099a6102cb565b73ffffffffffffffffffffffffffffffffffffffff16146109f9576109bd6109fb565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016109f09190610aa6565b60405180910390fd5b565b5f33905090565b5f819050919050565b610a1481610a02565b82525050565b5f602082019050610a2d5f830184610a0b565b92915050565b5f60ff82169050919050565b610a4881610a33565b82525050565b5f602082019050610a615f830184610a3f565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a9082610a67565b9050919050565b610aa081610a86565b82525050565b5f602082019050610ab95f830184610a97565b92915050565b5f80fd5b610acc81610a86565b8114610ad6575f80fd5b50565b5f81359050610ae781610ac3565b92915050565b5f60208284031215610b0257610b01610abf565b5b5f610b0f84828501610ad9565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610b4f578082015181840152602081019050610b34565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610b7482610b18565b610b7e8185610b22565b9350610b8e818560208601610b32565b610b9781610b5a565b840191505092915050565b5f6020820190508181035f830152610bba8184610b6a565b905092915050565b5f819050919050565b5f610be5610be0610bdb84610a67565b610bc2565b610a67565b9050919050565b5f610bf682610bcb565b9050919050565b5f610c0782610bec565b9050919050565b610c1781610bfd565b82525050565b5f602082019050610c305f830184610c0e565b92915050565b610c3f81610a02565b8114610c49575f80fd5b50565b5f81359050610c5a81610c36565b92915050565b5f60208284031215610c7557610c74610abf565b5b5f610c8284828501610c4c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050610cc681610c36565b92915050565b5f60208284031215610ce157610ce0610abf565b5b5f610cee84828501610cb8565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610d2e82610a02565b9150610d3983610a02565b9250828201905080821115610d5157610d50610cf7565b5b92915050565b5f610d6182610a02565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610d9357610d92610cf7565b5b600182019050919050565b5f82825260208201905092915050565b7f4552433230206973206e756c6c000000000000000000000000000000000000005f82015250565b5f610de2600d83610d9e565b9150610ded82610dae565b602082019050919050565b5f6020820190508181035f830152610e0f81610dd6565b9050919050565b7f4974277320616c7265616479206265656e2061737369676e65640000000000005f82015250565b5f610e4a601a83610d9e565b9150610e5582610e16565b602082019050919050565b5f6020820190508181035f830152610e7781610e3e565b9050919050565b7f6d756c746953696757616c6c65742069732077726f6e670000000000000000005f82015250565b5f610eb2601783610d9e565b9150610ebd82610e7e565b602082019050919050565b5f6020820190508181035f830152610edf81610ea6565b9050919050565b5f604082019050610ef95f830185610a97565b610f066020830184610a0b565b9392505050565b5f8115159050919050565b610f2181610f0d565b8114610f2b575f80fd5b50565b5f81519050610f3c81610f18565b92915050565b5f60208284031215610f5757610f56610abf565b5b5f610f6484828501610f2e565b91505092915050565b5f606082019050610f805f830186610a97565b610f8d6020830185610a97565b610f9a6040830184610a0b565b94935050505056fea264697066735822122028bd44b61b7b256ab830f188d65cb08c54cae3f3fd893fddb13802ad6d4b4e4964736f6c63430008140033
Deployed Bytecode Sourcemap
164:3298:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3356:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;298:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;472:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;395:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1631:85:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2868:123:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2997:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3117:233;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1680:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2743:119;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1947:790;;;:::i;:::-;;342:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;433:32;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3356:104;3413:7;3439:14;3432:21;;;;3356:104;:::o;298:37::-;;;:::o;472:40::-;;;:::o;395:31::-;;;;:::o;1631:85:3:-;1677:7;1703:6;;;;;;;;;;;1696:13;;1631:85;:::o;2868:123:4:-;2912:7;2938:30;2969:14;2938:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2931:53;;2868:123;:::o;2997:114::-;3042:7;3068:11;;;;;;;;;;;:21;;;3098:4;3068:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3061:43;;2997:114;:::o;3117:233::-;3165:7;3184:15;3202:1;3184:19;;3218:9;3213:107;3237:15;:22;;;;3233:1;:26;3213:107;;;3291:15;3307:1;3291:18;;;;;;;;:::i;:::-;;;;;;;;;;3280:29;;;;;:::i;:::-;;;3261:3;;;;;:::i;:::-;;;;3213:107;;;;3336:7;3329:14;;;3117:233;:::o;1680:261::-;1524:13:3;:11;:13::i;:::-;1787:1:4::1;1763:26;;:12;:26;;::::0;1755:52:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1855:1;1825:33;;:11;;;;;;;;;;;:33;;;1817:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1920:12;1899:11;;:34;;;;;;;;;;;;;;;;;;1680:261:::0;:::o;2743:119::-;2789:12;2820:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2813:42;;2743:119;:::o;1947:790::-;2017:10;1998:29;;:15;:29;;;1990:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2066:11;2097:9;2092:392;2116:29;:36;;;;2112:1;:40;2092:392;;;2173:10;2186:29;2216:1;2186:32;;;;;;;;:::i;:::-;;;;;;;;;;2173:45;;2253:2;2235:15;:20;2232:63;;;2275:5;;;2232:63;2310:15;2328;2344:1;2328:18;;;;;;;;:::i;:::-;;;;;;;;;;2310:36;;2373:1;2363:7;:11;2360:114;;;2401:15;2417:1;2401:18;;;;;;;;:::i;:::-;;;;;;;;;;2394:25;;;;;:::i;:::-;;;2458:1;2437:15;2453:1;2437:18;;;;;;;;:::i;:::-;;;;;;;;;:22;;;;2360:114;2159:325;;2154:3;;;;;:::i;:::-;;;;2092:392;;;;2503:1;2497:3;:7;2494:236;;;2536:3;2520:12;;:19;;;;;;;:::i;:::-;;;;;;;;2553:11;;;;;;;;;;;:20;;;2574:30;2605:14;2574:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2622:3;2553:73;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2645:74;2660:4;2667:30;2698:14;2667:46;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2715:3;2645:74;;;;;;;;:::i;:::-;;;;;;;;2494:236;1980:757;1947:790::o;342:46::-;;;;;;;;;;;;;:::o;433:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1789:162:3:-;1859:12;:10;:12::i;:::-;1848:23;;:7;:5;:7::i;:::-;:23;;;1844:101;;1921:12;:10;:12::i;:::-;1894:40;;;;;;;;;;;:::i;:::-;;;;;;;;1844:101;1789:162::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;7:77:6:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:86::-;477:7;517:4;510:5;506:16;495:27;;442:86;;;:::o;534:112::-;617:22;633:5;617:22;:::i;:::-;612:3;605:35;534:112;;:::o;652:214::-;741:4;779:2;768:9;764:18;756:26;;792:67;856:1;845:9;841:17;832:6;792:67;:::i;:::-;652:214;;;;:::o;872:126::-;909:7;949:42;942:5;938:54;927:65;;872:126;;;:::o;1004:96::-;1041:7;1070:24;1088:5;1070:24;:::i;:::-;1059:35;;1004:96;;;:::o;1106:118::-;1193:24;1211:5;1193:24;:::i;:::-;1188:3;1181:37;1106:118;;:::o;1230:222::-;1323:4;1361:2;1350:9;1346:18;1338:26;;1374:71;1442:1;1431:9;1427:17;1418:6;1374:71;:::i;:::-;1230:222;;;;:::o;1539:117::-;1648:1;1645;1638:12;1785:122;1858:24;1876:5;1858:24;:::i;:::-;1851:5;1848:35;1838:63;;1897:1;1894;1887:12;1838:63;1785:122;:::o;1913:139::-;1959:5;1997:6;1984:20;1975:29;;2013:33;2040:5;2013:33;:::i;:::-;1913:139;;;;:::o;2058:329::-;2117:6;2166:2;2154:9;2145:7;2141:23;2137:32;2134:119;;;2172:79;;:::i;:::-;2134:119;2292:1;2317:53;2362:7;2353:6;2342:9;2338:22;2317:53;:::i;:::-;2307:63;;2263:117;2058:329;;;;:::o;2393:98::-;2444:6;2478:5;2472:12;2462:22;;2393:98;;;:::o;2497:168::-;2580:11;2614:6;2609:3;2602:19;2654:4;2649:3;2645:14;2630:29;;2497:168;;;;:::o;2671:246::-;2752:1;2762:113;2776:6;2773:1;2770:13;2762:113;;;2861:1;2856:3;2852:11;2846:18;2842:1;2837:3;2833:11;2826:39;2798:2;2795:1;2791:10;2786:15;;2762:113;;;2909:1;2900:6;2895:3;2891:16;2884:27;2733:184;2671:246;;;:::o;2923:102::-;2964:6;3015:2;3011:7;3006:2;2999:5;2995:14;2991:28;2981:38;;2923:102;;;:::o;3031:373::-;3117:3;3145:38;3177:5;3145:38;:::i;:::-;3199:70;3262:6;3257:3;3199:70;:::i;:::-;3192:77;;3278:65;3336:6;3331:3;3324:4;3317:5;3313:16;3278:65;:::i;:::-;3368:29;3390:6;3368:29;:::i;:::-;3363:3;3359:39;3352:46;;3121:283;3031:373;;;;:::o;3410:309::-;3521:4;3559:2;3548:9;3544:18;3536:26;;3608:9;3602:4;3598:20;3594:1;3583:9;3579:17;3572:47;3636:76;3707:4;3698:6;3636:76;:::i;:::-;3628:84;;3410:309;;;;:::o;3725:60::-;3753:3;3774:5;3767:12;;3725:60;;;:::o;3791:142::-;3841:9;3874:53;3892:34;3901:24;3919:5;3901:24;:::i;:::-;3892:34;:::i;:::-;3874:53;:::i;:::-;3861:66;;3791:142;;;:::o;3939:126::-;3989:9;4022:37;4053:5;4022:37;:::i;:::-;4009:50;;3939:126;;;:::o;4071:139::-;4134:9;4167:37;4198:5;4167:37;:::i;:::-;4154:50;;4071:139;;;:::o;4216:157::-;4316:50;4360:5;4316:50;:::i;:::-;4311:3;4304:63;4216:157;;:::o;4379:248::-;4485:4;4523:2;4512:9;4508:18;4500:26;;4536:84;4617:1;4606:9;4602:17;4593:6;4536:84;:::i;:::-;4379:248;;;;:::o;4633:122::-;4706:24;4724:5;4706:24;:::i;:::-;4699:5;4696:35;4686:63;;4745:1;4742;4735:12;4686:63;4633:122;:::o;4761:139::-;4807:5;4845:6;4832:20;4823:29;;4861:33;4888:5;4861:33;:::i;:::-;4761:139;;;;:::o;4906:329::-;4965:6;5014:2;5002:9;4993:7;4989:23;4985:32;4982:119;;;5020:79;;:::i;:::-;4982:119;5140:1;5165:53;5210:7;5201:6;5190:9;5186:22;5165:53;:::i;:::-;5155:63;;5111:117;4906:329;;;;:::o;5241:180::-;5289:77;5286:1;5279:88;5386:4;5383:1;5376:15;5410:4;5407:1;5400:15;5427:143;5484:5;5515:6;5509:13;5500:22;;5531:33;5558:5;5531:33;:::i;:::-;5427:143;;;;:::o;5576:351::-;5646:6;5695:2;5683:9;5674:7;5670:23;5666:32;5663:119;;;5701:79;;:::i;:::-;5663:119;5821:1;5846:64;5902:7;5893:6;5882:9;5878:22;5846:64;:::i;:::-;5836:74;;5792:128;5576:351;;;;:::o;5933:180::-;5981:77;5978:1;5971:88;6078:4;6075:1;6068:15;6102:4;6099:1;6092:15;6119:191;6159:3;6178:20;6196:1;6178:20;:::i;:::-;6173:25;;6212:20;6230:1;6212:20;:::i;:::-;6207:25;;6255:1;6252;6248:9;6241:16;;6276:3;6273:1;6270:10;6267:36;;;6283:18;;:::i;:::-;6267:36;6119:191;;;;:::o;6316:233::-;6355:3;6378:24;6396:5;6378:24;:::i;:::-;6369:33;;6424:66;6417:5;6414:77;6411:103;;6494:18;;:::i;:::-;6411:103;6541:1;6534:5;6530:13;6523:20;;6316:233;;;:::o;6555:169::-;6639:11;6673:6;6668:3;6661:19;6713:4;6708:3;6704:14;6689:29;;6555:169;;;;:::o;6730:163::-;6870:15;6866:1;6858:6;6854:14;6847:39;6730:163;:::o;6899:366::-;7041:3;7062:67;7126:2;7121:3;7062:67;:::i;:::-;7055:74;;7138:93;7227:3;7138:93;:::i;:::-;7256:2;7251:3;7247:12;7240:19;;6899:366;;;:::o;7271:419::-;7437:4;7475:2;7464:9;7460:18;7452:26;;7524:9;7518:4;7514:20;7510:1;7499:9;7495:17;7488:47;7552:131;7678:4;7552:131;:::i;:::-;7544:139;;7271:419;;;:::o;7696:176::-;7836:28;7832:1;7824:6;7820:14;7813:52;7696:176;:::o;7878:366::-;8020:3;8041:67;8105:2;8100:3;8041:67;:::i;:::-;8034:74;;8117:93;8206:3;8117:93;:::i;:::-;8235:2;8230:3;8226:12;8219:19;;7878:366;;;:::o;8250:419::-;8416:4;8454:2;8443:9;8439:18;8431:26;;8503:9;8497:4;8493:20;8489:1;8478:9;8474:17;8467:47;8531:131;8657:4;8531:131;:::i;:::-;8523:139;;8250:419;;;:::o;8675:173::-;8815:25;8811:1;8803:6;8799:14;8792:49;8675:173;:::o;8854:366::-;8996:3;9017:67;9081:2;9076:3;9017:67;:::i;:::-;9010:74;;9093:93;9182:3;9093:93;:::i;:::-;9211:2;9206:3;9202:12;9195:19;;8854:366;;;:::o;9226:419::-;9392:4;9430:2;9419:9;9415:18;9407:26;;9479:9;9473:4;9469:20;9465:1;9454:9;9450:17;9443:47;9507:131;9633:4;9507:131;:::i;:::-;9499:139;;9226:419;;;:::o;9651:332::-;9772:4;9810:2;9799:9;9795:18;9787:26;;9823:71;9891:1;9880:9;9876:17;9867:6;9823:71;:::i;:::-;9904:72;9972:2;9961:9;9957:18;9948:6;9904:72;:::i;:::-;9651:332;;;;;:::o;9989:90::-;10023:7;10066:5;10059:13;10052:21;10041:32;;9989:90;;;:::o;10085:116::-;10155:21;10170:5;10155:21;:::i;:::-;10148:5;10145:32;10135:60;;10191:1;10188;10181:12;10135:60;10085:116;:::o;10207:137::-;10261:5;10292:6;10286:13;10277:22;;10308:30;10332:5;10308:30;:::i;:::-;10207:137;;;;:::o;10350:345::-;10417:6;10466:2;10454:9;10445:7;10441:23;10437:32;10434:119;;;10472:79;;:::i;:::-;10434:119;10592:1;10617:61;10670:7;10661:6;10650:9;10646:22;10617:61;:::i;:::-;10607:71;;10563:125;10350:345;;;;:::o;10701:442::-;10850:4;10888:2;10877:9;10873:18;10865:26;;10901:71;10969:1;10958:9;10954:17;10945:6;10901:71;:::i;:::-;10982:72;11050:2;11039:9;11035:18;11026:6;10982:72;:::i;:::-;11064;11132:2;11121:9;11117:18;11108:6;11064:72;:::i;:::-;10701:442;;;;;;:::o
Swarm Source
ipfs://28bd44b61b7b256ab830f188d65cb08c54cae3f3fd893fddb13802ad6d4b4e49
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.