ETH Price: $2,963.08 (-1.90%)
Gas: 2 Gwei

Token

DORAEMON COIN (MON)
 

Overview

Max Total Supply

420,369,000,000,000 MON

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,041,684,821,067.283808270045281849 MON

Value
$0.00
0x3f1867f5105c4cf0ad4e91cde4775f2ce4499d17
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Doraemon

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-30
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol
// 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;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


/**
 * @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, allowance(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 = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 {}
}


// File: mon.sol 
pragma solidity ^0.8.0;


contract Doraemon is ERC20{
    
    address public  owner; 

    /**
     * @dev Constructor.
     * @param name for this token, name.
     * @param symbol for this token, symbol.
    */

    constructor(string memory name, string memory symbol, uint totalSupply) ERC20(name, symbol){
        owner = msg.sender;
        // tokenSupply = 420,369,000,000,000.
        _mint(owner, totalSupply*10**18); 
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "You are not the owner, bye!");
        _;
    }

    // burn to reduce supply.
    function burn(uint256 value) public  {
        _burn(msg.sender, value);
    }

    // renounced owner (this contract).
    function renouncedOwner(address newOwner) public onlyOwner {
        //newOwner = 0x0000000000000000000000000000000000000000;
        owner = newOwner;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"renouncedOwner","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b5060405162001fb038038062001fb083398181016040528101906200003791906200050b565b828281600390805190602001906200005192919062000283565b5080600490805190602001906200006a92919062000283565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000f7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a764000083620000eb9190620005d4565b6200010060201b60201c565b505050620007a8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016a9062000696565b60405180910390fd5b62000187600083836200027960201b60201c565b80600260008282546200019b9190620006b8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f29190620006b8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000259919062000726565b60405180910390a362000275600083836200027e60201b60201c565b5050565b505050565b505050565b828054620002919062000772565b90600052602060002090601f016020900481019282620002b5576000855562000301565b82601f10620002d057805160ff191683800117855562000301565b8280016001018555821562000301579182015b8281111562000300578251825591602001919060010190620002e3565b5b50905062000310919062000314565b5090565b5b808211156200032f57600081600090555060010162000315565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200039c8262000351565b810181811067ffffffffffffffff82111715620003be57620003bd62000362565b5b80604052505050565b6000620003d362000333565b9050620003e1828262000391565b919050565b600067ffffffffffffffff82111562000404576200040362000362565b5b6200040f8262000351565b9050602081019050919050565b60005b838110156200043c5780820151818401526020810190506200041f565b838111156200044c576000848401525b50505050565b6000620004696200046384620003e6565b620003c7565b9050828152602081018484840111156200048857620004876200034c565b5b620004958482856200041c565b509392505050565b600082601f830112620004b557620004b462000347565b5b8151620004c784826020860162000452565b91505092915050565b6000819050919050565b620004e581620004d0565b8114620004f157600080fd5b50565b6000815190506200050581620004da565b92915050565b6000806000606084860312156200052757620005266200033d565b5b600084015167ffffffffffffffff81111562000548576200054762000342565b5b62000556868287016200049d565b935050602084015167ffffffffffffffff8111156200057a576200057962000342565b5b62000588868287016200049d565b92505060406200059b86828701620004f4565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620005e182620004d0565b9150620005ee83620004d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200062a5762000629620005a5565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200067e601f8362000635565b91506200068b8262000646565b602082019050919050565b60006020820190508181036000830152620006b1816200066f565b9050919050565b6000620006c582620004d0565b9150620006d283620004d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200070a5762000709620005a5565b5b828201905092915050565b6200072081620004d0565b82525050565b60006020820190506200073d600083018462000715565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200078b57607f821691505b60208210811415620007a257620007a162000743565b5b50919050565b6117f880620007b86000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636f2bf32c1161008c57806395d89b411161006657806395d89b411461025f578063a457c2d71461027d578063a9059cbb146102ad578063dd62ed3e146102dd576100ea565b80636f2bf32c146101f557806370a08231146102115780638da5cb5b14610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190610e97565b60405180910390f35b61012760048036038101906101229190610f52565b61039f565b6040516101349190610fad565b60405180910390f35b6101456103c2565b6040516101529190610fd7565b60405180910390f35b61017560048036038101906101709190610ff2565b6103cc565b6040516101829190610fad565b60405180910390f35b6101936103fb565b6040516101a09190611061565b60405180910390f35b6101c360048036038101906101be9190610f52565b610404565b6040516101d09190610fad565b60405180910390f35b6101f360048036038101906101ee919061107c565b61043b565b005b61020f600480360381019061020a91906110a9565b610448565b005b61022b600480360381019061022691906110a9565b61051c565b6040516102389190610fd7565b60405180910390f35b610249610564565b60405161025691906110e5565b60405180910390f35b61026761058a565b6040516102749190610e97565b60405180910390f35b61029760048036038101906102929190610f52565b61061c565b6040516102a49190610fad565b60405180910390f35b6102c760048036038101906102c29190610f52565b610693565b6040516102d49190610fad565b60405180910390f35b6102f760048036038101906102f29190611100565b6106b6565b6040516103049190610fd7565b60405180910390f35b60606003805461031c9061116f565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061116f565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa61073d565b90506103b7818585610745565b600191505092915050565b6000600254905090565b6000806103d761073d565b90506103e4858285610910565b6103ef85858561099c565b60019150509392505050565b60006012905090565b60008061040f61073d565b905061043081858561042185896106b6565b61042b91906111d0565b610745565b600191505092915050565b6104453382610c1d565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104cf90611272565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546105999061116f565b80601f01602080910402602001604051908101604052809291908181526020018280546105c59061116f565b80156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b5050505050905090565b60008061062761073d565b9050600061063582866106b6565b90508381101561067a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067190611304565b60405180910390fd5b6106878286868403610745565b60019250505092915050565b60008061069e61073d565b90506106ab81858561099c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90611396565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c90611428565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109039190610fd7565b60405180910390a3505050565b600061091c84846106b6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109965781811015610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90611494565b60405180910390fd5b6109958484848403610745565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390611526565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a73906115b8565b60405180910390fd5b610a87838383610df4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061164a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ba091906111d0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c049190610fd7565b60405180910390a3610c17848484610df9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906116dc565b60405180910390fd5b610c9982600083610df4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d169061176e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d76919061178e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ddb9190610fd7565b60405180910390a3610def83600084610df9565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e38578082015181840152602081019050610e1d565b83811115610e47576000848401525b50505050565b6000601f19601f8301169050919050565b6000610e6982610dfe565b610e738185610e09565b9350610e83818560208601610e1a565b610e8c81610e4d565b840191505092915050565b60006020820190508181036000830152610eb18184610e5e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ee982610ebe565b9050919050565b610ef981610ede565b8114610f0457600080fd5b50565b600081359050610f1681610ef0565b92915050565b6000819050919050565b610f2f81610f1c565b8114610f3a57600080fd5b50565b600081359050610f4c81610f26565b92915050565b60008060408385031215610f6957610f68610eb9565b5b6000610f7785828601610f07565b9250506020610f8885828601610f3d565b9150509250929050565b60008115159050919050565b610fa781610f92565b82525050565b6000602082019050610fc26000830184610f9e565b92915050565b610fd181610f1c565b82525050565b6000602082019050610fec6000830184610fc8565b92915050565b60008060006060848603121561100b5761100a610eb9565b5b600061101986828701610f07565b935050602061102a86828701610f07565b925050604061103b86828701610f3d565b9150509250925092565b600060ff82169050919050565b61105b81611045565b82525050565b60006020820190506110766000830184611052565b92915050565b60006020828403121561109257611091610eb9565b5b60006110a084828501610f3d565b91505092915050565b6000602082840312156110bf576110be610eb9565b5b60006110cd84828501610f07565b91505092915050565b6110df81610ede565b82525050565b60006020820190506110fa60008301846110d6565b92915050565b6000806040838503121561111757611116610eb9565b5b600061112585828601610f07565b925050602061113685828601610f07565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061118757607f821691505b6020821081141561119b5761119a611140565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111db82610f1c565b91506111e683610f1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561121b5761121a6111a1565b5b828201905092915050565b7f596f7520617265206e6f7420746865206f776e65722c20627965210000000000600082015250565b600061125c601b83610e09565b915061126782611226565b602082019050919050565b6000602082019050818103600083015261128b8161124f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112ee602583610e09565b91506112f982611292565b604082019050919050565b6000602082019050818103600083015261131d816112e1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611380602483610e09565b915061138b82611324565b604082019050919050565b600060208201905081810360008301526113af81611373565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611412602283610e09565b915061141d826113b6565b604082019050919050565b6000602082019050818103600083015261144181611405565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061147e601d83610e09565b915061148982611448565b602082019050919050565b600060208201905081810360008301526114ad81611471565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611510602583610e09565b915061151b826114b4565b604082019050919050565b6000602082019050818103600083015261153f81611503565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115a2602383610e09565b91506115ad82611546565b604082019050919050565b600060208201905081810360008301526115d181611595565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611634602683610e09565b915061163f826115d8565b604082019050919050565b6000602082019050818103600083015261166381611627565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006116c6602183610e09565b91506116d18261166a565b604082019050919050565b600060208201905081810360008301526116f5816116b9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611758602283610e09565b9150611763826116fc565b604082019050919050565b600060208201905081810360008301526117878161174b565b9050919050565b600061179982610f1c565b91506117a483610f1c565b9250828210156117b7576117b66111a1565b5b82820390509291505056fea264697066735822122027546e090244632dfb427250256981627d342cd5e81eaa5583e14ba05ef0281d64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017e52c8eb6a00000000000000000000000000000000000000000000000000000000000000000d444f5241454d4f4e20434f494e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f4e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636f2bf32c1161008c57806395d89b411161006657806395d89b411461025f578063a457c2d71461027d578063a9059cbb146102ad578063dd62ed3e146102dd576100ea565b80636f2bf32c146101f557806370a08231146102115780638da5cb5b14610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190610e97565b60405180910390f35b61012760048036038101906101229190610f52565b61039f565b6040516101349190610fad565b60405180910390f35b6101456103c2565b6040516101529190610fd7565b60405180910390f35b61017560048036038101906101709190610ff2565b6103cc565b6040516101829190610fad565b60405180910390f35b6101936103fb565b6040516101a09190611061565b60405180910390f35b6101c360048036038101906101be9190610f52565b610404565b6040516101d09190610fad565b60405180910390f35b6101f360048036038101906101ee919061107c565b61043b565b005b61020f600480360381019061020a91906110a9565b610448565b005b61022b600480360381019061022691906110a9565b61051c565b6040516102389190610fd7565b60405180910390f35b610249610564565b60405161025691906110e5565b60405180910390f35b61026761058a565b6040516102749190610e97565b60405180910390f35b61029760048036038101906102929190610f52565b61061c565b6040516102a49190610fad565b60405180910390f35b6102c760048036038101906102c29190610f52565b610693565b6040516102d49190610fad565b60405180910390f35b6102f760048036038101906102f29190611100565b6106b6565b6040516103049190610fd7565b60405180910390f35b60606003805461031c9061116f565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061116f565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa61073d565b90506103b7818585610745565b600191505092915050565b6000600254905090565b6000806103d761073d565b90506103e4858285610910565b6103ef85858561099c565b60019150509392505050565b60006012905090565b60008061040f61073d565b905061043081858561042185896106b6565b61042b91906111d0565b610745565b600191505092915050565b6104453382610c1d565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104cf90611272565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546105999061116f565b80601f01602080910402602001604051908101604052809291908181526020018280546105c59061116f565b80156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b5050505050905090565b60008061062761073d565b9050600061063582866106b6565b90508381101561067a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067190611304565b60405180910390fd5b6106878286868403610745565b60019250505092915050565b60008061069e61073d565b90506106ab81858561099c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90611396565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c90611428565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109039190610fd7565b60405180910390a3505050565b600061091c84846106b6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109965781811015610988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097f90611494565b60405180910390fd5b6109958484848403610745565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390611526565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a73906115b8565b60405180910390fd5b610a87838383610df4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b049061164a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ba091906111d0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c049190610fd7565b60405180910390a3610c17848484610df9565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906116dc565b60405180910390fd5b610c9982600083610df4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d169061176e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d76919061178e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ddb9190610fd7565b60405180910390a3610def83600084610df9565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e38578082015181840152602081019050610e1d565b83811115610e47576000848401525b50505050565b6000601f19601f8301169050919050565b6000610e6982610dfe565b610e738185610e09565b9350610e83818560208601610e1a565b610e8c81610e4d565b840191505092915050565b60006020820190508181036000830152610eb18184610e5e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ee982610ebe565b9050919050565b610ef981610ede565b8114610f0457600080fd5b50565b600081359050610f1681610ef0565b92915050565b6000819050919050565b610f2f81610f1c565b8114610f3a57600080fd5b50565b600081359050610f4c81610f26565b92915050565b60008060408385031215610f6957610f68610eb9565b5b6000610f7785828601610f07565b9250506020610f8885828601610f3d565b9150509250929050565b60008115159050919050565b610fa781610f92565b82525050565b6000602082019050610fc26000830184610f9e565b92915050565b610fd181610f1c565b82525050565b6000602082019050610fec6000830184610fc8565b92915050565b60008060006060848603121561100b5761100a610eb9565b5b600061101986828701610f07565b935050602061102a86828701610f07565b925050604061103b86828701610f3d565b9150509250925092565b600060ff82169050919050565b61105b81611045565b82525050565b60006020820190506110766000830184611052565b92915050565b60006020828403121561109257611091610eb9565b5b60006110a084828501610f3d565b91505092915050565b6000602082840312156110bf576110be610eb9565b5b60006110cd84828501610f07565b91505092915050565b6110df81610ede565b82525050565b60006020820190506110fa60008301846110d6565b92915050565b6000806040838503121561111757611116610eb9565b5b600061112585828601610f07565b925050602061113685828601610f07565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061118757607f821691505b6020821081141561119b5761119a611140565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111db82610f1c565b91506111e683610f1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561121b5761121a6111a1565b5b828201905092915050565b7f596f7520617265206e6f7420746865206f776e65722c20627965210000000000600082015250565b600061125c601b83610e09565b915061126782611226565b602082019050919050565b6000602082019050818103600083015261128b8161124f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112ee602583610e09565b91506112f982611292565b604082019050919050565b6000602082019050818103600083015261131d816112e1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611380602483610e09565b915061138b82611324565b604082019050919050565b600060208201905081810360008301526113af81611373565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611412602283610e09565b915061141d826113b6565b604082019050919050565b6000602082019050818103600083015261144181611405565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061147e601d83610e09565b915061148982611448565b602082019050919050565b600060208201905081810360008301526114ad81611471565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611510602583610e09565b915061151b826114b4565b604082019050919050565b6000602082019050818103600083015261153f81611503565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006115a2602383610e09565b91506115ad82611546565b604082019050919050565b600060208201905081810360008301526115d181611595565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611634602683610e09565b915061163f826115d8565b604082019050919050565b6000602082019050818103600083015261166381611627565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006116c6602183610e09565b91506116d18261166a565b604082019050919050565b600060208201905081810360008301526116f5816116b9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611758602283610e09565b9150611763826116fc565b604082019050919050565b600060208201905081810360008301526117878161174b565b9050919050565b600061179982610f1c565b91506117a483610f1c565b9250828210156117b7576117b66111a1565b5b82820390509291505056fea264697066735822122027546e090244632dfb427250256981627d342cd5e81eaa5583e14ba05ef0281d64736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017e52c8eb6a00000000000000000000000000000000000000000000000000000000000000000d444f5241454d4f4e20434f494e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f4e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): DORAEMON COIN
Arg [1] : symbol (string): MON
Arg [2] : totalSupply (uint256): 420369000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000017e52c8eb6a00
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 444f5241454d4f4e20434f494e00000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d4f4e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17516:874:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9031:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7800:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9812:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7642:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10516:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18096:80;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18225:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7971:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17555:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6899:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11257:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8304:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8560:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6680:100;6734:13;6767:5;6760:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;:::o;9031:201::-;9114:4;9131:13;9147:12;:10;:12::i;:::-;9131:28;;9170:32;9179:5;9186:7;9195:6;9170:8;:32::i;:::-;9220:4;9213:11;;;9031:201;;;;:::o;7800:108::-;7861:7;7888:12;;7881:19;;7800:108;:::o;9812:295::-;9943:4;9960:15;9978:12;:10;:12::i;:::-;9960:30;;10001:38;10017:4;10023:7;10032:6;10001:15;:38::i;:::-;10050:27;10060:4;10066:2;10070:6;10050:9;:27::i;:::-;10095:4;10088:11;;;9812:295;;;;;:::o;7642:93::-;7700:5;7725:2;7718:9;;7642:93;:::o;10516:238::-;10604:4;10621:13;10637:12;:10;:12::i;:::-;10621:28;;10660:64;10669:5;10676:7;10713:10;10685:25;10695:5;10702:7;10685:9;:25::i;:::-;:38;;;;:::i;:::-;10660:8;:64::i;:::-;10742:4;10735:11;;;10516:238;;;;:::o;18096:80::-;18144:24;18150:10;18162:5;18144;:24::i;:::-;18096:80;:::o;18225:160::-;18000:5;;;;;;;;;;;17986:19;;:10;:19;;;17978:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;18369:8:::1;18361:5;;:16;;;;;;;;;;;;;;;;;;18225:160:::0;:::o;7971:127::-;8045:7;8072:9;:18;8082:7;8072:18;;;;;;;;;;;;;;;;8065:25;;7971:127;;;:::o;17555:21::-;;;;;;;;;;;;;:::o;6899:104::-;6955:13;6988:7;6981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6899:104;:::o;11257:436::-;11350:4;11367:13;11383:12;:10;:12::i;:::-;11367:28;;11406:24;11433:25;11443:5;11450:7;11433:9;:25::i;:::-;11406:52;;11497:15;11477:16;:35;;11469:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11590:60;11599:5;11606:7;11634:15;11615:16;:34;11590:8;:60::i;:::-;11681:4;11674:11;;;;11257:436;;;;:::o;8304:193::-;8383:4;8400:13;8416:12;:10;:12::i;:::-;8400:28;;8439;8449:5;8456:2;8460:6;8439:9;:28::i;:::-;8485:4;8478:11;;;8304:193;;;;:::o;8560:151::-;8649:7;8676:11;:18;8688:5;8676:18;;;;;;;;;;;;;;;:27;8695:7;8676:27;;;;;;;;;;;;;;;;8669:34;;8560:151;;;;:::o;710:98::-;763:7;790:10;783:17;;710:98;:::o;14882:380::-;15035:1;15018:19;;:5;:19;;;;15010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15116:1;15097:21;;:7;:21;;;;15089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15200:6;15170:11;:18;15182:5;15170:18;;;;;;;;;;;;;;;:27;15189:7;15170:27;;;;;;;;;;;;;;;:36;;;;15238:7;15222:32;;15231:5;15222:32;;;15247:6;15222:32;;;;;;:::i;:::-;;;;;;;;14882:380;;;:::o;15553:453::-;15688:24;15715:25;15725:5;15732:7;15715:9;:25::i;:::-;15688:52;;15775:17;15755:16;:37;15751:248;;15837:6;15817:16;:26;;15809:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15921:51;15930:5;15937:7;15965:6;15946:16;:25;15921:8;:51::i;:::-;15751:248;15677:329;15553:453;;;:::o;12163:671::-;12310:1;12294:18;;:4;:18;;;;12286:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12387:1;12373:16;;:2;:16;;;;12365:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:38;12463:4;12469:2;12473:6;12442:20;:38::i;:::-;12493:19;12515:9;:15;12525:4;12515:15;;;;;;;;;;;;;;;;12493:37;;12564:6;12549:11;:21;;12541:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12681:6;12667:11;:20;12649:9;:15;12659:4;12649:15;;;;;;;;;;;;;;;:38;;;;12726:6;12709:9;:13;12719:2;12709:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12765:2;12750:26;;12759:4;12750:26;;;12769:6;12750:26;;;;;;:::i;:::-;;;;;;;;12789:37;12809:4;12815:2;12819:6;12789:19;:37::i;:::-;12275:559;12163:671;;;:::o;13853:591::-;13956:1;13937:21;;:7;:21;;;;13929:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14009:49;14030:7;14047:1;14051:6;14009:20;:49::i;:::-;14071:22;14096:9;:18;14106:7;14096:18;;;;;;;;;;;;;;;;14071:43;;14151:6;14133:14;:24;;14125:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14270:6;14253:14;:23;14232:9;:18;14242:7;14232:18;;;;;;;;;;;;;;;:44;;;;14314:6;14298:12;;:22;;;;;;;:::i;:::-;;;;;;;;14364:1;14338:37;;14347:7;14338:37;;;14368:6;14338:37;;;;;;:::i;:::-;;;;;;;;14388:48;14408:7;14425:1;14429:6;14388:19;:48::i;:::-;13918:526;13853:591;;:::o;16606:125::-;;;;:::o;17335:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:177::-;7552:29;7548:1;7540:6;7536:14;7529:53;7412:177;:::o;7595:366::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:419::-;8133:4;8171:2;8160:9;8156:18;8148:26;;8220:9;8214:4;8210:20;8206:1;8195:9;8191:17;8184:47;8248:131;8374:4;8248:131;:::i;:::-;8240:139;;7967:419;;;:::o;8392:224::-;8532:34;8528:1;8520:6;8516:14;8509:58;8601:7;8596:2;8588:6;8584:15;8577:32;8392:224;:::o;8622:366::-;8764:3;8785:67;8849:2;8844:3;8785:67;:::i;:::-;8778:74;;8861:93;8950:3;8861:93;:::i;:::-;8979:2;8974:3;8970:12;8963:19;;8622:366;;;:::o;8994:419::-;9160:4;9198:2;9187:9;9183:18;9175:26;;9247:9;9241:4;9237:20;9233:1;9222:9;9218:17;9211:47;9275:131;9401:4;9275:131;:::i;:::-;9267:139;;8994:419;;;:::o;9419:223::-;9559:34;9555:1;9547:6;9543:14;9536:58;9628:6;9623:2;9615:6;9611:15;9604:31;9419:223;:::o;9648:366::-;9790:3;9811:67;9875:2;9870:3;9811:67;:::i;:::-;9804:74;;9887:93;9976:3;9887:93;:::i;:::-;10005:2;10000:3;9996:12;9989:19;;9648:366;;;:::o;10020:419::-;10186:4;10224:2;10213:9;10209:18;10201:26;;10273:9;10267:4;10263:20;10259:1;10248:9;10244:17;10237:47;10301:131;10427:4;10301:131;:::i;:::-;10293:139;;10020:419;;;:::o;10445:221::-;10585:34;10581:1;10573:6;10569:14;10562:58;10654:4;10649:2;10641:6;10637:15;10630:29;10445:221;:::o;10672:366::-;10814:3;10835:67;10899:2;10894:3;10835:67;:::i;:::-;10828:74;;10911:93;11000:3;10911:93;:::i;:::-;11029:2;11024:3;11020:12;11013:19;;10672:366;;;:::o;11044:419::-;11210:4;11248:2;11237:9;11233:18;11225:26;;11297:9;11291:4;11287:20;11283:1;11272:9;11268:17;11261:47;11325:131;11451:4;11325:131;:::i;:::-;11317:139;;11044:419;;;:::o;11469:179::-;11609:31;11605:1;11597:6;11593:14;11586:55;11469:179;:::o;11654:366::-;11796:3;11817:67;11881:2;11876:3;11817:67;:::i;:::-;11810:74;;11893:93;11982:3;11893:93;:::i;:::-;12011:2;12006:3;12002:12;11995:19;;11654:366;;;:::o;12026:419::-;12192:4;12230:2;12219:9;12215:18;12207:26;;12279:9;12273:4;12269:20;12265:1;12254:9;12250:17;12243:47;12307:131;12433:4;12307:131;:::i;:::-;12299:139;;12026:419;;;:::o;12451:224::-;12591:34;12587:1;12579:6;12575:14;12568:58;12660:7;12655:2;12647:6;12643:15;12636:32;12451:224;:::o;12681:366::-;12823:3;12844:67;12908:2;12903:3;12844:67;:::i;:::-;12837:74;;12920:93;13009:3;12920:93;:::i;:::-;13038:2;13033:3;13029:12;13022:19;;12681:366;;;:::o;13053:419::-;13219:4;13257:2;13246:9;13242:18;13234:26;;13306:9;13300:4;13296:20;13292:1;13281:9;13277:17;13270:47;13334:131;13460:4;13334:131;:::i;:::-;13326:139;;13053:419;;;:::o;13478:222::-;13618:34;13614:1;13606:6;13602:14;13595:58;13687:5;13682:2;13674:6;13670:15;13663:30;13478:222;:::o;13706:366::-;13848:3;13869:67;13933:2;13928:3;13869:67;:::i;:::-;13862:74;;13945:93;14034:3;13945:93;:::i;:::-;14063:2;14058:3;14054:12;14047:19;;13706:366;;;:::o;14078:419::-;14244:4;14282:2;14271:9;14267:18;14259:26;;14331:9;14325:4;14321:20;14317:1;14306:9;14302:17;14295:47;14359:131;14485:4;14359:131;:::i;:::-;14351:139;;14078:419;;;:::o;14503:225::-;14643:34;14639:1;14631:6;14627:14;14620:58;14712:8;14707:2;14699:6;14695:15;14688:33;14503:225;:::o;14734:366::-;14876:3;14897:67;14961:2;14956:3;14897:67;:::i;:::-;14890:74;;14973:93;15062:3;14973:93;:::i;:::-;15091:2;15086:3;15082:12;15075:19;;14734:366;;;:::o;15106:419::-;15272:4;15310:2;15299:9;15295:18;15287:26;;15359:9;15353:4;15349:20;15345:1;15334:9;15330:17;15323:47;15387:131;15513:4;15387:131;:::i;:::-;15379:139;;15106:419;;;:::o;15531:220::-;15671:34;15667:1;15659:6;15655:14;15648:58;15740:3;15735:2;15727:6;15723:15;15716:28;15531:220;:::o;15757:366::-;15899:3;15920:67;15984:2;15979:3;15920:67;:::i;:::-;15913:74;;15996:93;16085:3;15996:93;:::i;:::-;16114:2;16109:3;16105:12;16098:19;;15757:366;;;:::o;16129:419::-;16295:4;16333:2;16322:9;16318:18;16310:26;;16382:9;16376:4;16372:20;16368:1;16357:9;16353:17;16346:47;16410:131;16536:4;16410:131;:::i;:::-;16402:139;;16129:419;;;:::o;16554:221::-;16694:34;16690:1;16682:6;16678:14;16671:58;16763:4;16758:2;16750:6;16746:15;16739:29;16554:221;:::o;16781:366::-;16923:3;16944:67;17008:2;17003:3;16944:67;:::i;:::-;16937:74;;17020:93;17109:3;17020:93;:::i;:::-;17138:2;17133:3;17129:12;17122:19;;16781:366;;;:::o;17153:419::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17153:419;;;:::o;17578:191::-;17618:4;17638:20;17656:1;17638:20;:::i;:::-;17633:25;;17672:20;17690:1;17672:20;:::i;:::-;17667:25;;17711:1;17708;17705:8;17702:34;;;17716:18;;:::i;:::-;17702:34;17761:1;17758;17754:9;17746:17;;17578:191;;;;:::o

Swarm Source

ipfs://27546e090244632dfb427250256981627d342cd5e81eaa5583e14ba05ef0281d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.