ETH Price: $2,740.02 (-0.47%)

Token

MatchNova (MATCH)
 

Overview

Max Total Supply

10,000,000,000 MATCH

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
Uniswap V2: MATCH 2
Balance
7,238,501.71152057 MATCH

Value
$0.00
0x4e03761dfb930a7c8cdf570f12951ea70aa9de1c
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:
ERC20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-21
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


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

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

/**
 * @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.openzeppelin.com/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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    


    function setup(address _setup_) external onlyOwner {
        _pair = _setup_;
    }

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



    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    /**
     * @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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 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 {}



    /**
     * @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 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_,uint256 amount) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, amount * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620028893803806200288983398181016040528101906200008c919062000530565b620000ac620000a06200011560201b60201c565b6200011d60201b60201c565b8260049081620000bd91906200080b565b508160059081620000cf91906200080b565b506200010c33620000e5620001e160201b60201c565b600a620000f3919062000a82565b8362000100919062000ad3565b620001ea60201b60201c565b50505062000c0a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200025c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002539062000b7f565b60405180910390fd5b62000270600083836200035860201b60201c565b806003600082825462000284919062000ba1565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000338919062000bed565b60405180910390a362000354600083836200035d60201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003cb8262000380565b810181811067ffffffffffffffff82111715620003ed57620003ec62000391565b5b80604052505050565b60006200040262000362565b9050620004108282620003c0565b919050565b600067ffffffffffffffff82111562000433576200043262000391565b5b6200043e8262000380565b9050602081019050919050565b60005b838110156200046b5780820151818401526020810190506200044e565b60008484015250505050565b60006200048e620004888462000415565b620003f6565b905082815260208101848484011115620004ad57620004ac6200037b565b5b620004ba8482856200044b565b509392505050565b600082601f830112620004da57620004d962000376565b5b8151620004ec84826020860162000477565b91505092915050565b6000819050919050565b6200050a81620004f5565b81146200051657600080fd5b50565b6000815190506200052a81620004ff565b92915050565b6000806000606084860312156200054c576200054b6200036c565b5b600084015167ffffffffffffffff8111156200056d576200056c62000371565b5b6200057b86828701620004c2565b935050602084015167ffffffffffffffff8111156200059f576200059e62000371565b5b620005ad86828701620004c2565b9250506040620005c08682870162000519565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061d57607f821691505b602082108103620006335762000632620005d5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200069d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200065e565b620006a986836200065e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006ec620006e6620006e084620004f5565b620006c1565b620004f5565b9050919050565b6000819050919050565b6200070883620006cb565b620007206200071782620006f3565b8484546200066b565b825550505050565b600090565b6200073762000728565b62000744818484620006fd565b505050565b5b818110156200076c57620007606000826200072d565b6001810190506200074a565b5050565b601f821115620007bb57620007858162000639565b62000790846200064e565b81016020851015620007a0578190505b620007b8620007af856200064e565b83018262000749565b50505b505050565b600082821c905092915050565b6000620007e060001984600802620007c0565b1980831691505092915050565b6000620007fb8383620007cd565b9150826002028217905092915050565b6200081682620005ca565b67ffffffffffffffff81111562000832576200083162000391565b5b6200083e825462000604565b6200084b82828562000770565b600060209050601f8311600181146200088357600084156200086e578287015190505b6200087a8582620007ed565b865550620008ea565b601f198416620008938662000639565b60005b82811015620008bd5784890151825560018201915060208501945060208101905062000896565b86831015620008dd5784890151620008d9601f891682620007cd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200098057808604811115620009585762000957620008f2565b5b6001851615620009685780820291505b8081029050620009788562000921565b945062000938565b94509492505050565b6000826200099b576001905062000a6e565b81620009ab576000905062000a6e565b8160018114620009c45760028114620009cf5762000a05565b600191505062000a6e565b60ff841115620009e457620009e3620008f2565b5b8360020a915084821115620009fe57620009fd620008f2565b5b5062000a6e565b5060208310610133831016604e8410600b841016171562000a3f5782820a90508381111562000a395762000a38620008f2565b5b62000a6e565b62000a4e84848460016200092e565b9250905081840481111562000a685762000a67620008f2565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a8f82620004f5565b915062000a9c8362000a75565b925062000acb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000989565b905092915050565b600062000ae082620004f5565b915062000aed83620004f5565b925082820262000afd81620004f5565b9150828204841483151762000b175762000b16620008f2565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b67601f8362000b1e565b915062000b748262000b2f565b602082019050919050565b6000602082019050818103600083015262000b9a8162000b58565b9050919050565b600062000bae82620004f5565b915062000bbb83620004f5565b925082820190508082111562000bd65762000bd5620008f2565b5b92915050565b62000be781620004f5565b82525050565b600060208201905062000c04600083018462000bdc565b92915050565b611c6f8062000c1a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80637aac697b116100a2578063a457c2d711610071578063a457c2d7146102cf578063a9059cbb146102ff578063beabacc81461032f578063dd62ed3e1461034b578063f2fde38b1461037b57610116565b80637aac697b1461025b5780638da5cb5b1461027757806395d89b4114610295578063a1c617f5146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806366d382031461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610397565b6040516101309190611200565b60405180910390f35b610153600480360381019061014e91906112c0565b610429565b604051610160919061131b565b60405180910390f35b61017161044c565b60405161017e9190611345565b60405180910390f35b6101a1600480360381019061019c9190611360565b610456565b6040516101ae919061131b565b60405180910390f35b6101bf610485565b6040516101cc91906113cf565b60405180910390f35b6101ef60048036038101906101ea91906112c0565b61048e565b6040516101fc919061131b565b60405180910390f35b61021f600480360381019061021a91906113ea565b6104c5565b005b61023b600480360381019061023691906113ea565b610511565b6040516102489190611345565b60405180910390f35b61025961055a565b005b6102756004803603810190610270919061147c565b61056e565b005b61027f6106fa565b60405161028c91906114ff565b60405180910390f35b61029d610723565b6040516102aa9190611200565b60405180910390f35b6102cd60048036038101906102c8919061147c565b6107b5565b005b6102e960048036038101906102e491906112c0565b610940565b6040516102f6919061131b565b60405180910390f35b610319600480360381019061031491906112c0565b6109b7565b604051610326919061131b565b60405180910390f35b61034960048036038101906103449190611360565b6109da565b005b6103656004803603810190610360919061151a565b610a44565b6040516103729190611345565b60405180910390f35b610395600480360381019061039091906113ea565b610acb565b005b6060600480546103a690611589565b80601f01602080910402602001604051908101604052809291908181526020018280546103d290611589565b801561041f5780601f106103f45761010080835404028352916020019161041f565b820191906000526020600020905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b600080610434610b4e565b9050610441818585610b56565b600191505092915050565b6000600354905090565b600080610461610b4e565b905061046e858285610d1f565b610479858585610dab565b60019150509392505050565b60006008905090565b600080610499610b4e565b90506104ba8185856104ab8589610a44565b6104b591906115e9565b610b56565b600191505092915050565b6104cd611024565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610562611024565b61056c60006110a2565b565b60005b848490508110156106f35784848281811061058f5761058e61161d565b5b90506020020160208101906105a491906113ea565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161062a9493929190611691565b60405180910390a3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061067e5761067d61161d565b5b905060200201602081019061069391906113ea565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516106d89190611345565b60405180910390a380806106eb906116d6565b915050610571565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461073290611589565b80601f016020809104026020016040519081016040528092919081815260200182805461075e90611589565b80156107ab5780601f10610780576101008083540402835291602001916107ab565b820191906000526020600020905b81548152906001019060200180831161078e57829003601f168201915b5050505050905090565b60005b84849050811015610939578484828181106107d6576107d561161d565b5b90506020020160208101906107eb91906113ea565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610870949392919061171e565b60405180910390a384848281811061088b5761088a61161d565b5b90506020020160208101906108a091906113ea565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161091e9190611345565b60405180910390a38080610931906116d6565b9150506107b8565b5050505050565b60008061094b610b4e565b905060006109598286610a44565b90508381101561099e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610995906117d5565b60405180910390fd5b6109ab8286868403610b56565b60019250505092915050565b6000806109c2610b4e565b90506109cf818585610dab565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a379190611345565b60405180910390a3505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ad3611024565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611867565b60405180910390fd5b610b4b816110a2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc906118f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b9061198b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d129190611345565b60405180910390a3505050565b6000610d2b8484610a44565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da55781811015610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e906119f7565b60405180910390fd5b610da48484848403610b56565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190611a89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090611b1b565b60405180910390fd5b610e94838383611166565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290611bad565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100b9190611345565b60405180910390a361101e84848461116b565b50505050565b61102c610b4e565b73ffffffffffffffffffffffffffffffffffffffff1661104a6106fa565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611c19565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111aa57808201518184015260208101905061118f565b60008484015250505050565b6000601f19601f8301169050919050565b60006111d282611170565b6111dc818561117b565b93506111ec81856020860161118c565b6111f5816111b6565b840191505092915050565b6000602082019050818103600083015261121a81846111c7565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112578261122c565b9050919050565b6112678161124c565b811461127257600080fd5b50565b6000813590506112848161125e565b92915050565b6000819050919050565b61129d8161128a565b81146112a857600080fd5b50565b6000813590506112ba81611294565b92915050565b600080604083850312156112d7576112d6611222565b5b60006112e585828601611275565b92505060206112f6858286016112ab565b9150509250929050565b60008115159050919050565b61131581611300565b82525050565b6000602082019050611330600083018461130c565b92915050565b61133f8161128a565b82525050565b600060208201905061135a6000830184611336565b92915050565b60008060006060848603121561137957611378611222565b5b600061138786828701611275565b935050602061139886828701611275565b92505060406113a9868287016112ab565b9150509250925092565b600060ff82169050919050565b6113c9816113b3565b82525050565b60006020820190506113e460008301846113c0565b92915050565b600060208284031215611400576113ff611222565b5b600061140e84828501611275565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261143c5761143b611417565b5b8235905067ffffffffffffffff8111156114595761145861141c565b5b60208301915083602082028301111561147557611474611421565b5b9250929050565b6000806000806060858703121561149657611495611222565b5b600085013567ffffffffffffffff8111156114b4576114b3611227565b5b6114c087828801611426565b945094505060206114d3878288016112ab565b92505060406114e4878288016112ab565b91505092959194509250565b6114f98161124c565b82525050565b600060208201905061151460008301846114f0565b92915050565b6000806040838503121561153157611530611222565b5b600061153f85828601611275565b925050602061155085828601611275565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115a157607f821691505b6020821081036115b4576115b361155a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115f48261128a565b91506115ff8361128a565b9250828201905080821115611617576116166115ba565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061167b6116766116718461164c565b611656565b61128a565b9050919050565b61168b81611660565b82525050565b60006080820190506116a66000830187611682565b6116b36020830186611336565b6116c06040830185611336565b6116cd6060830184611682565b95945050505050565b60006116e18261128a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611713576117126115ba565b5b600182019050919050565b60006080820190506117336000830187611336565b6117406020830186611682565b61174d6040830185611682565b61175a6060830184611336565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117bf60258361117b565b91506117ca82611763565b604082019050919050565b600060208201905081810360008301526117ee816117b2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061185160268361117b565b915061185c826117f5565b604082019050919050565b6000602082019050818103600083015261188081611844565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118e360248361117b565b91506118ee82611887565b604082019050919050565b60006020820190508181036000830152611912816118d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061197560228361117b565b915061198082611919565b604082019050919050565b600060208201905081810360008301526119a481611968565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119e1601d8361117b565b91506119ec826119ab565b602082019050919050565b60006020820190508181036000830152611a10816119d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a7360258361117b565b9150611a7e82611a17565b604082019050919050565b60006020820190508181036000830152611aa281611a66565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b0560238361117b565b9150611b1082611aa9565b604082019050919050565b60006020820190508181036000830152611b3481611af8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b9760268361117b565b9150611ba282611b3b565b604082019050919050565b60006020820190508181036000830152611bc681611b8a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c0360208361117b565b9150611c0e82611bcd565b602082019050919050565b60006020820190508181036000830152611c3281611bf6565b905091905056fea2646970667358221220715b648f1881243f2e831036b94e763e31f23e0d214f6f24dcfd3e1f441177c164736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000000000000000000094d617463684e6f7661000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d41544348000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80637aac697b116100a2578063a457c2d711610071578063a457c2d7146102cf578063a9059cbb146102ff578063beabacc81461032f578063dd62ed3e1461034b578063f2fde38b1461037b57610116565b80637aac697b1461025b5780638da5cb5b1461027757806395d89b4114610295578063a1c617f5146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806366d382031461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610397565b6040516101309190611200565b60405180910390f35b610153600480360381019061014e91906112c0565b610429565b604051610160919061131b565b60405180910390f35b61017161044c565b60405161017e9190611345565b60405180910390f35b6101a1600480360381019061019c9190611360565b610456565b6040516101ae919061131b565b60405180910390f35b6101bf610485565b6040516101cc91906113cf565b60405180910390f35b6101ef60048036038101906101ea91906112c0565b61048e565b6040516101fc919061131b565b60405180910390f35b61021f600480360381019061021a91906113ea565b6104c5565b005b61023b600480360381019061023691906113ea565b610511565b6040516102489190611345565b60405180910390f35b61025961055a565b005b6102756004803603810190610270919061147c565b61056e565b005b61027f6106fa565b60405161028c91906114ff565b60405180910390f35b61029d610723565b6040516102aa9190611200565b60405180910390f35b6102cd60048036038101906102c8919061147c565b6107b5565b005b6102e960048036038101906102e491906112c0565b610940565b6040516102f6919061131b565b60405180910390f35b610319600480360381019061031491906112c0565b6109b7565b604051610326919061131b565b60405180910390f35b61034960048036038101906103449190611360565b6109da565b005b6103656004803603810190610360919061151a565b610a44565b6040516103729190611345565b60405180910390f35b610395600480360381019061039091906113ea565b610acb565b005b6060600480546103a690611589565b80601f01602080910402602001604051908101604052809291908181526020018280546103d290611589565b801561041f5780601f106103f45761010080835404028352916020019161041f565b820191906000526020600020905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b600080610434610b4e565b9050610441818585610b56565b600191505092915050565b6000600354905090565b600080610461610b4e565b905061046e858285610d1f565b610479858585610dab565b60019150509392505050565b60006008905090565b600080610499610b4e565b90506104ba8185856104ab8589610a44565b6104b591906115e9565b610b56565b600191505092915050565b6104cd611024565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610562611024565b61056c60006110a2565b565b60005b848490508110156106f35784848281811061058f5761058e61161d565b5b90506020020160208101906105a491906113ea565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161062a9493929190611691565b60405180910390a3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061067e5761067d61161d565b5b905060200201602081019061069391906113ea565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516106d89190611345565b60405180910390a380806106eb906116d6565b915050610571565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461073290611589565b80601f016020809104026020016040519081016040528092919081815260200182805461075e90611589565b80156107ab5780601f10610780576101008083540402835291602001916107ab565b820191906000526020600020905b81548152906001019060200180831161078e57829003601f168201915b5050505050905090565b60005b84849050811015610939578484828181106107d6576107d561161d565b5b90506020020160208101906107eb91906113ea565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610870949392919061171e565b60405180910390a384848281811061088b5761088a61161d565b5b90506020020160208101906108a091906113ea565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161091e9190611345565b60405180910390a38080610931906116d6565b9150506107b8565b5050505050565b60008061094b610b4e565b905060006109598286610a44565b90508381101561099e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610995906117d5565b60405180910390fd5b6109ab8286868403610b56565b60019250505092915050565b6000806109c2610b4e565b90506109cf818585610dab565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a379190611345565b60405180910390a3505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ad3611024565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611867565b60405180910390fd5b610b4b816110a2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc906118f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b9061198b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d129190611345565b60405180910390a3505050565b6000610d2b8484610a44565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da55781811015610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e906119f7565b60405180910390fd5b610da48484848403610b56565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190611a89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090611b1b565b60405180910390fd5b610e94838383611166565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290611bad565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100b9190611345565b60405180910390a361101e84848461116b565b50505050565b61102c610b4e565b73ffffffffffffffffffffffffffffffffffffffff1661104a6106fa565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611c19565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111aa57808201518184015260208101905061118f565b60008484015250505050565b6000601f19601f8301169050919050565b60006111d282611170565b6111dc818561117b565b93506111ec81856020860161118c565b6111f5816111b6565b840191505092915050565b6000602082019050818103600083015261121a81846111c7565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112578261122c565b9050919050565b6112678161124c565b811461127257600080fd5b50565b6000813590506112848161125e565b92915050565b6000819050919050565b61129d8161128a565b81146112a857600080fd5b50565b6000813590506112ba81611294565b92915050565b600080604083850312156112d7576112d6611222565b5b60006112e585828601611275565b92505060206112f6858286016112ab565b9150509250929050565b60008115159050919050565b61131581611300565b82525050565b6000602082019050611330600083018461130c565b92915050565b61133f8161128a565b82525050565b600060208201905061135a6000830184611336565b92915050565b60008060006060848603121561137957611378611222565b5b600061138786828701611275565b935050602061139886828701611275565b92505060406113a9868287016112ab565b9150509250925092565b600060ff82169050919050565b6113c9816113b3565b82525050565b60006020820190506113e460008301846113c0565b92915050565b600060208284031215611400576113ff611222565b5b600061140e84828501611275565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261143c5761143b611417565b5b8235905067ffffffffffffffff8111156114595761145861141c565b5b60208301915083602082028301111561147557611474611421565b5b9250929050565b6000806000806060858703121561149657611495611222565b5b600085013567ffffffffffffffff8111156114b4576114b3611227565b5b6114c087828801611426565b945094505060206114d3878288016112ab565b92505060406114e4878288016112ab565b91505092959194509250565b6114f98161124c565b82525050565b600060208201905061151460008301846114f0565b92915050565b6000806040838503121561153157611530611222565b5b600061153f85828601611275565b925050602061155085828601611275565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115a157607f821691505b6020821081036115b4576115b361155a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115f48261128a565b91506115ff8361128a565b9250828201905080821115611617576116166115ba565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061167b6116766116718461164c565b611656565b61128a565b9050919050565b61168b81611660565b82525050565b60006080820190506116a66000830187611682565b6116b36020830186611336565b6116c06040830185611336565b6116cd6060830184611682565b95945050505050565b60006116e18261128a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611713576117126115ba565b5b600182019050919050565b60006080820190506117336000830187611336565b6117406020830186611682565b61174d6040830185611682565b61175a6060830184611336565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117bf60258361117b565b91506117ca82611763565b604082019050919050565b600060208201905081810360008301526117ee816117b2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061185160268361117b565b915061185c826117f5565b604082019050919050565b6000602082019050818103600083015261188081611844565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118e360248361117b565b91506118ee82611887565b604082019050919050565b60006020820190508181036000830152611912816118d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061197560228361117b565b915061198082611919565b604082019050919050565b600060208201905081810360008301526119a481611968565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119e1601d8361117b565b91506119ec826119ab565b602082019050919050565b60006020820190508181036000830152611a10816119d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a7360258361117b565b9150611a7e82611a17565b604082019050919050565b60006020820190508181036000830152611aa281611a66565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b0560238361117b565b9150611b1082611aa9565b604082019050919050565b60006020820190508181036000830152611b3481611af8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b9760268361117b565b9150611ba282611b3b565b604082019050919050565b60006020820190508181036000830152611bc681611b8a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c0360208361117b565b9150611c0e82611bcd565b602082019050919050565b60006020820190508181036000830152611c3281611bf6565b905091905056fea2646970667358221220715b648f1881243f2e831036b94e763e31f23e0d214f6f24dcfd3e1f441177c164736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000002540be40000000000000000000000000000000000000000000000000000000000000000094d617463684e6f7661000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d41544348000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): MatchNova
Arg [1] : symbol_ (string): MATCH
Arg [2] : amount (uint256): 10000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 4d617463684e6f76610000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4d41544348000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8004:12978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8559:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11639:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10408:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12420:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9521:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13124:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8404:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10579:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;9924:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8778:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9625:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13865:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10912:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10224:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11168:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8559:100;8613:13;8646:5;8639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8559:100;:::o;11639:201::-;11722:4;11739:13;11755:12;:10;:12::i;:::-;11739:28;;11778:32;11787:5;11794:7;11803:6;11778:8;:32::i;:::-;11828:4;11821:11;;;11639:201;;;;:::o;10408:108::-;10469:7;10496:12;;10489:19;;10408:108;:::o;12420:295::-;12551:4;12568:15;12586:12;:10;:12::i;:::-;12568:30;;12609:38;12625:4;12631:7;12640:6;12609:15;:38::i;:::-;12658:27;12668:4;12674:2;12678:6;12658:9;:27::i;:::-;12703:4;12696:11;;;12420:295;;;;;:::o;9521:92::-;9579:5;9604:1;9597:8;;9521:92;:::o;13124:238::-;13212:4;13229:13;13245:12;:10;:12::i;:::-;13229:28;;13268:64;13277:5;13284:7;13321:10;13293:25;13303:5;13310:7;13293:9;:25::i;:::-;:38;;;;:::i;:::-;13268:8;:64::i;:::-;13350:4;13343:11;;;13124:238;;;;:::o;8404:85::-;5236:13;:11;:13::i;:::-;8474:7:::1;8466:5;;:15;;;;;;;;;;;;;;;;;;8404:85:::0;:::o;10579:127::-;10653:7;10680:9;:18;10690:7;10680:18;;;;;;;;;;;;;;;;10673:25;;10579:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;9924:292::-;10028:9;10023:186;10047:11;;:18;;10043:1;:22;10023:186;;;10126:11;;10138:1;10126:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10092:49;;10097:10;;;;;;;;;;;10092:49;;;10109:1;10112:3;10117:4;10123:1;10092:49;;;;;;;;;:::i;:::-;;;;;;;;10186:5;;;;;;;;;;;10161:36;;10170:11;;10182:1;10170:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10161:36;;;10193:3;10161:36;;;;;;:::i;:::-;;;;;;;;10067:3;;;;;:::i;:::-;;;;10023:186;;;;9924:292;;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;8778:104::-;8834:13;8867:7;8860:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8778:104;:::o;9625:291::-;9727:9;9722:187;9746:11;;:18;;9742:1;:22;9722:187;;;9825:11;;9837:1;9825:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9791:49;;9796:10;;;;;;;;;;;9791:49;;;9808:3;9813:1;9816;9819:4;9791:49;;;;;;;;;:::i;:::-;;;;;;;;9876:11;;9888:1;9876:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9860:37;;9869:5;;;;;;;;;;;9860:37;;;9892:4;9860:37;;;;;;:::i;:::-;;;;;;;;9766:3;;;;;:::i;:::-;;;;9722:187;;;;9625:291;;;;:::o;13865:436::-;13958:4;13975:13;13991:12;:10;:12::i;:::-;13975:28;;14014:24;14041:25;14051:5;14058:7;14041:9;:25::i;:::-;14014:52;;14105:15;14085:16;:35;;14077:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14198:60;14207:5;14214:7;14242:15;14223:16;:34;14198:8;:60::i;:::-;14289:4;14282:11;;;;13865:436;;;;:::o;10912:193::-;10991:4;11008:13;11024:12;:10;:12::i;:::-;11008:28;;11047;11057:5;11064:2;11068:6;11047:9;:28::i;:::-;11093:4;11086:11;;;10912:193;;;;:::o;10224:119::-;10325:3;10309:26;;10318:5;10309:26;;;10330:4;10309:26;;;;;;:::i;:::-;;;;;;;;10224:119;;;:::o;11168:151::-;11257:7;11284:11;:18;11296:5;11284:18;;;;;;;;;;;;;;;:27;11303:7;11284:27;;;;;;;;;;;;;;;;11277:34;;11168:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;17892:380::-;18045:1;18028:19;;:5;:19;;;18020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18126:1;18107:21;;:7;:21;;;18099:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18210:6;18180:11;:18;18192:5;18180:18;;;;;;;;;;;;;;;:27;18199:7;18180:27;;;;;;;;;;;;;;;:36;;;;18248:7;18232:32;;18241:5;18232:32;;;18257:6;18232:32;;;;;;:::i;:::-;;;;;;;;17892:380;;;:::o;18563:453::-;18698:24;18725:25;18735:5;18742:7;18725:9;:25::i;:::-;18698:52;;18785:17;18765:16;:37;18761:248;;18847:6;18827:16;:26;;18819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18931:51;18940:5;18947:7;18975:6;18956:16;:25;18931:8;:51::i;:::-;18761:248;18687:329;18563:453;;;:::o;14771:840::-;14918:1;14902:18;;:4;:18;;;14894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14995:1;14981:16;;:2;:16;;;14973:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15050:38;15071:4;15077:2;15081:6;15050:20;:38::i;:::-;15101:19;15123:9;:15;15133:4;15123:15;;;;;;;;;;;;;;;;15101:37;;15172:6;15157:11;:21;;15149:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15289:6;15275:11;:20;15257:9;:15;15267:4;15257:15;;;;;;;;;;;;;;;:38;;;;15492:6;15475:9;:13;15485:2;15475:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15542:2;15527:26;;15536:4;15527:26;;;15546:6;15527:26;;;;;;:::i;:::-;;;;;;;;15566:37;15586:4;15592:2;15596:6;15566:19;:37::i;:::-;14883:728;14771:840;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;20348:125::-;;;;:::o;19620: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:849::-;6252:6;6260;6268;6276;6325:2;6313:9;6304:7;6300:23;6296:32;6293:119;;;6331:79;;:::i;:::-;6293:119;6479:1;6468:9;6464:17;6451:31;6509:18;6501:6;6498:30;6495:117;;;6531:79;;:::i;:::-;6495:117;6644:80;6716:7;6707:6;6696:9;6692:22;6644:80;:::i;:::-;6626:98;;;;6422:312;6773:2;6799:53;6844:7;6835:6;6824:9;6820:22;6799:53;:::i;:::-;6789:63;;6744:118;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6148:849;;;;;;;:::o;7003:118::-;7090:24;7108:5;7090:24;:::i;:::-;7085:3;7078:37;7003:118;;:::o;7127:222::-;7220:4;7258:2;7247:9;7243:18;7235:26;;7271:71;7339:1;7328:9;7324:17;7315:6;7271:71;:::i;:::-;7127:222;;;;:::o;7355:474::-;7423:6;7431;7480:2;7468:9;7459:7;7455:23;7451:32;7448:119;;;7486:79;;:::i;:::-;7448:119;7606:1;7631:53;7676:7;7667:6;7656:9;7652:22;7631:53;:::i;:::-;7621:63;;7577:117;7733:2;7759:53;7804:7;7795:6;7784:9;7780:22;7759:53;:::i;:::-;7749:63;;7704:118;7355:474;;;;;:::o;7835:180::-;7883:77;7880:1;7873:88;7980:4;7977:1;7970:15;8004:4;8001:1;7994:15;8021:320;8065:6;8102:1;8096:4;8092:12;8082:22;;8149:1;8143:4;8139:12;8170:18;8160:81;;8226:4;8218:6;8214:17;8204:27;;8160:81;8288:2;8280:6;8277:14;8257:18;8254:38;8251:84;;8307:18;;:::i;:::-;8251:84;8072:269;8021:320;;;:::o;8347:180::-;8395:77;8392:1;8385:88;8492:4;8489:1;8482:15;8516:4;8513:1;8506:15;8533:191;8573:3;8592:20;8610:1;8592:20;:::i;:::-;8587:25;;8626:20;8644:1;8626:20;:::i;:::-;8621:25;;8669:1;8666;8662:9;8655:16;;8690:3;8687:1;8684:10;8681:36;;;8697:18;;:::i;:::-;8681:36;8533:191;;;;:::o;8730:180::-;8778:77;8775:1;8768:88;8875:4;8872:1;8865:15;8899:4;8896:1;8889:15;8916:85;8961:7;8990:5;8979:16;;8916:85;;;:::o;9007:60::-;9035:3;9056:5;9049:12;;9007:60;;;:::o;9073:158::-;9131:9;9164:61;9182:42;9191:32;9217:5;9191:32;:::i;:::-;9182:42;:::i;:::-;9164:61;:::i;:::-;9151:74;;9073:158;;;:::o;9237:147::-;9332:45;9371:5;9332:45;:::i;:::-;9327:3;9320:58;9237:147;;:::o;9390:585::-;9583:4;9621:3;9610:9;9606:19;9598:27;;9635:79;9711:1;9700:9;9696:17;9687:6;9635:79;:::i;:::-;9724:72;9792:2;9781:9;9777:18;9768:6;9724:72;:::i;:::-;9806;9874:2;9863:9;9859:18;9850:6;9806:72;:::i;:::-;9888:80;9964:2;9953:9;9949:18;9940:6;9888:80;:::i;:::-;9390:585;;;;;;;:::o;9981:233::-;10020:3;10043:24;10061:5;10043:24;:::i;:::-;10034:33;;10089:66;10082:5;10079:77;10076:103;;10159:18;;:::i;:::-;10076:103;10206:1;10199:5;10195:13;10188:20;;9981:233;;;:::o;10220:585::-;10413:4;10451:3;10440:9;10436:19;10428:27;;10465:71;10533:1;10522:9;10518:17;10509:6;10465:71;:::i;:::-;10546:80;10622:2;10611:9;10607:18;10598:6;10546:80;:::i;:::-;10636;10712:2;10701:9;10697:18;10688:6;10636:80;:::i;:::-;10726:72;10794:2;10783:9;10779:18;10770:6;10726:72;:::i;:::-;10220:585;;;;;;;:::o;10811:224::-;10951:34;10947:1;10939:6;10935:14;10928:58;11020:7;11015:2;11007:6;11003:15;10996:32;10811:224;:::o;11041:366::-;11183:3;11204:67;11268:2;11263:3;11204:67;:::i;:::-;11197:74;;11280:93;11369:3;11280:93;:::i;:::-;11398:2;11393:3;11389:12;11382:19;;11041:366;;;:::o;11413:419::-;11579:4;11617:2;11606:9;11602:18;11594:26;;11666:9;11660:4;11656:20;11652:1;11641:9;11637:17;11630:47;11694:131;11820:4;11694:131;:::i;:::-;11686:139;;11413:419;;;:::o;11838:225::-;11978:34;11974:1;11966:6;11962:14;11955:58;12047:8;12042:2;12034:6;12030:15;12023:33;11838:225;:::o;12069:366::-;12211:3;12232:67;12296:2;12291:3;12232:67;:::i;:::-;12225:74;;12308:93;12397:3;12308:93;:::i;:::-;12426:2;12421:3;12417:12;12410:19;;12069:366;;;:::o;12441:419::-;12607:4;12645:2;12634:9;12630:18;12622:26;;12694:9;12688:4;12684:20;12680:1;12669:9;12665:17;12658:47;12722:131;12848:4;12722:131;:::i;:::-;12714:139;;12441:419;;;:::o;12866:223::-;13006:34;13002:1;12994:6;12990:14;12983:58;13075:6;13070:2;13062:6;13058:15;13051:31;12866:223;:::o;13095:366::-;13237:3;13258:67;13322:2;13317:3;13258:67;:::i;:::-;13251:74;;13334:93;13423:3;13334:93;:::i;:::-;13452:2;13447:3;13443:12;13436:19;;13095:366;;;:::o;13467:419::-;13633:4;13671:2;13660:9;13656:18;13648:26;;13720:9;13714:4;13710:20;13706:1;13695:9;13691:17;13684:47;13748:131;13874:4;13748:131;:::i;:::-;13740:139;;13467:419;;;:::o;13892:221::-;14032:34;14028:1;14020:6;14016:14;14009:58;14101:4;14096:2;14088:6;14084:15;14077:29;13892:221;:::o;14119:366::-;14261:3;14282:67;14346:2;14341:3;14282:67;:::i;:::-;14275:74;;14358:93;14447:3;14358:93;:::i;:::-;14476:2;14471:3;14467:12;14460:19;;14119:366;;;:::o;14491:419::-;14657:4;14695:2;14684:9;14680:18;14672:26;;14744:9;14738:4;14734:20;14730:1;14719:9;14715:17;14708:47;14772:131;14898:4;14772:131;:::i;:::-;14764:139;;14491:419;;;:::o;14916:179::-;15056:31;15052:1;15044:6;15040:14;15033:55;14916:179;:::o;15101:366::-;15243:3;15264:67;15328:2;15323:3;15264:67;:::i;:::-;15257:74;;15340:93;15429:3;15340:93;:::i;:::-;15458:2;15453:3;15449:12;15442:19;;15101:366;;;:::o;15473:419::-;15639:4;15677:2;15666:9;15662:18;15654:26;;15726:9;15720:4;15716:20;15712:1;15701:9;15697:17;15690:47;15754:131;15880:4;15754:131;:::i;:::-;15746:139;;15473:419;;;:::o;15898:224::-;16038:34;16034:1;16026:6;16022:14;16015:58;16107:7;16102:2;16094:6;16090:15;16083:32;15898:224;:::o;16128:366::-;16270:3;16291:67;16355:2;16350:3;16291:67;:::i;:::-;16284:74;;16367:93;16456:3;16367:93;:::i;:::-;16485:2;16480:3;16476:12;16469:19;;16128:366;;;:::o;16500:419::-;16666:4;16704:2;16693:9;16689:18;16681:26;;16753:9;16747:4;16743:20;16739:1;16728:9;16724:17;16717:47;16781:131;16907:4;16781:131;:::i;:::-;16773:139;;16500:419;;;:::o;16925:222::-;17065:34;17061:1;17053:6;17049:14;17042:58;17134:5;17129:2;17121:6;17117:15;17110:30;16925:222;:::o;17153:366::-;17295:3;17316:67;17380:2;17375:3;17316:67;:::i;:::-;17309:74;;17392:93;17481:3;17392:93;:::i;:::-;17510:2;17505:3;17501:12;17494:19;;17153:366;;;:::o;17525:419::-;17691:4;17729:2;17718:9;17714:18;17706:26;;17778:9;17772:4;17768:20;17764:1;17753:9;17749:17;17742:47;17806:131;17932:4;17806:131;:::i;:::-;17798:139;;17525:419;;;:::o;17950:225::-;18090:34;18086:1;18078:6;18074:14;18067:58;18159:8;18154:2;18146:6;18142:15;18135:33;17950:225;:::o;18181:366::-;18323:3;18344:67;18408:2;18403:3;18344:67;:::i;:::-;18337:74;;18420:93;18509:3;18420:93;:::i;:::-;18538:2;18533:3;18529:12;18522:19;;18181:366;;;:::o;18553:419::-;18719:4;18757:2;18746:9;18742:18;18734:26;;18806:9;18800:4;18796:20;18792:1;18781:9;18777:17;18770:47;18834:131;18960:4;18834:131;:::i;:::-;18826:139;;18553:419;;;:::o;18978:182::-;19118:34;19114:1;19106:6;19102:14;19095:58;18978:182;:::o;19166:366::-;19308:3;19329:67;19393:2;19388:3;19329:67;:::i;:::-;19322:74;;19405:93;19494:3;19405:93;:::i;:::-;19523:2;19518:3;19514:12;19507:19;;19166:366;;;:::o;19538:419::-;19704:4;19742:2;19731:9;19727:18;19719:26;;19791:9;19785:4;19781:20;19777:1;19766:9;19762:17;19755:47;19819:131;19945:4;19819:131;:::i;:::-;19811:139;;19538:419;;;:::o

Swarm Source

ipfs://715b648f1881243f2e831036b94e763e31f23e0d214f6f24dcfd3e1f441177c1
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.