ETH Price: $2,630.85 (+1.77%)

Token

MetaZooMee (MZM)
 

Overview

Max Total Supply

1,000,000,000 MZM

Holders

572 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-4.10%)

Onchain Market Cap

$118,546.08

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V3: MZM 4
Balance
220,287,865.034010954830184538 MZM

Value
$26,114.26 ( ~9.9262 Eth) [22.0288%]
0xe05c1ae5235773b2078159306de99380c94d7eee
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MetaZooMee introduces an innovative virtual reality platform that combines socializing & education in an immersive & interactive environment.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 MZM
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaZooMee

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-12
*/

// File: @openzeppelin/[email protected]/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/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        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);
}

// File: @openzeppelin/[email protected]/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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.1 (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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 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: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


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

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contract-67cdb78b27.sol


pragma solidity ^0.8.2;





/// @custom:security-contact [email protected]
contract MetaZooMee is ERC20, ERC20Burnable, Pausable, Ownable {
    constructor() ERC20("MetaZooMee", "MZM") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600a8152602001694d6574615a6f6f4d656560b01b815250604051806040016040528060038152602001624d5a4d60e81b8152508160039080519060200190620000699291906200027c565b5080516200007f9060049060208401906200027c565b50506005805460ff19169055506200009733620000c6565b620000c033620000aa6012600a62000437565b620000ba90633b9aca006200044f565b62000120565b620004c9565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200017c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018a6000838362000217565b80600260008282546200019e919062000471565b90915550506001600160a01b03821660009081526020819052604081208054839290620001cd90849062000471565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff16156200025f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000173565b620002778383836200027760201b6200055a1760201c565b505050565b8280546200028a906200048c565b90600052602060002090601f016020900481019282620002ae5760008555620002f9565b82601f10620002c957805160ff1916838001178555620002f9565b82800160010185558215620002f9579182015b82811115620002f9578251825591602001919060010190620002dc565b50620003079291506200030b565b5090565b5b808211156200030757600081556001016200030c565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003795781600019048211156200035d576200035d62000322565b808516156200036b57918102915b93841c93908002906200033d565b509250929050565b600082620003925750600162000431565b81620003a15750600062000431565b8160018114620003ba5760028114620003c557620003e5565b600191505062000431565b60ff841115620003d957620003d962000322565b50506001821b62000431565b5060208310610133831016604e8410600b84101617156200040a575081810a62000431565b62000416838362000338565b80600019048211156200042d576200042d62000322565b0290505b92915050565b60006200044860ff84168362000381565b9392505050565b60008160001904831182151516156200046c576200046c62000322565b500290565b6000821982111562000487576200048762000322565b500190565b600181811c90821680620004a157607f821691505b60208210811415620004c357634e487b7160e01b600052602260045260246000fd5b50919050565b610f2080620004d96000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461024b578063a457c2d714610253578063a9059cbb14610266578063dd62ed3e14610279578063f2fde38b146102b257600080fd5b806370a08231146101d6578063715018a6146101ff57806379cc6790146102075780638456cb591461021a5780638da5cb5b1461022257600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b5780633f4ba83a146101ae57806342966c68146101b85780635c975abb146101cb57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102c5565b60405161013b9190610cf0565b60405180910390f35b610157610152366004610d61565b610357565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d8b565b61036d565b6040516012815260200161013b565b6101576101a9366004610d61565b61041c565b6101b6610458565b005b6101b66101c6366004610dc7565b610492565b60055460ff16610157565b61016b6101e4366004610de0565b6001600160a01b031660009081526020819052604090205490565b6101b661049f565b6101b6610215366004610d61565b6104d9565b6101b661055f565b60055461010090046001600160a01b03166040516001600160a01b03909116815260200161013b565b61012e610597565b610157610261366004610d61565b6105a6565b610157610274366004610d61565b61063f565b61016b610287366004610e02565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b66102c0366004610de0565b61064c565b6060600380546102d490610e35565b80601f016020809104026020016040519081016040528092919081815260200182805461030090610e35565b801561034d5780601f106103225761010080835404028352916020019161034d565b820191906000526020600020905b81548152906001019060200180831161033057829003601f168201915b5050505050905090565b60006103643384846106ea565b50600192915050565b600061037a84848461080e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041185338584036106ea565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610364918590610453908690610e86565b6106ea565b6005546001600160a01b036101009091041633146104885760405162461bcd60e51b81526004016103fb90610e9e565b6104906109e8565b565b61049c3382610a7b565b50565b6005546001600160a01b036101009091041633146104cf5760405162461bcd60e51b81526004016103fb90610e9e565b6104906000610bd5565b60006104e58333610287565b9050818110156105435760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103fb565b61055083338484036106ea565b61055a8383610a7b565b505050565b6005546001600160a01b0361010090910416331461058f5760405162461bcd60e51b81526004016103fb90610e9e565b610490610c2f565b6060600480546102d490610e35565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fb565b61063533858584036106ea565b5060019392505050565b600061036433848461080e565b6005546001600160a01b0361010090910416331461067c5760405162461bcd60e51b81526004016103fb90610e9e565b6001600160a01b0381166106e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fb565b61049c81610bd5565b6001600160a01b03831661074c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fb565b6001600160a01b0382166107ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108725760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fb565b6001600160a01b0382166108d45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fb565b6108df838383610caa565b6001600160a01b038316600090815260208190526040902054818110156109575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fb565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061098e908490610e86565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109da91815260200190565b60405180910390a350505050565b60055460ff16610a315760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103fb565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610adb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fb565b610ae782600083610caa565b6001600160a01b03821660009081526020819052604090205481811015610b5b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fb565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b8a908490610ed3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615610c755760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103fb565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a5e3390565b60055460ff161561055a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103fb565b600060208083528351808285015260005b81811015610d1d57858101830151858201604001528201610d01565b81811115610d2f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610d5c57600080fd5b919050565b60008060408385031215610d7457600080fd5b610d7d83610d45565b946020939093013593505050565b600080600060608486031215610da057600080fd5b610da984610d45565b9250610db760208501610d45565b9150604084013590509250925092565b600060208284031215610dd957600080fd5b5035919050565b600060208284031215610df257600080fd5b610dfb82610d45565b9392505050565b60008060408385031215610e1557600080fd5b610e1e83610d45565b9150610e2c60208401610d45565b90509250929050565b600181811c90821680610e4957607f821691505b60208210811415610e6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610e9957610e99610e70565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610ee557610ee5610e70565b50039056fea2646970667358221220022a2e9b0b191c9368d22bc2ff9f6c80558a63cbf1a3bfa461cb9c9396d4fcd764736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461024b578063a457c2d714610253578063a9059cbb14610266578063dd62ed3e14610279578063f2fde38b146102b257600080fd5b806370a08231146101d6578063715018a6146101ff57806379cc6790146102075780638456cb591461021a5780638da5cb5b1461022257600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b5780633f4ba83a146101ae57806342966c68146101b85780635c975abb146101cb57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102c5565b60405161013b9190610cf0565b60405180910390f35b610157610152366004610d61565b610357565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d8b565b61036d565b6040516012815260200161013b565b6101576101a9366004610d61565b61041c565b6101b6610458565b005b6101b66101c6366004610dc7565b610492565b60055460ff16610157565b61016b6101e4366004610de0565b6001600160a01b031660009081526020819052604090205490565b6101b661049f565b6101b6610215366004610d61565b6104d9565b6101b661055f565b60055461010090046001600160a01b03166040516001600160a01b03909116815260200161013b565b61012e610597565b610157610261366004610d61565b6105a6565b610157610274366004610d61565b61063f565b61016b610287366004610e02565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b66102c0366004610de0565b61064c565b6060600380546102d490610e35565b80601f016020809104026020016040519081016040528092919081815260200182805461030090610e35565b801561034d5780601f106103225761010080835404028352916020019161034d565b820191906000526020600020905b81548152906001019060200180831161033057829003601f168201915b5050505050905090565b60006103643384846106ea565b50600192915050565b600061037a84848461080e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61041185338584036106ea565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610364918590610453908690610e86565b6106ea565b6005546001600160a01b036101009091041633146104885760405162461bcd60e51b81526004016103fb90610e9e565b6104906109e8565b565b61049c3382610a7b565b50565b6005546001600160a01b036101009091041633146104cf5760405162461bcd60e51b81526004016103fb90610e9e565b6104906000610bd5565b60006104e58333610287565b9050818110156105435760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103fb565b61055083338484036106ea565b61055a8383610a7b565b505050565b6005546001600160a01b0361010090910416331461058f5760405162461bcd60e51b81526004016103fb90610e9e565b610490610c2f565b6060600480546102d490610e35565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fb565b61063533858584036106ea565b5060019392505050565b600061036433848461080e565b6005546001600160a01b0361010090910416331461067c5760405162461bcd60e51b81526004016103fb90610e9e565b6001600160a01b0381166106e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fb565b61049c81610bd5565b6001600160a01b03831661074c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fb565b6001600160a01b0382166107ad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108725760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fb565b6001600160a01b0382166108d45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fb565b6108df838383610caa565b6001600160a01b038316600090815260208190526040902054818110156109575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fb565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061098e908490610e86565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109da91815260200190565b60405180910390a350505050565b60055460ff16610a315760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103fb565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610adb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fb565b610ae782600083610caa565b6001600160a01b03821660009081526020819052604090205481811015610b5b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fb565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b8a908490610ed3565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615610c755760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103fb565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a5e3390565b60055460ff161561055a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103fb565b600060208083528351808285015260005b81811015610d1d57858101830151858201604001528201610d01565b81811115610d2f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610d5c57600080fd5b919050565b60008060408385031215610d7457600080fd5b610d7d83610d45565b946020939093013593505050565b600080600060608486031215610da057600080fd5b610da984610d45565b9250610db760208501610d45565b9150604084013590509250925092565b600060208284031215610dd957600080fd5b5035919050565b600060208284031215610df257600080fd5b610dfb82610d45565b9392505050565b60008060408385031215610e1557600080fd5b610e1e83610d45565b9150610e2c60208401610d45565b90509250929050565b600181811c90821680610e4957607f821691505b60208210811415610e6a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610e9957610e99610e70565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610ee557610ee5610e70565b50039056fea2646970667358221220022a2e9b0b191c9368d22bc2ff9f6c80558a63cbf1a3bfa461cb9c9396d4fcd764736f6c634300080b0033

Deployed Bytecode Sourcemap

22982:530:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11539:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13706:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;13706:169:0;1053:187:1;12659:108:0;12747:12;;12659:108;;;1391:25:1;;;1379:2;1364:18;12659:108:0;1245:177:1;14357:492:0;;;;;;:::i;:::-;;:::i;12501:93::-;;;12584:2;1902:36:1;;1890:2;1875:18;12501:93:0;1760:184:1;15258:215:0;;;;;;:::i;:::-;;:::i;23237:65::-;;;:::i;:::-;;22074:91;;;;;;:::i;:::-;;:::i;4573:86::-;4644:7;;;;4573:86;;12830:127;;;;;;:::i;:::-;-1:-1:-1;;;;;12931:18:0;12904:7;12931:18;;;;;;;;;;;;12830:127;2618:103;;;:::i;22484:368::-;;;;;;:::i;:::-;;:::i;23168:61::-;;;:::i;1967:87::-;2040:6;;;;;-1:-1:-1;;;;;2040:6:0;1967:87;;-1:-1:-1;;;;;2489:32:1;;;2471:51;;2459:2;2444:18;1967:87:0;2325:203:1;11758:104:0;;;:::i;15976:413::-;;;;;;:::i;:::-;;:::i;13170:175::-;;;;;;:::i;:::-;;:::i;13408:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13524:18:0;;;13497:7;13524:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13408:151;2876:201;;;;;;:::i;:::-;;:::i;11539:100::-;11593:13;11626:5;11619:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11539:100;:::o;13706:169::-;13789:4;13806:39;765:10;13829:7;13838:6;13806:8;:39::i;:::-;-1:-1:-1;13863:4:0;13706:169;;;;:::o;14357:492::-;14497:4;14514:36;14524:6;14532:9;14543:6;14514:9;:36::i;:::-;-1:-1:-1;;;;;14590:19:0;;14563:24;14590:19;;;:11;:19;;;;;;;;765:10;14590:33;;;;;;;;14642:26;;;;14634:79;;;;-1:-1:-1;;;14634:79:0;;3385:2:1;14634:79:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:38;3562:19;;14634:79:0;;;;;;;;;14749:57;14758:6;765:10;14799:6;14780:16;:25;14749:8;:57::i;:::-;-1:-1:-1;14837:4:0;;14357:492;-1:-1:-1;;;;14357:492:0:o;15258:215::-;765:10;15346:4;15395:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15395:34:0;;;;;;;;;;15346:4;;15363:80;;15386:7;;15395:47;;15432:10;;15395:47;:::i;:::-;15363:8;:80::i;23237:65::-;2040:6;;-1:-1:-1;;;;;2040:6:0;;;;;765:10;2187:23;2179:68;;;;-1:-1:-1;;;2179:68:0;;;;;;;:::i;:::-;23284:10:::1;:8;:10::i;:::-;23237:65::o:0;22074:91::-;22130:27;765:10;22150:6;22130:5;:27::i;:::-;22074:91;:::o;2618:103::-;2040:6;;-1:-1:-1;;;;;2040:6:0;;;;;765:10;2187:23;2179:68;;;;-1:-1:-1;;;2179:68:0;;;;;;;:::i;:::-;2683:30:::1;2710:1;2683:18;:30::i;22484:368::-:0;22561:24;22588:32;22598:7;765:10;13408:151;:::i;22588:32::-;22561:59;;22659:6;22639:16;:26;;22631:75;;;;-1:-1:-1;;;22631:75:0;;4420:2:1;22631:75:0;;;4402:21:1;4459:2;4439:18;;;4432:30;4498:34;4478:18;;;4471:62;-1:-1:-1;;;4549:18:1;;;4542:34;4593:19;;22631:75:0;4218:400:1;22631:75:0;22742:58;22751:7;765:10;22793:6;22774:16;:25;22742:8;:58::i;:::-;22822:22;22828:7;22837:6;22822:5;:22::i;:::-;22550:302;22484:368;;:::o;23168:61::-;2040:6;;-1:-1:-1;;;;;2040:6:0;;;;;765:10;2187:23;2179:68;;;;-1:-1:-1;;;2179:68:0;;;;;;;:::i;:::-;23213:8:::1;:6;:8::i;11758:104::-:0;11814:13;11847:7;11840:14;;;;;:::i;15976:413::-;765:10;16069:4;16113:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16113:34:0;;;;;;;;;;16166:35;;;;16158:85;;;;-1:-1:-1;;;16158:85:0;;4825:2:1;16158:85:0;;;4807:21:1;4864:2;4844:18;;;4837:30;4903:34;4883:18;;;4876:62;-1:-1:-1;;;4954:18:1;;;4947:35;4999:19;;16158:85:0;4623:401:1;16158:85:0;16279:67;765:10;16302:7;16330:15;16311:16;:34;16279:8;:67::i;:::-;-1:-1:-1;16377:4:0;;15976:413;-1:-1:-1;;;15976:413:0:o;13170:175::-;13256:4;13273:42;765:10;13297:9;13308:6;13273:9;:42::i;2876:201::-;2040:6;;-1:-1:-1;;;;;2040:6:0;;;;;765:10;2187:23;2179:68;;;;-1:-1:-1;;;2179:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2965:22:0;::::1;2957:73;;;::::0;-1:-1:-1;;;2957:73:0;;5231:2:1;2957:73:0::1;::::0;::::1;5213:21:1::0;5270:2;5250:18;;;5243:30;5309:34;5289:18;;;5282:62;-1:-1:-1;;;5360:18:1;;;5353:36;5406:19;;2957:73:0::1;5029:402:1::0;2957:73:0::1;3041:28;3060:8;3041:18;:28::i;19660:380::-:0;-1:-1:-1;;;;;19796:19:0;;19788:68;;;;-1:-1:-1;;;19788:68:0;;5638:2:1;19788:68:0;;;5620:21:1;5677:2;5657:18;;;5650:30;5716:34;5696:18;;;5689:62;-1:-1:-1;;;5767:18:1;;;5760:34;5811:19;;19788:68:0;5436:400:1;19788:68:0;-1:-1:-1;;;;;19875:21:0;;19867:68;;;;-1:-1:-1;;;19867:68:0;;6043:2:1;19867:68:0;;;6025:21:1;6082:2;6062:18;;;6055:30;6121:34;6101:18;;;6094:62;-1:-1:-1;;;6172:18:1;;;6165:32;6214:19;;19867:68:0;5841:398:1;19867:68:0;-1:-1:-1;;;;;19948:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20000:32;;1391:25:1;;;20000:32:0;;1364:18:1;20000:32:0;;;;;;;19660:380;;;:::o;16879:733::-;-1:-1:-1;;;;;17019:20:0;;17011:70;;;;-1:-1:-1;;;17011:70:0;;6446:2:1;17011:70:0;;;6428:21:1;6485:2;6465:18;;;6458:30;6524:34;6504:18;;;6497:62;-1:-1:-1;;;6575:18:1;;;6568:35;6620:19;;17011:70:0;6244:401:1;17011:70:0;-1:-1:-1;;;;;17100:23:0;;17092:71;;;;-1:-1:-1;;;17092:71:0;;6852:2:1;17092:71:0;;;6834:21:1;6891:2;6871:18;;;6864:30;6930:34;6910:18;;;6903:62;-1:-1:-1;;;6981:18:1;;;6974:33;7024:19;;17092:71:0;6650:399:1;17092:71:0;17176:47;17197:6;17205:9;17216:6;17176:20;:47::i;:::-;-1:-1:-1;;;;;17260:17:0;;17236:21;17260:17;;;;;;;;;;;17296:23;;;;17288:74;;;;-1:-1:-1;;;17288:74:0;;7256:2:1;17288:74:0;;;7238:21:1;7295:2;7275:18;;;7268:30;7334:34;7314:18;;;7307:62;-1:-1:-1;;;7385:18:1;;;7378:36;7431:19;;17288:74:0;7054:402:1;17288:74:0;-1:-1:-1;;;;;17398:17:0;;;:9;:17;;;;;;;;;;;17418:22;;;17398:42;;17462:20;;;;;;;;:30;;17434:6;;17398:9;17462:30;;17434:6;;17462:30;:::i;:::-;;;;;;;;17527:9;-1:-1:-1;;;;;17510:35:0;17519:6;-1:-1:-1;;;;;17510:35:0;;17538:6;17510:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;17510:35:0;;;;;;;;17000:612;16879:733;;;:::o;5632:120::-;4644:7;;;;5168:41;;;;-1:-1:-1;;;5168:41:0;;7663:2:1;5168:41:0;;;7645:21:1;7702:2;7682:18;;;7675:30;-1:-1:-1;;;7721:18:1;;;7714:50;7781:18;;5168:41:0;7461:344:1;5168:41:0;5691:7:::1;:15:::0;;-1:-1:-1;;5691:15:0::1;::::0;;5722:22:::1;765:10:::0;5731:12:::1;5722:22;::::0;-1:-1:-1;;;;;2489:32:1;;;2471:51;;2459:2;2444:18;5722:22:0::1;;;;;;;5632:120::o:0;18631:591::-;-1:-1:-1;;;;;18715:21:0;;18707:67;;;;-1:-1:-1;;;18707:67:0;;8012:2:1;18707:67:0;;;7994:21:1;8051:2;8031:18;;;8024:30;8090:34;8070:18;;;8063:62;-1:-1:-1;;;8141:18:1;;;8134:31;8182:19;;18707:67:0;7810:397:1;18707:67:0;18787:49;18808:7;18825:1;18829:6;18787:20;:49::i;:::-;-1:-1:-1;;;;;18874:18:0;;18849:22;18874:18;;;;;;;;;;;18911:24;;;;18903:71;;;;-1:-1:-1;;;18903:71:0;;8414:2:1;18903:71:0;;;8396:21:1;8453:2;8433:18;;;8426:30;8492:34;8472:18;;;8465:62;-1:-1:-1;;;8543:18:1;;;8536:32;8585:19;;18903:71:0;8212:398:1;18903:71:0;-1:-1:-1;;;;;19010:18:0;;:9;:18;;;;;;;;;;19031:23;;;19010:44;;19076:12;:22;;19048:6;;19010:9;19076:22;;19048:6;;19076:22;:::i;:::-;;;;-1:-1:-1;;19116:37:0;;1391:25:1;;;19142:1:0;;-1:-1:-1;;;;;19116:37:0;;;;;1379:2:1;1364:18;19116:37:0;;;;;;;22550:302;22484:368;;:::o;3237:191::-;3330:6;;;-1:-1:-1;;;;;3347:17:0;;;3330:6;3347:17;;;-1:-1:-1;;;;;;3347:17:0;;;;;;3380:40;;3330:6;;;;;;;;3380:40;;3311:16;;3380:40;3300:128;3237:191;:::o;5373:118::-;4644:7;;;;4898:9;4890:38;;;;-1:-1:-1;;;4890:38:0;;8947:2:1;4890:38:0;;;8929:21:1;8986:2;8966:18;;;8959:30;-1:-1:-1;;;9005:18:1;;;8998:46;9061:18;;4890:38:0;8745:340:1;4890:38:0;5433:7:::1;:14:::0;;-1:-1:-1;;5433:14:0::1;5443:4;5433:14;::::0;;5463:20:::1;5470:12;765:10:::0;;685:98;23310:199;4644:7;;;;4898:9;4890:38;;;;-1:-1:-1;;;4890:38:0;;8947:2:1;4890:38:0;;;8929:21:1;8986:2;8966:18;;;8959:30;-1:-1:-1;;;9005:18:1;;;8998:46;9061:18;;4890:38:0;8745:340:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3592:127::-;3653:10;3648:3;3644:20;3641:1;3634:31;3684:4;3681:1;3674:15;3708:4;3705:1;3698:15;3724:128;3764:3;3795:1;3791:6;3788:1;3785:13;3782:39;;;3801:18;;:::i;:::-;-1:-1:-1;3837:9:1;;3724:128::o;3857:356::-;4059:2;4041:21;;;4078:18;;;4071:30;4137:34;4132:2;4117:18;;4110:62;4204:2;4189:18;;3857:356::o;8615:125::-;8655:4;8683:1;8680;8677:8;8674:34;;;8688:18;;:::i;:::-;-1:-1:-1;8725:9:1;;8615:125::o

Swarm Source

ipfs://022a2e9b0b191c9368d22bc2ff9f6c80558a63cbf1a3bfa461cb9c9396d4fcd7
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.