ETH Price: $3,097.17 (+0.85%)
Gas: 3 Gwei

Token

Monk (MONK)
 

Overview

Max Total Supply

69,420,000,000,000 MONK

Holders

1,145 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
420 MONK

Value
$0.00
0x069b982b758118806a7f87301c9836860be64af8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MONK, the memecoin that emerged from the chaos of shitcoin degeneracy in crypto.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Monk

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-15
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 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 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/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


pragma solidity ^0.8.9;

contract Monk is ERC20, ERC20Burnable, Ownable {
    uint256 public immutable MaxSupply = 69420000000000 ether;

    constructor() ERC20("Monk", "MONK") {}

    function mint(address to, uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= MaxSupply, "MONK: Will exceed Max Supply");
        _mint(to, amount);
    }

    function burn(address from, uint256 amount) public onlyOwner {
        _burn(from, 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":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":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"from","type":"address"},{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526d036c341e1f992f96840fe00000006080908152503480156200002657600080fd5b506040518060400160405280600481526020017f4d6f6e6b000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4e4b000000000000000000000000000000000000000000000000000000008152508160039081620000a4919062000427565b508060049081620000b6919062000427565b505050620000d9620000cd620000df60201b60201c565b620000e760201b60201c565b6200050e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200022f57607f821691505b602082108103620002455762000244620001e7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000270565b620002bb868362000270565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200030862000302620002fc84620002d3565b620002dd565b620002d3565b9050919050565b6000819050919050565b6200032483620002e7565b6200033c62000333826200030f565b8484546200027d565b825550505050565b600090565b6200035362000344565b6200036081848462000319565b505050565b5b8181101562000388576200037c60008262000349565b60018101905062000366565b5050565b601f821115620003d757620003a1816200024b565b620003ac8462000260565b81016020851015620003bc578190505b620003d4620003cb8562000260565b83018262000365565b50505b505050565b600082821c905092915050565b6000620003fc60001984600802620003dc565b1980831691505092915050565b6000620004178383620003e9565b9150826002028217905092915050565b6200043282620001ad565b67ffffffffffffffff8111156200044e576200044d620001b8565b5b6200045a825462000216565b620004678282856200038c565b600060209050601f8311600181146200049f57600084156200048a578287015190505b62000496858262000409565b86555062000506565b601f198416620004af866200024b565b60005b82811015620004d957848901518255600182019150602085019450602081019050620004b2565b86831015620004f95784890151620004f5601f891682620003e9565b8355505b6001600288020188555050505b505050505050565b608051611d3a62000531600039600081816104f801526107770152611d3a6000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d7146102f6578063a9059cbb14610326578063b36c128414610356578063dd62ed3e14610374578063f2fde38b146103a457610121565b8063715018a61461027857806379cc6790146102825780638da5cb5b1461029e57806395d89b41146102bc5780639dc29fac146102da57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806340c10f191461021057806342966c681461022c57806370a082311461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c0565b60405161013b9190611292565b60405180910390f35b61015e6004803603810190610159919061134d565b610452565b60405161016b91906113a8565b60405180910390f35b61017c610475565b60405161018991906113d2565b60405180910390f35b6101ac60048036038101906101a791906113ed565b61047f565b6040516101b991906113a8565b60405180910390f35b6101ca6104ae565b6040516101d7919061145c565b60405180910390f35b6101fa60048036038101906101f5919061134d565b6104b7565b60405161020791906113a8565b60405180910390f35b61022a6004803603810190610225919061134d565b6104ee565b005b61024660048036038101906102419190611477565b610579565b005b610262600480360381019061025d91906114a4565b61058d565b60405161026f91906113d2565b60405180910390f35b6102806105d5565b005b61029c6004803603810190610297919061134d565b6105e9565b005b6102a6610609565b6040516102b391906114e0565b60405180910390f35b6102c4610633565b6040516102d19190611292565b60405180910390f35b6102f460048036038101906102ef919061134d565b6106c5565b005b610310600480360381019061030b919061134d565b6106db565b60405161031d91906113a8565b60405180910390f35b610340600480360381019061033b919061134d565b610752565b60405161034d91906113a8565b60405180910390f35b61035e610775565b60405161036b91906113d2565b60405180910390f35b61038e600480360381019061038991906114fb565b610799565b60405161039b91906113d2565b60405180910390f35b6103be60048036038101906103b991906114a4565b610820565b005b6060600380546103cf9061156a565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb9061156a565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b60008061045d6108a3565b905061046a8185856108ab565b600191505092915050565b6000600254905090565b60008061048a6108a3565b9050610497858285610a74565b6104a2858585610b00565b60019150509392505050565b60006012905090565b6000806104c26108a3565b90506104e38185856104d48589610799565b6104de91906115ca565b6108ab565b600191505092915050565b6104f6610d7f565b7f000000000000000000000000000000000000000000000000000000000000000081610520610475565b61052a91906115ca565b111561056b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105629061164a565b60405180910390fd5b6105758282610dfd565b5050565b61058a6105846108a3565b82610f5c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105dd610d7f565b6105e76000611132565b565b6105fb826105f56108a3565b83610a74565b6106058282610f5c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106429061156a565b80601f016020809104026020016040519081016040528092919081815260200182805461066e9061156a565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6106cd610d7f565b6106d78282610f5c565b5050565b6000806106e66108a3565b905060006106f48286610799565b905083811015610739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610730906116dc565b60405180910390fd5b61074682868684036108ab565b60019250505092915050565b60008061075d6108a3565b905061076a818585610b00565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610828610d7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e9061176e565b60405180910390fd5b6108a081611132565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190611800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098090611892565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a6791906113d2565b60405180910390a3505050565b6000610a808484610799565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afa5781811015610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906118fe565b60405180910390fd5b610af984848484036108ab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690611990565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590611a22565b60405180910390fd5b610be98383836111f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690611ab4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d0291906115ca565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6691906113d2565b60405180910390a3610d798484846111fd565b50505050565b610d876108a3565b73ffffffffffffffffffffffffffffffffffffffff16610da5610609565b73ffffffffffffffffffffffffffffffffffffffff1614610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290611b20565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390611b8c565b60405180910390fd5b610e78600083836111f8565b8060026000828254610e8a91906115ca565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610edf91906115ca565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f4491906113d2565b60405180910390a3610f58600083836111fd565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290611c1e565b60405180910390fd5b610fd7826000836111f8565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490611cb0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110b49190611cd0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111991906113d2565b60405180910390a361112d836000846111fd565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123c578082015181840152602081019050611221565b60008484015250505050565b6000601f19601f8301169050919050565b600061126482611202565b61126e818561120d565b935061127e81856020860161121e565b61128781611248565b840191505092915050565b600060208201905081810360008301526112ac8184611259565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112e4826112b9565b9050919050565b6112f4816112d9565b81146112ff57600080fd5b50565b600081359050611311816112eb565b92915050565b6000819050919050565b61132a81611317565b811461133557600080fd5b50565b60008135905061134781611321565b92915050565b60008060408385031215611364576113636112b4565b5b600061137285828601611302565b925050602061138385828601611338565b9150509250929050565b60008115159050919050565b6113a28161138d565b82525050565b60006020820190506113bd6000830184611399565b92915050565b6113cc81611317565b82525050565b60006020820190506113e760008301846113c3565b92915050565b600080600060608486031215611406576114056112b4565b5b600061141486828701611302565b935050602061142586828701611302565b925050604061143686828701611338565b9150509250925092565b600060ff82169050919050565b61145681611440565b82525050565b6000602082019050611471600083018461144d565b92915050565b60006020828403121561148d5761148c6112b4565b5b600061149b84828501611338565b91505092915050565b6000602082840312156114ba576114b96112b4565b5b60006114c884828501611302565b91505092915050565b6114da816112d9565b82525050565b60006020820190506114f560008301846114d1565b92915050565b60008060408385031215611512576115116112b4565b5b600061152085828601611302565b925050602061153185828601611302565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158257607f821691505b6020821081036115955761159461153b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115d582611317565b91506115e083611317565b92508282019050808211156115f8576115f761159b565b5b92915050565b7f4d4f4e4b3a2057696c6c20657863656564204d617820537570706c7900000000600082015250565b6000611634601c8361120d565b915061163f826115fe565b602082019050919050565b6000602082019050818103600083015261166381611627565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116c660258361120d565b91506116d18261166a565b604082019050919050565b600060208201905081810360008301526116f5816116b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061175860268361120d565b9150611763826116fc565b604082019050919050565b600060208201905081810360008301526117878161174b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117ea60248361120d565b91506117f58261178e565b604082019050919050565b60006020820190508181036000830152611819816117dd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061187c60228361120d565b915061188782611820565b604082019050919050565b600060208201905081810360008301526118ab8161186f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118e8601d8361120d565b91506118f3826118b2565b602082019050919050565b60006020820190508181036000830152611917816118db565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061197a60258361120d565b91506119858261191e565b604082019050919050565b600060208201905081810360008301526119a98161196d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a0c60238361120d565b9150611a17826119b0565b604082019050919050565b60006020820190508181036000830152611a3b816119ff565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a9e60268361120d565b9150611aa982611a42565b604082019050919050565b60006020820190508181036000830152611acd81611a91565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b0a60208361120d565b9150611b1582611ad4565b602082019050919050565b60006020820190508181036000830152611b3981611afd565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611b76601f8361120d565b9150611b8182611b40565b602082019050919050565b60006020820190508181036000830152611ba581611b69565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c0860218361120d565b9150611c1382611bac565b604082019050919050565b60006020820190508181036000830152611c3781611bfb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9a60228361120d565b9150611ca582611c3e565b604082019050919050565b60006020820190508181036000830152611cc981611c8d565b9050919050565b6000611cdb82611317565b9150611ce683611317565b9250828203905081811115611cfe57611cfd61159b565b5b9291505056fea26469706673582212200da335d271dacdd07cf5ddd5016ce6b95fe68090ac442afc90ee3641a7a7a26564736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d7146102f6578063a9059cbb14610326578063b36c128414610356578063dd62ed3e14610374578063f2fde38b146103a457610121565b8063715018a61461027857806379cc6790146102825780638da5cb5b1461029e57806395d89b41146102bc5780639dc29fac146102da57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806340c10f191461021057806342966c681461022c57806370a082311461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c0565b60405161013b9190611292565b60405180910390f35b61015e6004803603810190610159919061134d565b610452565b60405161016b91906113a8565b60405180910390f35b61017c610475565b60405161018991906113d2565b60405180910390f35b6101ac60048036038101906101a791906113ed565b61047f565b6040516101b991906113a8565b60405180910390f35b6101ca6104ae565b6040516101d7919061145c565b60405180910390f35b6101fa60048036038101906101f5919061134d565b6104b7565b60405161020791906113a8565b60405180910390f35b61022a6004803603810190610225919061134d565b6104ee565b005b61024660048036038101906102419190611477565b610579565b005b610262600480360381019061025d91906114a4565b61058d565b60405161026f91906113d2565b60405180910390f35b6102806105d5565b005b61029c6004803603810190610297919061134d565b6105e9565b005b6102a6610609565b6040516102b391906114e0565b60405180910390f35b6102c4610633565b6040516102d19190611292565b60405180910390f35b6102f460048036038101906102ef919061134d565b6106c5565b005b610310600480360381019061030b919061134d565b6106db565b60405161031d91906113a8565b60405180910390f35b610340600480360381019061033b919061134d565b610752565b60405161034d91906113a8565b60405180910390f35b61035e610775565b60405161036b91906113d2565b60405180910390f35b61038e600480360381019061038991906114fb565b610799565b60405161039b91906113d2565b60405180910390f35b6103be60048036038101906103b991906114a4565b610820565b005b6060600380546103cf9061156a565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb9061156a565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b60008061045d6108a3565b905061046a8185856108ab565b600191505092915050565b6000600254905090565b60008061048a6108a3565b9050610497858285610a74565b6104a2858585610b00565b60019150509392505050565b60006012905090565b6000806104c26108a3565b90506104e38185856104d48589610799565b6104de91906115ca565b6108ab565b600191505092915050565b6104f6610d7f565b7f000000000000000000000000000000000000036c341e1f992f96840fe000000081610520610475565b61052a91906115ca565b111561056b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105629061164a565b60405180910390fd5b6105758282610dfd565b5050565b61058a6105846108a3565b82610f5c565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105dd610d7f565b6105e76000611132565b565b6105fb826105f56108a3565b83610a74565b6106058282610f5c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106429061156a565b80601f016020809104026020016040519081016040528092919081815260200182805461066e9061156a565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b6106cd610d7f565b6106d78282610f5c565b5050565b6000806106e66108a3565b905060006106f48286610799565b905083811015610739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610730906116dc565b60405180910390fd5b61074682868684036108ab565b60019250505092915050565b60008061075d6108a3565b905061076a818585610b00565b600191505092915050565b7f000000000000000000000000000000000000036c341e1f992f96840fe000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610828610d7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e9061176e565b60405180910390fd5b6108a081611132565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190611800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098090611892565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a6791906113d2565b60405180910390a3505050565b6000610a808484610799565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afa5781811015610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae3906118fe565b60405180910390fd5b610af984848484036108ab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6690611990565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590611a22565b60405180910390fd5b610be98383836111f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690611ab4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d0291906115ca565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6691906113d2565b60405180910390a3610d798484846111fd565b50505050565b610d876108a3565b73ffffffffffffffffffffffffffffffffffffffff16610da5610609565b73ffffffffffffffffffffffffffffffffffffffff1614610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290611b20565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390611b8c565b60405180910390fd5b610e78600083836111f8565b8060026000828254610e8a91906115ca565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610edf91906115ca565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f4491906113d2565b60405180910390a3610f58600083836111fd565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290611c1e565b60405180910390fd5b610fd7826000836111f8565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490611cb0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110b49190611cd0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111991906113d2565b60405180910390a361112d836000846111fd565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561123c578082015181840152602081019050611221565b60008484015250505050565b6000601f19601f8301169050919050565b600061126482611202565b61126e818561120d565b935061127e81856020860161121e565b61128781611248565b840191505092915050565b600060208201905081810360008301526112ac8184611259565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112e4826112b9565b9050919050565b6112f4816112d9565b81146112ff57600080fd5b50565b600081359050611311816112eb565b92915050565b6000819050919050565b61132a81611317565b811461133557600080fd5b50565b60008135905061134781611321565b92915050565b60008060408385031215611364576113636112b4565b5b600061137285828601611302565b925050602061138385828601611338565b9150509250929050565b60008115159050919050565b6113a28161138d565b82525050565b60006020820190506113bd6000830184611399565b92915050565b6113cc81611317565b82525050565b60006020820190506113e760008301846113c3565b92915050565b600080600060608486031215611406576114056112b4565b5b600061141486828701611302565b935050602061142586828701611302565b925050604061143686828701611338565b9150509250925092565b600060ff82169050919050565b61145681611440565b82525050565b6000602082019050611471600083018461144d565b92915050565b60006020828403121561148d5761148c6112b4565b5b600061149b84828501611338565b91505092915050565b6000602082840312156114ba576114b96112b4565b5b60006114c884828501611302565b91505092915050565b6114da816112d9565b82525050565b60006020820190506114f560008301846114d1565b92915050565b60008060408385031215611512576115116112b4565b5b600061152085828601611302565b925050602061153185828601611302565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158257607f821691505b6020821081036115955761159461153b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115d582611317565b91506115e083611317565b92508282019050808211156115f8576115f761159b565b5b92915050565b7f4d4f4e4b3a2057696c6c20657863656564204d617820537570706c7900000000600082015250565b6000611634601c8361120d565b915061163f826115fe565b602082019050919050565b6000602082019050818103600083015261166381611627565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116c660258361120d565b91506116d18261166a565b604082019050919050565b600060208201905081810360008301526116f5816116b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061175860268361120d565b9150611763826116fc565b604082019050919050565b600060208201905081810360008301526117878161174b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117ea60248361120d565b91506117f58261178e565b604082019050919050565b60006020820190508181036000830152611819816117dd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061187c60228361120d565b915061188782611820565b604082019050919050565b600060208201905081810360008301526118ab8161186f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118e8601d8361120d565b91506118f3826118b2565b602082019050919050565b60006020820190508181036000830152611917816118db565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061197a60258361120d565b91506119858261191e565b604082019050919050565b600060208201905081810360008301526119a98161196d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a0c60238361120d565b9150611a17826119b0565b604082019050919050565b60006020820190508181036000830152611a3b816119ff565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a9e60268361120d565b9150611aa982611a42565b604082019050919050565b60006020820190508181036000830152611acd81611a91565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b0a60208361120d565b9150611b1582611ad4565b602082019050919050565b60006020820190508181036000830152611b3981611afd565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611b76601f8361120d565b9150611b8182611b40565b602082019050919050565b60006020820190508181036000830152611ba581611b69565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c0860218361120d565b9150611c1382611bac565b604082019050919050565b60006020820190508181036000830152611c3781611bfb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9a60228361120d565b9150611ca582611c3e565b604082019050919050565b60006020820190508181036000830152611cc981611c8d565b9050919050565b6000611cdb82611317565b9150611ce683611317565b9250828203905081811115611cfe57611cfd61159b565b5b9291505056fea26469706673582212200da335d271dacdd07cf5ddd5016ce6b95fe68090ac442afc90ee3641a7a7a26564736f6c63430008110033

Deployed Bytecode Sourcemap

21365:460:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9386:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11737:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10506:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12518:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10348:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13222:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21531:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20755:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10677:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;:::i;:::-;;21165:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9605:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21721:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13963:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11010:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21419:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11266:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3067:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9386:100;9440:13;9473:5;9466:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9386:100;:::o;11737:201::-;11820:4;11837:13;11853:12;:10;:12::i;:::-;11837:28;;11876:32;11885:5;11892:7;11901:6;11876:8;:32::i;:::-;11926:4;11919:11;;;11737:201;;;;:::o;10506:108::-;10567:7;10594:12;;10587:19;;10506:108;:::o;12518:295::-;12649:4;12666:15;12684:12;:10;:12::i;:::-;12666:30;;12707:38;12723:4;12729:7;12738:6;12707:15;:38::i;:::-;12756:27;12766:4;12772:2;12776:6;12756:9;:27::i;:::-;12801:4;12794:11;;;12518:295;;;;;:::o;10348:93::-;10406:5;10431:2;10424:9;;10348:93;:::o;13222:238::-;13310:4;13327:13;13343:12;:10;:12::i;:::-;13327:28;;13366:64;13375:5;13382:7;13419:10;13391:25;13401:5;13408:7;13391:9;:25::i;:::-;:38;;;;:::i;:::-;13366:8;:64::i;:::-;13448:4;13441:11;;;13222:238;;;;:::o;21531:182::-;2047:13;:11;:13::i;:::-;21635:9:::1;21625:6;21609:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;21601:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21688:17;21694:2;21698:6;21688:5;:17::i;:::-;21531:182:::0;;:::o;20755:91::-;20811:27;20817:12;:10;:12::i;:::-;20831:6;20811:5;:27::i;:::-;20755:91;:::o;10677:127::-;10751:7;10778:9;:18;10788:7;10778:18;;;;;;;;;;;;;;;;10771:25;;10677:127;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;21165:164::-;21242:46;21258:7;21267:12;:10;:12::i;:::-;21281:6;21242:15;:46::i;:::-;21299:22;21305:7;21314:6;21299:5;:22::i;:::-;21165:164;;:::o;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;9605:104::-;9661:13;9694:7;9687:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9605:104;:::o;21721:99::-;2047:13;:11;:13::i;:::-;21793:19:::1;21799:4;21805:6;21793:5;:19::i;:::-;21721:99:::0;;:::o;13963:436::-;14056:4;14073:13;14089:12;:10;:12::i;:::-;14073:28;;14112:24;14139:25;14149:5;14156:7;14139:9;:25::i;:::-;14112:52;;14203:15;14183:16;:35;;14175:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14296:60;14305:5;14312:7;14340:15;14321:16;:34;14296:8;:60::i;:::-;14387:4;14380:11;;;;13963:436;;;;:::o;11010:193::-;11089:4;11106:13;11122:12;:10;:12::i;:::-;11106:28;;11145;11155:5;11162:2;11166:6;11145:9;:28::i;:::-;11191:4;11184:11;;;11010:193;;;;:::o;21419:57::-;;;:::o;11266:151::-;11355:7;11382:11;:18;11394:5;11382:18;;;;;;;;;;;;;;;:27;11401:7;11382:27;;;;;;;;;;;;;;;;11375:34;;11266:151;;;;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;::::0;3148:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;17588:380::-;17741:1;17724:19;;:5;:19;;;17716:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17822:1;17803:21;;:7;:21;;;17795:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17906:6;17876:11;:18;17888:5;17876:18;;;;;;;;;;;;;;;:27;17895:7;17876:27;;;;;;;;;;;;;;;:36;;;;17944:7;17928:32;;17937:5;17928:32;;;17953:6;17928:32;;;;;;:::i;:::-;;;;;;;;17588:380;;;:::o;18259:453::-;18394:24;18421:25;18431:5;18438:7;18421:9;:25::i;:::-;18394:52;;18481:17;18461:16;:37;18457:248;;18543:6;18523:16;:26;;18515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18627:51;18636:5;18643:7;18671:6;18652:16;:25;18627:8;:51::i;:::-;18457:248;18383:329;18259:453;;;:::o;14869:671::-;15016:1;15000:18;;:4;:18;;;14992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15093:1;15079:16;;:2;:16;;;15071:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15148:38;15169:4;15175:2;15179:6;15148:20;:38::i;:::-;15199:19;15221:9;:15;15231:4;15221:15;;;;;;;;;;;;;;;;15199:37;;15270:6;15255:11;:21;;15247:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15387:6;15373:11;:20;15355:9;:15;15365:4;15355:15;;;;;;;;;;;;;;;:38;;;;15432:6;15415:9;:13;15425:2;15415:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15471:2;15456:26;;15465:4;15456:26;;;15475:6;15456:26;;;;;;:::i;:::-;;;;;;;;15495:37;15515:4;15521:2;15525:6;15495:19;:37::i;:::-;14981:559;14869:671;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;15827:399::-;15930:1;15911:21;;:7;:21;;;15903:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15981:49;16010:1;16014:7;16023:6;15981:20;:49::i;:::-;16059:6;16043:12;;:22;;;;;;;:::i;:::-;;;;;;;;16098:6;16076:9;:18;16086:7;16076:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16141:7;16120:37;;16137:1;16120:37;;;16150:6;16120:37;;;;;;:::i;:::-;;;;;;;;16170:48;16198:1;16202:7;16211:6;16170:19;:48::i;:::-;15827:399;;:::o;16559:591::-;16662:1;16643:21;;:7;:21;;;16635:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16715:49;16736:7;16753:1;16757:6;16715:20;:49::i;:::-;16777:22;16802:9;:18;16812:7;16802:18;;;;;;;;;;;;;;;;16777:43;;16857:6;16839:14;:24;;16831:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16976:6;16959:14;:23;16938:9;:18;16948:7;16938:18;;;;;;;;;;;;;;;:44;;;;17020:6;17004:12;;:22;;;;;;;:::i;:::-;;;;;;;;17070:1;17044:37;;17053:7;17044:37;;;17074:6;17044:37;;;;;;:::i;:::-;;;;;;;;17094:48;17114:7;17131:1;17135:6;17094:19;:48::i;:::-;16624:526;16559:591;;:::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3491:128;3428:191;:::o;19312:125::-;;;;:::o;20041: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;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:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:178::-;7390:30;7386:1;7378:6;7374:14;7367:54;7250:178;:::o;7434:366::-;7576:3;7597:67;7661:2;7656:3;7597:67;:::i;:::-;7590:74;;7673:93;7762:3;7673:93;:::i;:::-;7791:2;7786:3;7782:12;7775:19;;7434:366;;;:::o;7806:419::-;7972:4;8010:2;7999:9;7995:18;7987:26;;8059:9;8053:4;8049:20;8045:1;8034:9;8030:17;8023:47;8087:131;8213:4;8087:131;:::i;:::-;8079:139;;7806:419;;;:::o;8231:224::-;8371:34;8367:1;8359:6;8355:14;8348:58;8440:7;8435:2;8427:6;8423:15;8416:32;8231:224;:::o;8461:366::-;8603:3;8624:67;8688:2;8683:3;8624:67;:::i;:::-;8617:74;;8700:93;8789:3;8700:93;:::i;:::-;8818:2;8813:3;8809:12;8802:19;;8461:366;;;:::o;8833:419::-;8999:4;9037:2;9026:9;9022:18;9014:26;;9086:9;9080:4;9076:20;9072:1;9061:9;9057:17;9050:47;9114:131;9240:4;9114:131;:::i;:::-;9106:139;;8833:419;;;:::o;9258:225::-;9398:34;9394:1;9386:6;9382:14;9375:58;9467:8;9462:2;9454:6;9450:15;9443:33;9258:225;:::o;9489:366::-;9631:3;9652:67;9716:2;9711:3;9652:67;:::i;:::-;9645:74;;9728:93;9817:3;9728:93;:::i;:::-;9846:2;9841:3;9837:12;9830:19;;9489:366;;;:::o;9861:419::-;10027:4;10065:2;10054:9;10050:18;10042:26;;10114:9;10108:4;10104:20;10100:1;10089:9;10085:17;10078:47;10142:131;10268:4;10142:131;:::i;:::-;10134:139;;9861:419;;;:::o;10286:223::-;10426:34;10422:1;10414:6;10410:14;10403:58;10495:6;10490:2;10482:6;10478:15;10471:31;10286:223;:::o;10515:366::-;10657:3;10678:67;10742:2;10737:3;10678:67;:::i;:::-;10671:74;;10754:93;10843:3;10754:93;:::i;:::-;10872:2;10867:3;10863:12;10856:19;;10515:366;;;:::o;10887:419::-;11053:4;11091:2;11080:9;11076:18;11068:26;;11140:9;11134:4;11130:20;11126:1;11115:9;11111:17;11104:47;11168:131;11294:4;11168:131;:::i;:::-;11160:139;;10887:419;;;:::o;11312:221::-;11452:34;11448:1;11440:6;11436:14;11429:58;11521:4;11516:2;11508:6;11504:15;11497:29;11312:221;:::o;11539:366::-;11681:3;11702:67;11766:2;11761:3;11702:67;:::i;:::-;11695:74;;11778:93;11867:3;11778:93;:::i;:::-;11896:2;11891:3;11887:12;11880:19;;11539:366;;;:::o;11911:419::-;12077:4;12115:2;12104:9;12100:18;12092:26;;12164:9;12158:4;12154:20;12150:1;12139:9;12135:17;12128:47;12192:131;12318:4;12192:131;:::i;:::-;12184:139;;11911:419;;;:::o;12336:179::-;12476:31;12472:1;12464:6;12460:14;12453:55;12336:179;:::o;12521:366::-;12663:3;12684:67;12748:2;12743:3;12684:67;:::i;:::-;12677:74;;12760:93;12849:3;12760:93;:::i;:::-;12878:2;12873:3;12869:12;12862:19;;12521:366;;;:::o;12893:419::-;13059:4;13097:2;13086:9;13082:18;13074:26;;13146:9;13140:4;13136:20;13132:1;13121:9;13117:17;13110:47;13174:131;13300:4;13174:131;:::i;:::-;13166:139;;12893:419;;;:::o;13318:224::-;13458:34;13454:1;13446:6;13442:14;13435:58;13527:7;13522:2;13514:6;13510:15;13503:32;13318:224;:::o;13548:366::-;13690:3;13711:67;13775:2;13770:3;13711:67;:::i;:::-;13704:74;;13787:93;13876:3;13787:93;:::i;:::-;13905:2;13900:3;13896:12;13889:19;;13548:366;;;:::o;13920:419::-;14086:4;14124:2;14113:9;14109:18;14101:26;;14173:9;14167:4;14163:20;14159:1;14148:9;14144:17;14137:47;14201:131;14327:4;14201:131;:::i;:::-;14193:139;;13920:419;;;:::o;14345:222::-;14485:34;14481:1;14473:6;14469:14;14462:58;14554:5;14549:2;14541:6;14537:15;14530:30;14345:222;:::o;14573:366::-;14715:3;14736:67;14800:2;14795:3;14736:67;:::i;:::-;14729:74;;14812:93;14901:3;14812:93;:::i;:::-;14930:2;14925:3;14921:12;14914:19;;14573:366;;;:::o;14945:419::-;15111:4;15149:2;15138:9;15134:18;15126:26;;15198:9;15192:4;15188:20;15184:1;15173:9;15169:17;15162:47;15226:131;15352:4;15226:131;:::i;:::-;15218:139;;14945:419;;;:::o;15370:225::-;15510:34;15506:1;15498:6;15494:14;15487:58;15579:8;15574:2;15566:6;15562:15;15555:33;15370:225;:::o;15601:366::-;15743:3;15764:67;15828:2;15823:3;15764:67;:::i;:::-;15757:74;;15840:93;15929:3;15840:93;:::i;:::-;15958:2;15953:3;15949:12;15942:19;;15601:366;;;:::o;15973:419::-;16139:4;16177:2;16166:9;16162:18;16154:26;;16226:9;16220:4;16216:20;16212:1;16201:9;16197:17;16190:47;16254:131;16380:4;16254:131;:::i;:::-;16246:139;;15973:419;;;:::o;16398:182::-;16538:34;16534:1;16526:6;16522:14;16515:58;16398:182;:::o;16586:366::-;16728:3;16749:67;16813:2;16808:3;16749:67;:::i;:::-;16742:74;;16825:93;16914:3;16825:93;:::i;:::-;16943:2;16938:3;16934:12;16927:19;;16586:366;;;:::o;16958:419::-;17124:4;17162:2;17151:9;17147:18;17139:26;;17211:9;17205:4;17201:20;17197:1;17186:9;17182:17;17175:47;17239:131;17365:4;17239:131;:::i;:::-;17231:139;;16958:419;;;:::o;17383:181::-;17523:33;17519:1;17511:6;17507:14;17500:57;17383:181;:::o;17570:366::-;17712:3;17733:67;17797:2;17792:3;17733:67;:::i;:::-;17726:74;;17809:93;17898:3;17809:93;:::i;:::-;17927:2;17922:3;17918:12;17911:19;;17570:366;;;:::o;17942:419::-;18108:4;18146:2;18135:9;18131:18;18123:26;;18195:9;18189:4;18185:20;18181:1;18170:9;18166:17;18159:47;18223:131;18349:4;18223:131;:::i;:::-;18215:139;;17942:419;;;:::o;18367:220::-;18507:34;18503:1;18495:6;18491:14;18484:58;18576:3;18571:2;18563:6;18559:15;18552:28;18367:220;:::o;18593:366::-;18735:3;18756:67;18820:2;18815:3;18756:67;:::i;:::-;18749:74;;18832:93;18921:3;18832:93;:::i;:::-;18950:2;18945:3;18941:12;18934:19;;18593:366;;;:::o;18965:419::-;19131:4;19169:2;19158:9;19154:18;19146:26;;19218:9;19212:4;19208:20;19204:1;19193:9;19189:17;19182:47;19246:131;19372:4;19246:131;:::i;:::-;19238:139;;18965:419;;;:::o;19390:221::-;19530:34;19526:1;19518:6;19514:14;19507:58;19599:4;19594:2;19586:6;19582:15;19575:29;19390:221;:::o;19617:366::-;19759:3;19780:67;19844:2;19839:3;19780:67;:::i;:::-;19773:74;;19856:93;19945:3;19856:93;:::i;:::-;19974:2;19969:3;19965:12;19958:19;;19617:366;;;:::o;19989:419::-;20155:4;20193:2;20182:9;20178:18;20170:26;;20242:9;20236:4;20232:20;20228:1;20217:9;20213:17;20206:47;20270:131;20396:4;20270:131;:::i;:::-;20262:139;;19989:419;;;:::o;20414:194::-;20454:4;20474:20;20492:1;20474:20;:::i;:::-;20469:25;;20508:20;20526:1;20508:20;:::i;:::-;20503:25;;20552:1;20549;20545:9;20537:17;;20576:1;20570:4;20567:11;20564:37;;;20581:18;;:::i;:::-;20564:37;20414:194;;;;:::o

Swarm Source

ipfs://0da335d271dacdd07cf5ddd5016ce6b95fe68090ac442afc90ee3641a7a7a265
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.