More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 26 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Unwrap | 19826822 | 210 days ago | IN | 0 ETH | 0.00031045 | ||||
Wrap | 19762391 | 219 days ago | IN | 0 ETH | 0.00112872 | ||||
Unwrap | 14826633 | 927 days ago | IN | 0 ETH | 0.00340936 | ||||
Unwrap | 14706276 | 946 days ago | IN | 0 ETH | 0.00619879 | ||||
Approve | 14411452 | 992 days ago | IN | 0 ETH | 0.00283264 | ||||
Wrap | 14399991 | 994 days ago | IN | 0 ETH | 0.00609971 | ||||
Approve | 14346922 | 1002 days ago | IN | 0 ETH | 0.00163042 | ||||
Wrap | 14346920 | 1002 days ago | IN | 0 ETH | 0.00501052 | ||||
Approve | 14323632 | 1006 days ago | IN | 0 ETH | 0.00272012 | ||||
Wrap | 14321009 | 1006 days ago | IN | 0 ETH | 0.00480843 | ||||
Approve | 14315415 | 1007 days ago | IN | 0 ETH | 0.00213559 | ||||
Wrap | 14315384 | 1007 days ago | IN | 0 ETH | 0.00569668 | ||||
Wrap | 14315367 | 1007 days ago | IN | 0 ETH | 0.00485451 | ||||
Unwrap | 14308795 | 1008 days ago | IN | 0 ETH | 0.00649391 | ||||
Wrap | 14308791 | 1008 days ago | IN | 0 ETH | 0.00676735 | ||||
Approve | 14241589 | 1019 days ago | IN | 0 ETH | 0.00211947 | ||||
Burn Hoge | 14241175 | 1019 days ago | IN | 0 ETH | 0.00413485 | ||||
Approve | 14239056 | 1019 days ago | IN | 0 ETH | 0.00524241 | ||||
Unwrap | 14238985 | 1019 days ago | IN | 0 ETH | 0.00437211 | ||||
Unwrap | 14238686 | 1019 days ago | IN | 0 ETH | 0.0068094 | ||||
Transfer | 14238584 | 1019 days ago | IN | 0 ETH | 0.00361424 | ||||
Unwrap | 14238338 | 1019 days ago | IN | 0 ETH | 0.00752724 | ||||
Unwrap | 14238264 | 1019 days ago | IN | 0 ETH | 0.00783568 | ||||
Approve | 14238125 | 1019 days ago | IN | 0 ETH | 0.00231898 | ||||
Wrap | 14238095 | 1019 days ago | IN | 0 ETH | 0.01426147 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Hoge2
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./SafeMath.sol"; pragma solidity ^0.8.11; // SPDX-License-Identifier: Unlicensed contract Hoge2 is ERC20 { using SafeMath for uint256; IERC20 HOGE = IERC20(0xfAd45E47083e4607302aa43c65fB3106F1cd7607); constructor() ERC20("Hoge2.0", "HOGE2") {} function decimals() public view virtual override returns (uint8) { return 9; } function wrap(uint256 hogeAmount) public { //Mint HOGE2 on receipt of HOGE require(HOGE.balanceOf(msg.sender) >= hogeAmount, "Insufficient HOGE balance."); HOGE.transferFrom(msg.sender, address(this), hogeAmount); _mint(msg.sender, hogeAmount.mul(98) / 100); } function unwrap(uint256 hoge2Amount) public { //Burn HOGE2 on withdrawal of HOGE. require(balanceOf(msg.sender) >= hoge2Amount, "Insufficient HOGE2 balance."); HOGE.transfer(msg.sender, hoge2Amount); _burn(msg.sender, hoge2Amount); } function burnableHoge() public view returns (uint256) { //Balance in excess of owed HOGE. return HOGE.balanceOf(address(this)).sub(this.totalSupply()); } function burnHoge() public returns (uint256) { //Burn off excess reflected HOGE uint256 burnable = this.burnableHoge(); HOGE.transfer(0x000000000000000000000000000000000000dEaD, burnable); return burnable; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev 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 value {ERC20} uses, unless this function is * 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}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
pragma solidity ^0.8.11; // SPDX-License-Identifier: Unlicensed library SafeMath { function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount ) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"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":[{"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":"amount","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":[],"name":"burnHoge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnableHoge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"hoge2Amount","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"hogeAmount","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273fad45e47083e4607302aa43c65fb3106f1cd7607600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600781526020017f486f6765322e30000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f484f4745320000000000000000000000000000000000000000000000000000008152508160039080519060200190620000eb9291906200010d565b508060049080519060200190620001049291906200010d565b50505062000222565b8280546200011b90620001ec565b90600052602060002090601f0160209004810192826200013f57600085556200018b565b82601f106200015a57805160ff19168380011785556200018b565b828001600101855582156200018b579182015b828111156200018a5782518255916020019190600101906200016d565b5b5090506200019a91906200019e565b5090565b5b80821115620001b95760008160009055506001016200019f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200020557607f821691505b602082108114156200021c576200021b620001bd565b5b50919050565b61228f80620002326000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063b662ebdd11610066578063b662ebdd146102b0578063dd62ed3e146102ce578063de0e9a3e146102fe578063ea598cb01461031a576100f5565b806370a082311461020257806395d89b4114610232578063a457c2d714610250578063a9059cbb14610280576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806335ce863f146101b457806339509351146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f919061160f565b60405180910390f35b610132600480360381019061012d91906116ca565b6103c8565b60405161013f9190611725565b60405180910390f35b6101506103eb565b60405161015d919061174f565b60405180910390f35b610180600480360381019061017b919061176a565b6103f5565b60405161018d9190611725565b60405180910390f35b61019e610424565b6040516101ab91906117d9565b60405180910390f35b6101bc61042d565b6040516101c9919061174f565b60405180910390f35b6101ec60048036038101906101e791906116ca565b610550565b6040516101f99190611725565b60405180910390f35b61021c600480360381019061021791906117f4565b6105fa565b604051610229919061174f565b60405180910390f35b61023a610642565b604051610247919061160f565b60405180910390f35b61026a600480360381019061026591906116ca565b6106d4565b6040516102779190611725565b60405180910390f35b61029a600480360381019061029591906116ca565b6107be565b6040516102a79190611725565b60405180910390f35b6102b86107e1565b6040516102c5919061174f565b60405180910390f35b6102e860048036038101906102e39190611821565b6108ff565b6040516102f5919061174f565b60405180910390f35b61031860048036038101906103139190611861565b610986565b005b610334600480360381019061032f9190611861565b610a7f565b005b606060038054610345906118bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610371906118bd565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d3610c2c565b90506103e0818585610c34565b600191505092915050565b6000600254905090565b600080610400610c2c565b905061040d858285610dff565b610418858585610e8b565b60019150509392505050565b60006009905090565b600061054b3073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561047d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a19190611904565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016104fc9190611940565b602060405180830381865afa158015610519573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053d9190611904565b61110c90919063ffffffff16565b905090565b60008061055b610c2c565b90506105ef818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ea919061198a565b610c34565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610651906118bd565b80601f016020809104026020016040519081016040528092919081815260200182805461067d906118bd565b80156106ca5780601f1061069f576101008083540402835291602001916106ca565b820191906000526020600020905b8154815290600101906020018083116106ad57829003601f168201915b5050505050905090565b6000806106df610c2c565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90611a52565b60405180910390fd5b6107b28286868403610c34565b60019250505092915050565b6000806107c9610c2c565b90506107d6818585610e8b565b600191505092915050565b6000803073ffffffffffffffffffffffffffffffffffffffff166335ce863f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561082f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108539190611904565b9050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b81526004016108b4929190611a72565b6020604051808303816000875af11580156108d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f79190611ac7565b508091505090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b80610990336105fa565b10156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890611b40565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610a2e929190611a72565b6020604051808303816000875af1158015610a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a719190611ac7565b50610a7c3382611156565b50565b80600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610adb9190611940565b602060405180830381865afa158015610af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1c9190611904565b1015610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490611bac565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401610bbc93929190611bcc565b6020604051808303816000875af1158015610bdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bff9190611ac7565b50610c29336064610c1a60628561132d90919063ffffffff16565b610c249190611c32565b6113a8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611cd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90611d67565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df2919061174f565b60405180910390a3505050565b6000610e0b84846108ff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e855781811015610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90611dd3565b60405180910390fd5b610e848484848403610c34565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290611e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290611ef7565b60405180910390fd5b610f76838383611508565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390611f89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108f919061198a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f3919061174f565b60405180910390a361110684848461150d565b50505050565b600061114e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611512565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061201b565b60405180910390fd5b6111d282600083611508565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f906120ad565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112af91906120cd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611314919061174f565b60405180910390a36113288360008461150d565b505050565b60008083141561134057600090506113a2565b6000828461134e9190612101565b905082848261135d9190611c32565b1461139d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611394906121cd565b60405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90612239565b60405180910390fd5b61142460008383611508565b8060026000828254611436919061198a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148b919061198a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f0919061174f565b60405180910390a36115046000838361150d565b5050565b505050565b505050565b600083831115829061155a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611551919061160f565b60405180910390fd5b506000838561156991906120cd565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115b0578082015181840152602081019050611595565b838111156115bf576000848401525b50505050565b6000601f19601f8301169050919050565b60006115e182611576565b6115eb8185611581565b93506115fb818560208601611592565b611604816115c5565b840191505092915050565b6000602082019050818103600083015261162981846115d6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061166182611636565b9050919050565b61167181611656565b811461167c57600080fd5b50565b60008135905061168e81611668565b92915050565b6000819050919050565b6116a781611694565b81146116b257600080fd5b50565b6000813590506116c48161169e565b92915050565b600080604083850312156116e1576116e0611631565b5b60006116ef8582860161167f565b9250506020611700858286016116b5565b9150509250929050565b60008115159050919050565b61171f8161170a565b82525050565b600060208201905061173a6000830184611716565b92915050565b61174981611694565b82525050565b60006020820190506117646000830184611740565b92915050565b60008060006060848603121561178357611782611631565b5b60006117918682870161167f565b93505060206117a28682870161167f565b92505060406117b3868287016116b5565b9150509250925092565b600060ff82169050919050565b6117d3816117bd565b82525050565b60006020820190506117ee60008301846117ca565b92915050565b60006020828403121561180a57611809611631565b5b60006118188482850161167f565b91505092915050565b6000806040838503121561183857611837611631565b5b60006118468582860161167f565b92505060206118578582860161167f565b9150509250929050565b60006020828403121561187757611876611631565b5b6000611885848285016116b5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118d557607f821691505b602082108114156118e9576118e861188e565b5b50919050565b6000815190506118fe8161169e565b92915050565b60006020828403121561191a57611919611631565b5b6000611928848285016118ef565b91505092915050565b61193a81611656565b82525050565b60006020820190506119556000830184611931565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061199582611694565b91506119a083611694565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119d5576119d461195b565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a3c602583611581565b9150611a47826119e0565b604082019050919050565b60006020820190508181036000830152611a6b81611a2f565b9050919050565b6000604082019050611a876000830185611931565b611a946020830184611740565b9392505050565b611aa48161170a565b8114611aaf57600080fd5b50565b600081519050611ac181611a9b565b92915050565b600060208284031215611add57611adc611631565b5b6000611aeb84828501611ab2565b91505092915050565b7f496e73756666696369656e7420484f4745322062616c616e63652e0000000000600082015250565b6000611b2a601b83611581565b9150611b3582611af4565b602082019050919050565b60006020820190508181036000830152611b5981611b1d565b9050919050565b7f496e73756666696369656e7420484f47452062616c616e63652e000000000000600082015250565b6000611b96601a83611581565b9150611ba182611b60565b602082019050919050565b60006020820190508181036000830152611bc581611b89565b9050919050565b6000606082019050611be16000830186611931565b611bee6020830185611931565b611bfb6040830184611740565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c3d82611694565b9150611c4883611694565b925082611c5857611c57611c03565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cbf602483611581565b9150611cca82611c63565b604082019050919050565b60006020820190508181036000830152611cee81611cb2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d51602283611581565b9150611d5c82611cf5565b604082019050919050565b60006020820190508181036000830152611d8081611d44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611dbd601d83611581565b9150611dc882611d87565b602082019050919050565b60006020820190508181036000830152611dec81611db0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e4f602583611581565b9150611e5a82611df3565b604082019050919050565b60006020820190508181036000830152611e7e81611e42565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ee1602383611581565b9150611eec82611e85565b604082019050919050565b60006020820190508181036000830152611f1081611ed4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f73602683611581565b9150611f7e82611f17565b604082019050919050565b60006020820190508181036000830152611fa281611f66565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612005602183611581565b915061201082611fa9565b604082019050919050565b6000602082019050818103600083015261203481611ff8565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612097602283611581565b91506120a28261203b565b604082019050919050565b600060208201905081810360008301526120c68161208a565b9050919050565b60006120d882611694565b91506120e383611694565b9250828210156120f6576120f561195b565b5b828203905092915050565b600061210c82611694565b915061211783611694565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121505761214f61195b565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006121b7602183611581565b91506121c28261215b565b604082019050919050565b600060208201905081810360008301526121e6816121aa565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612223601f83611581565b915061222e826121ed565b602082019050919050565b6000602082019050818103600083015261225281612216565b905091905056fea26469706673582212203f59b07ab415c5a835216c0c8e367956ba39ba689450392b974c6e22118f8d2e64736f6c634300080b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063b662ebdd11610066578063b662ebdd146102b0578063dd62ed3e146102ce578063de0e9a3e146102fe578063ea598cb01461031a576100f5565b806370a082311461020257806395d89b4114610232578063a457c2d714610250578063a9059cbb14610280576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806335ce863f146101b457806339509351146101d2576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f919061160f565b60405180910390f35b610132600480360381019061012d91906116ca565b6103c8565b60405161013f9190611725565b60405180910390f35b6101506103eb565b60405161015d919061174f565b60405180910390f35b610180600480360381019061017b919061176a565b6103f5565b60405161018d9190611725565b60405180910390f35b61019e610424565b6040516101ab91906117d9565b60405180910390f35b6101bc61042d565b6040516101c9919061174f565b60405180910390f35b6101ec60048036038101906101e791906116ca565b610550565b6040516101f99190611725565b60405180910390f35b61021c600480360381019061021791906117f4565b6105fa565b604051610229919061174f565b60405180910390f35b61023a610642565b604051610247919061160f565b60405180910390f35b61026a600480360381019061026591906116ca565b6106d4565b6040516102779190611725565b60405180910390f35b61029a600480360381019061029591906116ca565b6107be565b6040516102a79190611725565b60405180910390f35b6102b86107e1565b6040516102c5919061174f565b60405180910390f35b6102e860048036038101906102e39190611821565b6108ff565b6040516102f5919061174f565b60405180910390f35b61031860048036038101906103139190611861565b610986565b005b610334600480360381019061032f9190611861565b610a7f565b005b606060038054610345906118bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610371906118bd565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d3610c2c565b90506103e0818585610c34565b600191505092915050565b6000600254905090565b600080610400610c2c565b905061040d858285610dff565b610418858585610e8b565b60019150509392505050565b60006009905090565b600061054b3073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561047d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a19190611904565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016104fc9190611940565b602060405180830381865afa158015610519573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053d9190611904565b61110c90919063ffffffff16565b905090565b60008061055b610c2c565b90506105ef818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ea919061198a565b610c34565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610651906118bd565b80601f016020809104026020016040519081016040528092919081815260200182805461067d906118bd565b80156106ca5780601f1061069f576101008083540402835291602001916106ca565b820191906000526020600020905b8154815290600101906020018083116106ad57829003601f168201915b5050505050905090565b6000806106df610c2c565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90611a52565b60405180910390fd5b6107b28286868403610c34565b60019250505092915050565b6000806107c9610c2c565b90506107d6818585610e8b565b600191505092915050565b6000803073ffffffffffffffffffffffffffffffffffffffff166335ce863f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561082f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108539190611904565b9050600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b81526004016108b4929190611a72565b6020604051808303816000875af11580156108d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f79190611ac7565b508091505090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b80610990336105fa565b10156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890611b40565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610a2e929190611a72565b6020604051808303816000875af1158015610a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a719190611ac7565b50610a7c3382611156565b50565b80600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610adb9190611940565b602060405180830381865afa158015610af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1c9190611904565b1015610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490611bac565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401610bbc93929190611bcc565b6020604051808303816000875af1158015610bdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bff9190611ac7565b50610c29336064610c1a60628561132d90919063ffffffff16565b610c249190611c32565b6113a8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611cd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90611d67565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df2919061174f565b60405180910390a3505050565b6000610e0b84846108ff565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e855781811015610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90611dd3565b60405180910390fd5b610e848484848403610c34565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290611e65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290611ef7565b60405180910390fd5b610f76838383611508565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390611f89565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108f919061198a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f3919061174f565b60405180910390a361110684848461150d565b50505050565b600061114e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611512565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061201b565b60405180910390fd5b6111d282600083611508565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f906120ad565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112af91906120cd565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611314919061174f565b60405180910390a36113288360008461150d565b505050565b60008083141561134057600090506113a2565b6000828461134e9190612101565b905082848261135d9190611c32565b1461139d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611394906121cd565b60405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90612239565b60405180910390fd5b61142460008383611508565b8060026000828254611436919061198a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148b919061198a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f0919061174f565b60405180910390a36115046000838361150d565b5050565b505050565b505050565b600083831115829061155a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611551919061160f565b60405180910390fd5b506000838561156991906120cd565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115b0578082015181840152602081019050611595565b838111156115bf576000848401525b50505050565b6000601f19601f8301169050919050565b60006115e182611576565b6115eb8185611581565b93506115fb818560208601611592565b611604816115c5565b840191505092915050565b6000602082019050818103600083015261162981846115d6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061166182611636565b9050919050565b61167181611656565b811461167c57600080fd5b50565b60008135905061168e81611668565b92915050565b6000819050919050565b6116a781611694565b81146116b257600080fd5b50565b6000813590506116c48161169e565b92915050565b600080604083850312156116e1576116e0611631565b5b60006116ef8582860161167f565b9250506020611700858286016116b5565b9150509250929050565b60008115159050919050565b61171f8161170a565b82525050565b600060208201905061173a6000830184611716565b92915050565b61174981611694565b82525050565b60006020820190506117646000830184611740565b92915050565b60008060006060848603121561178357611782611631565b5b60006117918682870161167f565b93505060206117a28682870161167f565b92505060406117b3868287016116b5565b9150509250925092565b600060ff82169050919050565b6117d3816117bd565b82525050565b60006020820190506117ee60008301846117ca565b92915050565b60006020828403121561180a57611809611631565b5b60006118188482850161167f565b91505092915050565b6000806040838503121561183857611837611631565b5b60006118468582860161167f565b92505060206118578582860161167f565b9150509250929050565b60006020828403121561187757611876611631565b5b6000611885848285016116b5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118d557607f821691505b602082108114156118e9576118e861188e565b5b50919050565b6000815190506118fe8161169e565b92915050565b60006020828403121561191a57611919611631565b5b6000611928848285016118ef565b91505092915050565b61193a81611656565b82525050565b60006020820190506119556000830184611931565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061199582611694565b91506119a083611694565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119d5576119d461195b565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a3c602583611581565b9150611a47826119e0565b604082019050919050565b60006020820190508181036000830152611a6b81611a2f565b9050919050565b6000604082019050611a876000830185611931565b611a946020830184611740565b9392505050565b611aa48161170a565b8114611aaf57600080fd5b50565b600081519050611ac181611a9b565b92915050565b600060208284031215611add57611adc611631565b5b6000611aeb84828501611ab2565b91505092915050565b7f496e73756666696369656e7420484f4745322062616c616e63652e0000000000600082015250565b6000611b2a601b83611581565b9150611b3582611af4565b602082019050919050565b60006020820190508181036000830152611b5981611b1d565b9050919050565b7f496e73756666696369656e7420484f47452062616c616e63652e000000000000600082015250565b6000611b96601a83611581565b9150611ba182611b60565b602082019050919050565b60006020820190508181036000830152611bc581611b89565b9050919050565b6000606082019050611be16000830186611931565b611bee6020830185611931565b611bfb6040830184611740565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c3d82611694565b9150611c4883611694565b925082611c5857611c57611c03565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cbf602483611581565b9150611cca82611c63565b604082019050919050565b60006020820190508181036000830152611cee81611cb2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d51602283611581565b9150611d5c82611cf5565b604082019050919050565b60006020820190508181036000830152611d8081611d44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611dbd601d83611581565b9150611dc882611d87565b602082019050919050565b60006020820190508181036000830152611dec81611db0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e4f602583611581565b9150611e5a82611df3565b604082019050919050565b60006020820190508181036000830152611e7e81611e42565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ee1602383611581565b9150611eec82611e85565b604082019050919050565b60006020820190508181036000830152611f1081611ed4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f73602683611581565b9150611f7e82611f17565b604082019050919050565b60006020820190508181036000830152611fa281611f66565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612005602183611581565b915061201082611fa9565b604082019050919050565b6000602082019050818103600083015261203481611ff8565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612097602283611581565b91506120a28261203b565b604082019050919050565b600060208201905081810360008301526120c68161208a565b9050919050565b60006120d882611694565b91506120e383611694565b9250828210156120f6576120f561195b565b5b828203905092915050565b600061210c82611694565b915061211783611694565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121505761214f61195b565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006121b7602183611581565b91506121c28261215b565b604082019050919050565b600060208201905081810360008301526121e6816121aa565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612223601f83611581565b915061222e826121ed565b602082019050919050565b6000602082019050818103600083015261225281612216565b905091905056fea26469706673582212203f59b07ab415c5a835216c0c8e367956ba39ba689450392b974c6e22118f8d2e64736f6c634300080b0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.000034 | 6,824,399.4529 | $230.26 |
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.