ETH Price: $3,120.84 (-0.56%)

Token

BUY (BUY)
 

Overview

Max Total Supply

1,000,000,000 BUY

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,712,012.785822667699934893 BUY

Value
$0.00
0xb1F285f226DD6116aB8b0ed7FFC96a1692D2320f
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:
Buy

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-16
*/

// 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.9.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. 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);
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

    /**
     * @dev Hook that is called 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: contracts/Buy.sol


pragma solidity ^0.8.15;



contract Buy is ERC20, Ownable {
    mapping(address => bool) public isAmmPair;
    constructor() ERC20("BUY", "BUY") {
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }
    function setAmmPair(address account, bool isPair) public onlyOwner {
        isAmmPair[account] = isPair;
    }
    function _transfer (
        address from,
        address to,
        uint256 value
    ) internal override {
        require(from == owner() || !isAmmPair[to], "Recipient is AMM pair");
        super._transfer(from, to, value);
    }
}

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":"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":"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":"","type":"address"}],"name":"isAmmPair","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":"account","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAmmPair","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"}]

608060405234801562000010575f80fd5b506040518060400160405280600381526020017f42555900000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f425559000000000000000000000000000000000000000000000000000000000081525081600390816200008e919062000584565b508060049081620000a0919062000584565b505050620000c3620000b7620000e760201b60201c565b620000ee60201b60201c565b620000e1336b033b2e3c9fd0803ce8000000620001b160201b60201c565b62000779565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000222576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021990620006c6565b60405180910390fd5b620002355f83836200031660201b60201c565b8060025f82825462000248919062000713565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002f791906200075e565b60405180910390a3620003125f83836200031b60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200039c57607f821691505b602082108103620003b257620003b162000357565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003d9565b620004228683620003d9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200046c6200046662000460846200043a565b62000443565b6200043a565b9050919050565b5f819050919050565b62000487836200044c565b6200049f620004968262000473565b848454620003e5565b825550505050565b5f90565b620004b5620004a7565b620004c28184846200047c565b505050565b5b81811015620004e957620004dd5f82620004ab565b600181019050620004c8565b5050565b601f82111562000538576200050281620003b8565b6200050d84620003ca565b810160208510156200051d578190505b620005356200052c85620003ca565b830182620004c7565b50505b505050565b5f82821c905092915050565b5f6200055a5f19846008026200053d565b1980831691505092915050565b5f62000574838362000549565b9150826002028217905092915050565b6200058f8262000320565b67ffffffffffffffff811115620005ab57620005aa6200032a565b5b620005b7825462000384565b620005c4828285620004ed565b5f60209050601f831160018114620005fa575f8415620005e5578287015190505b620005f1858262000567565b86555062000660565b601f1984166200060a86620003b8565b5f5b8281101562000633578489015182556001820191506020850194506020810190506200060c565b868310156200065357848901516200064f601f89168262000549565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620006ae601f8362000668565b9150620006bb8262000678565b602082019050919050565b5f6020820190508181035f830152620006df81620006a0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200071f826200043a565b91506200072c836200043a565b9250828201905080821115620007475762000746620006e6565b5b92915050565b62000758816200043a565b82525050565b5f602082019050620007735f8301846200074d565b92915050565b6117ea80620007875f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d7146102ae578063a9059cbb146102de578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b8063715018a6146102385780638da5cb5b146102425780639191a9c71461026057806395d89b4114610290576100fe565b806323b872dd116100d157806323b872dd1461018a578063313ce567146101ba57806339509351146101d857806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b3146101205780630a6569231461015057806318160ddd1461016c575b5f80fd5b61010a61035a565b6040516101179190610f16565b60405180910390f35b61013a60048036038101906101359190610fc7565b6103ea565b604051610147919061101f565b60405180910390f35b61016a60048036038101906101659190611062565b61040c565b005b61017461046c565b60405161018191906110af565b60405180910390f35b6101a4600480360381019061019f91906110c8565b610475565b6040516101b1919061101f565b60405180910390f35b6101c26104a3565b6040516101cf9190611133565b60405180910390f35b6101f260048036038101906101ed9190610fc7565b6104ab565b6040516101ff919061101f565b60405180910390f35b610222600480360381019061021d919061114c565b6104e1565b60405161022f91906110af565b60405180910390f35b610240610526565b005b61024a610539565b6040516102579190611186565b60405180910390f35b61027a6004803603810190610275919061114c565b610561565b604051610287919061101f565b60405180910390f35b61029861057e565b6040516102a59190610f16565b60405180910390f35b6102c860048036038101906102c39190610fc7565b61060e565b6040516102d5919061101f565b60405180910390f35b6102f860048036038101906102f39190610fc7565b610683565b604051610305919061101f565b60405180910390f35b6103286004803603810190610323919061119f565b6106a5565b60405161033591906110af565b60405180910390f35b6103586004803603810190610353919061114c565b610727565b005b6060600380546103699061120a565b80601f01602080910402602001604051908101604052809291908181526020018280546103959061120a565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f46107a9565b90506104018185856107b0565b600191505092915050565b610414610973565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b5f8061047f6107a9565b905061048c8582856109f1565b610497858585610a7c565b60019150509392505050565b5f6012905090565b5f806104b56107a9565b90506104d68185856104c785896106a5565b6104d19190611267565b6107b0565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61052e610973565b6105375f610b53565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b60606004805461058d9061120a565b80601f01602080910402602001604051908101604052809291908181526020018280546105b99061120a565b80156106045780601f106105db57610100808354040283529160200191610604565b820191905f5260205f20905b8154815290600101906020018083116105e757829003601f168201915b5050505050905090565b5f806106186107a9565b90505f61062582866106a5565b90508381101561066a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106619061130a565b60405180910390fd5b61067782868684036107b0565b60019250505092915050565b5f8061068d6107a9565b905061069a818585610a7c565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61072f610973565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490611398565b60405180910390fd5b6107a681610b53565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590611426565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361088c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610883906114b4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161096691906110af565b60405180910390a3505050565b61097b6107a9565b73ffffffffffffffffffffffffffffffffffffffff16610999610539565b73ffffffffffffffffffffffffffffffffffffffff16146109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e69061151c565b60405180910390fd5b565b5f6109fc84846106a5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a765781811015610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90611584565b60405180910390fd5b610a7584848484036107b0565b5b50505050565b610a84610539565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610b04575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a906115ec565b60405180910390fd5b610b4e838383610c16565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b9061167a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611708565b60405180910390fd5b610cfd838383610e82565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790611796565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e6991906110af565b60405180910390a3610e7c848484610e87565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610ec3578082015181840152602081019050610ea8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ee882610e8c565b610ef28185610e96565b9350610f02818560208601610ea6565b610f0b81610ece565b840191505092915050565b5f6020820190508181035f830152610f2e8184610ede565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f6382610f3a565b9050919050565b610f7381610f59565b8114610f7d575f80fd5b50565b5f81359050610f8e81610f6a565b92915050565b5f819050919050565b610fa681610f94565b8114610fb0575f80fd5b50565b5f81359050610fc181610f9d565b92915050565b5f8060408385031215610fdd57610fdc610f36565b5b5f610fea85828601610f80565b9250506020610ffb85828601610fb3565b9150509250929050565b5f8115159050919050565b61101981611005565b82525050565b5f6020820190506110325f830184611010565b92915050565b61104181611005565b811461104b575f80fd5b50565b5f8135905061105c81611038565b92915050565b5f806040838503121561107857611077610f36565b5b5f61108585828601610f80565b92505060206110968582860161104e565b9150509250929050565b6110a981610f94565b82525050565b5f6020820190506110c25f8301846110a0565b92915050565b5f805f606084860312156110df576110de610f36565b5b5f6110ec86828701610f80565b93505060206110fd86828701610f80565b925050604061110e86828701610fb3565b9150509250925092565b5f60ff82169050919050565b61112d81611118565b82525050565b5f6020820190506111465f830184611124565b92915050565b5f6020828403121561116157611160610f36565b5b5f61116e84828501610f80565b91505092915050565b61118081610f59565b82525050565b5f6020820190506111995f830184611177565b92915050565b5f80604083850312156111b5576111b4610f36565b5b5f6111c285828601610f80565b92505060206111d385828601610f80565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061122157607f821691505b602082108103611234576112336111dd565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61127182610f94565b915061127c83610f94565b92508282019050808211156112945761129361123a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112f4602583610e96565b91506112ff8261129a565b604082019050919050565b5f6020820190508181035f830152611321816112e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611382602683610e96565b915061138d82611328565b604082019050919050565b5f6020820190508181035f8301526113af81611376565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611410602483610e96565b915061141b826113b6565b604082019050919050565b5f6020820190508181035f83015261143d81611404565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61149e602283610e96565b91506114a982611444565b604082019050919050565b5f6020820190508181035f8301526114cb81611492565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611506602083610e96565b9150611511826114d2565b602082019050919050565b5f6020820190508181035f830152611533816114fa565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61156e601d83610e96565b91506115798261153a565b602082019050919050565b5f6020820190508181035f83015261159b81611562565b9050919050565b7f526563697069656e7420697320414d4d207061697200000000000000000000005f82015250565b5f6115d6601583610e96565b91506115e1826115a2565b602082019050919050565b5f6020820190508181035f830152611603816115ca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611664602583610e96565b915061166f8261160a565b604082019050919050565b5f6020820190508181035f83015261169181611658565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6116f2602383610e96565b91506116fd82611698565b604082019050919050565b5f6020820190508181035f83015261171f816116e6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611780602683610e96565b915061178b82611726565b604082019050919050565b5f6020820190508181035f8301526117ad81611774565b905091905056fea2646970667358221220fe8b0a1329c45791344ec39236cf5addd4acb9158c7fdeaf3f8344dcb517ff8a64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d7146102ae578063a9059cbb146102de578063dd62ed3e1461030e578063f2fde38b1461033e576100fe565b8063715018a6146102385780638da5cb5b146102425780639191a9c71461026057806395d89b4114610290576100fe565b806323b872dd116100d157806323b872dd1461018a578063313ce567146101ba57806339509351146101d857806370a0823114610208576100fe565b806306fdde0314610102578063095ea7b3146101205780630a6569231461015057806318160ddd1461016c575b5f80fd5b61010a61035a565b6040516101179190610f16565b60405180910390f35b61013a60048036038101906101359190610fc7565b6103ea565b604051610147919061101f565b60405180910390f35b61016a60048036038101906101659190611062565b61040c565b005b61017461046c565b60405161018191906110af565b60405180910390f35b6101a4600480360381019061019f91906110c8565b610475565b6040516101b1919061101f565b60405180910390f35b6101c26104a3565b6040516101cf9190611133565b60405180910390f35b6101f260048036038101906101ed9190610fc7565b6104ab565b6040516101ff919061101f565b60405180910390f35b610222600480360381019061021d919061114c565b6104e1565b60405161022f91906110af565b60405180910390f35b610240610526565b005b61024a610539565b6040516102579190611186565b60405180910390f35b61027a6004803603810190610275919061114c565b610561565b604051610287919061101f565b60405180910390f35b61029861057e565b6040516102a59190610f16565b60405180910390f35b6102c860048036038101906102c39190610fc7565b61060e565b6040516102d5919061101f565b60405180910390f35b6102f860048036038101906102f39190610fc7565b610683565b604051610305919061101f565b60405180910390f35b6103286004803603810190610323919061119f565b6106a5565b60405161033591906110af565b60405180910390f35b6103586004803603810190610353919061114c565b610727565b005b6060600380546103699061120a565b80601f01602080910402602001604051908101604052809291908181526020018280546103959061120a565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f46107a9565b90506104018185856107b0565b600191505092915050565b610414610973565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b5f8061047f6107a9565b905061048c8582856109f1565b610497858585610a7c565b60019150509392505050565b5f6012905090565b5f806104b56107a9565b90506104d68185856104c785896106a5565b6104d19190611267565b6107b0565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61052e610973565b6105375f610b53565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b60606004805461058d9061120a565b80601f01602080910402602001604051908101604052809291908181526020018280546105b99061120a565b80156106045780601f106105db57610100808354040283529160200191610604565b820191905f5260205f20905b8154815290600101906020018083116105e757829003601f168201915b5050505050905090565b5f806106186107a9565b90505f61062582866106a5565b90508381101561066a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106619061130a565b60405180910390fd5b61067782868684036107b0565b60019250505092915050565b5f8061068d6107a9565b905061069a818585610a7c565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61072f610973565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490611398565b60405180910390fd5b6107a681610b53565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590611426565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361088c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610883906114b4565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161096691906110af565b60405180910390a3505050565b61097b6107a9565b73ffffffffffffffffffffffffffffffffffffffff16610999610539565b73ffffffffffffffffffffffffffffffffffffffff16146109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e69061151c565b60405180910390fd5b565b5f6109fc84846106a5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a765781811015610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90611584565b60405180910390fd5b610a7584848484036107b0565b5b50505050565b610a84610539565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610b04575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a906115ec565b60405180910390fd5b610b4e838383610c16565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b9061167a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611708565b60405180910390fd5b610cfd838383610e82565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790611796565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e6991906110af565b60405180910390a3610e7c848484610e87565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610ec3578082015181840152602081019050610ea8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ee882610e8c565b610ef28185610e96565b9350610f02818560208601610ea6565b610f0b81610ece565b840191505092915050565b5f6020820190508181035f830152610f2e8184610ede565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f6382610f3a565b9050919050565b610f7381610f59565b8114610f7d575f80fd5b50565b5f81359050610f8e81610f6a565b92915050565b5f819050919050565b610fa681610f94565b8114610fb0575f80fd5b50565b5f81359050610fc181610f9d565b92915050565b5f8060408385031215610fdd57610fdc610f36565b5b5f610fea85828601610f80565b9250506020610ffb85828601610fb3565b9150509250929050565b5f8115159050919050565b61101981611005565b82525050565b5f6020820190506110325f830184611010565b92915050565b61104181611005565b811461104b575f80fd5b50565b5f8135905061105c81611038565b92915050565b5f806040838503121561107857611077610f36565b5b5f61108585828601610f80565b92505060206110968582860161104e565b9150509250929050565b6110a981610f94565b82525050565b5f6020820190506110c25f8301846110a0565b92915050565b5f805f606084860312156110df576110de610f36565b5b5f6110ec86828701610f80565b93505060206110fd86828701610f80565b925050604061110e86828701610fb3565b9150509250925092565b5f60ff82169050919050565b61112d81611118565b82525050565b5f6020820190506111465f830184611124565b92915050565b5f6020828403121561116157611160610f36565b5b5f61116e84828501610f80565b91505092915050565b61118081610f59565b82525050565b5f6020820190506111995f830184611177565b92915050565b5f80604083850312156111b5576111b4610f36565b5b5f6111c285828601610f80565b92505060206111d385828601610f80565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061122157607f821691505b602082108103611234576112336111dd565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61127182610f94565b915061127c83610f94565b92508282019050808211156112945761129361123a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6112f4602583610e96565b91506112ff8261129a565b604082019050919050565b5f6020820190508181035f830152611321816112e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611382602683610e96565b915061138d82611328565b604082019050919050565b5f6020820190508181035f8301526113af81611376565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611410602483610e96565b915061141b826113b6565b604082019050919050565b5f6020820190508181035f83015261143d81611404565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61149e602283610e96565b91506114a982611444565b604082019050919050565b5f6020820190508181035f8301526114cb81611492565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611506602083610e96565b9150611511826114d2565b602082019050919050565b5f6020820190508181035f830152611533816114fa565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61156e601d83610e96565b91506115798261153a565b602082019050919050565b5f6020820190508181035f83015261159b81611562565b9050919050565b7f526563697069656e7420697320414d4d207061697200000000000000000000005f82015250565b5f6115d6601583610e96565b91506115e1826115a2565b602082019050919050565b5f6020820190508181035f830152611603816115ca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611664602583610e96565b915061166f8261160a565b604082019050919050565b5f6020820190508181035f83015261169181611658565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6116f2602383610e96565b91506116fd82611698565b604082019050919050565b5f6020820190508181035f83015261171f816116e6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611780602683610e96565b915061178b82611726565b604082019050919050565b5f6020820190508181035f8301526117ad81611774565b905091905056fea2646970667358221220fe8b0a1329c45791344ec39236cf5addd4acb9158c7fdeaf3f8344dcb517ff8a64736f6c63430008140033

Deployed Bytecode Sourcemap

20371:549:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11674:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20556:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10443:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12455:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10285:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13125:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10614:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2769:103;;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20409:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9533:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13866:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10947:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11203:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3027:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9314:100;9368:13;9401:5;9394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;:::o;11674:201::-;11757:4;11774:13;11790:12;:10;:12::i;:::-;11774:28;;11813:32;11822:5;11829:7;11838:6;11813:8;:32::i;:::-;11863:4;11856:11;;;11674:201;;;;:::o;20556:113::-;2014:13;:11;:13::i;:::-;20655:6:::1;20634:9;:18;20644:7;20634:18;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;20556:113:::0;;:::o;10443:108::-;10504:7;10531:12;;10524:19;;10443:108;:::o;12455:261::-;12552:4;12569:15;12587:12;:10;:12::i;:::-;12569:30;;12610:38;12626:4;12632:7;12641:6;12610:15;:38::i;:::-;12659:27;12669:4;12675:2;12679:6;12659:9;:27::i;:::-;12704:4;12697:11;;;12455:261;;;;;:::o;10285:93::-;10343:5;10368:2;10361:9;;10285:93;:::o;13125:238::-;13213:4;13230:13;13246:12;:10;:12::i;:::-;13230:28;;13269:64;13278:5;13285:7;13322:10;13294:25;13304:5;13311:7;13294:9;:25::i;:::-;:38;;;;:::i;:::-;13269:8;:64::i;:::-;13351:4;13344:11;;;13125:238;;;;:::o;10614:127::-;10688:7;10715:9;:18;10725:7;10715:18;;;;;;;;;;;;;;;;10708:25;;10614:127;;;:::o;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;20409:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;9533:104::-;9589:13;9622:7;9615:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9533:104;:::o;13866:436::-;13959:4;13976:13;13992:12;:10;:12::i;:::-;13976:28;;14015:24;14042:25;14052:5;14059:7;14042:9;:25::i;:::-;14015:52;;14106:15;14086:16;:35;;14078:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14199:60;14208:5;14215:7;14243:15;14224:16;:34;14199:8;:60::i;:::-;14290:4;14283:11;;;;13866:436;;;;:::o;10947:193::-;11026:4;11043:13;11059:12;:10;:12::i;:::-;11043:28;;11082;11092:5;11099:2;11103:6;11082:9;:28::i;:::-;11128:4;11121:11;;;10947:193;;;;:::o;11203:151::-;11292:7;11319:11;:18;11331:5;11319:18;;;;;;;;;;;;;;;:27;11338:7;11319:27;;;;;;;;;;;;;;;;11312:34;;11203:151;;;;:::o;3027:201::-;2014:13;:11;:13::i;:::-;3136:1:::1;3116:22;;:8;:22;;::::0;3108:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3192:28;3211:8;3192:18;:28::i;:::-;3027:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17859:346::-;17978:1;17961:19;;:5;:19;;;17953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18059:1;18040:21;;:7;:21;;;18032:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18143:6;18113:11;:18;18125:5;18113:18;;;;;;;;;;;;;;;:27;18132:7;18113:27;;;;;;;;;;;;;;;:36;;;;18181:7;18165:32;;18174:5;18165:32;;;18190:6;18165:32;;;;;;:::i;:::-;;;;;;;;17859:346;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;18496:419::-;18597:24;18624:25;18634:5;18641:7;18624:9;:25::i;:::-;18597:52;;18684:17;18664:16;:37;18660:248;;18746:6;18726:16;:26;;18718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18830:51;18839:5;18846:7;18874:6;18855:16;:25;18830:8;:51::i;:::-;18660:248;18586:329;18496:419;;;:::o;20675:242::-;20815:7;:5;:7::i;:::-;20807:15;;:4;:15;;;:33;;;;20827:9;:13;20837:2;20827:13;;;;;;;;;;;;;;;;;;;;;;;;;20826:14;20807:33;20799:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20877:32;20893:4;20899:2;20903:5;20877:15;:32::i;:::-;20675:242;;;:::o;3388:191::-;3462:16;3481:6;;;;;;;;;;;3462:25;;3507:8;3498:6;;:17;;;;;;;;;;;;;;;;;;3562:8;3531:40;;3552:8;3531:40;;;;;;;;;;;;3451:128;3388:191;:::o;14772:806::-;14885:1;14869:18;;:4;:18;;;14861:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14962:1;14948:16;;:2;:16;;;14940:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15017:38;15038:4;15044:2;15048:6;15017:20;:38::i;:::-;15068:19;15090:9;:15;15100:4;15090:15;;;;;;;;;;;;;;;;15068:37;;15139:6;15124:11;:21;;15116:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15256:6;15242:11;:20;15224:9;:15;15234:4;15224:15;;;;;;;;;;;;;;;:38;;;;15459:6;15442:9;:13;15452:2;15442:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15509:2;15494:26;;15503:4;15494:26;;;15513:6;15494:26;;;;;;:::i;:::-;;;;;;;;15533:37;15553:4;15559:2;15563:6;15533:19;:37::i;:::-;14850:728;14772:806;;;:::o;19515:91::-;;;;:::o;20210:90::-;;;;:::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:116::-;3516:21;3531:5;3516:21;:::i;:::-;3509:5;3506:32;3496:60;;3552:1;3549;3542:12;3496:60;3446:116;:::o;3568:133::-;3611:5;3649:6;3636:20;3627:29;;3665:30;3689:5;3665:30;:::i;:::-;3568:133;;;;:::o;3707:468::-;3772:6;3780;3829:2;3817:9;3808:7;3804:23;3800:32;3797:119;;;3835:79;;:::i;:::-;3797:119;3955:1;3980:53;4025:7;4016:6;4005:9;4001:22;3980:53;:::i;:::-;3970:63;;3926:117;4082:2;4108:50;4150:7;4141:6;4130:9;4126:22;4108:50;:::i;:::-;4098:60;;4053:115;3707:468;;;;;:::o;4181:118::-;4268:24;4286:5;4268:24;:::i;:::-;4263:3;4256:37;4181:118;;:::o;4305:222::-;4398:4;4436:2;4425:9;4421:18;4413:26;;4449:71;4517:1;4506:9;4502:17;4493:6;4449:71;:::i;:::-;4305:222;;;;:::o;4533:619::-;4610:6;4618;4626;4675:2;4663:9;4654:7;4650:23;4646:32;4643:119;;;4681:79;;:::i;:::-;4643:119;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;5056:2;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5027:118;4533:619;;;;;:::o;5158:86::-;5193:7;5233:4;5226:5;5222:16;5211:27;;5158:86;;;:::o;5250:112::-;5333:22;5349:5;5333:22;:::i;:::-;5328:3;5321:35;5250:112;;:::o;5368:214::-;5457:4;5495:2;5484:9;5480:18;5472:26;;5508:67;5572:1;5561:9;5557:17;5548:6;5508:67;:::i;:::-;5368:214;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:118::-;6010:24;6028:5;6010:24;:::i;:::-;6005:3;5998:37;5923:118;;:::o;6047:222::-;6140:4;6178:2;6167:9;6163:18;6155:26;;6191:71;6259:1;6248:9;6244:17;6235:6;6191:71;:::i;:::-;6047:222;;;;:::o;6275:474::-;6343:6;6351;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:53;6596:7;6587:6;6576:9;6572:22;6551:53;:::i;:::-;6541:63;;6497:117;6653:2;6679:53;6724:7;6715:6;6704:9;6700:22;6679:53;:::i;:::-;6669:63;;6624:118;6275:474;;;;;:::o;6755:180::-;6803:77;6800:1;6793:88;6900:4;6897:1;6890:15;6924:4;6921:1;6914:15;6941:320;6985:6;7022:1;7016:4;7012:12;7002:22;;7069:1;7063:4;7059:12;7090:18;7080:81;;7146:4;7138:6;7134:17;7124:27;;7080:81;7208:2;7200:6;7197:14;7177:18;7174:38;7171:84;;7227:18;;:::i;:::-;7171:84;6992:269;6941:320;;;:::o;7267:180::-;7315:77;7312:1;7305:88;7412:4;7409:1;7402:15;7436:4;7433:1;7426:15;7453:191;7493:3;7512:20;7530:1;7512:20;:::i;:::-;7507:25;;7546:20;7564:1;7546:20;:::i;:::-;7541:25;;7589:1;7586;7582:9;7575:16;;7610:3;7607:1;7604:10;7601:36;;;7617:18;;:::i;:::-;7601:36;7453:191;;;;:::o;7650:224::-;7790:34;7786:1;7778:6;7774:14;7767:58;7859:7;7854:2;7846:6;7842:15;7835:32;7650:224;:::o;7880:366::-;8022:3;8043:67;8107:2;8102:3;8043:67;:::i;:::-;8036:74;;8119:93;8208:3;8119:93;:::i;:::-;8237:2;8232:3;8228:12;8221:19;;7880:366;;;:::o;8252:419::-;8418:4;8456:2;8445:9;8441:18;8433:26;;8505:9;8499:4;8495:20;8491:1;8480:9;8476:17;8469:47;8533:131;8659:4;8533:131;:::i;:::-;8525:139;;8252:419;;;:::o;8677:225::-;8817:34;8813:1;8805:6;8801:14;8794:58;8886:8;8881:2;8873:6;8869:15;8862:33;8677:225;:::o;8908:366::-;9050:3;9071:67;9135:2;9130:3;9071:67;:::i;:::-;9064:74;;9147:93;9236:3;9147:93;:::i;:::-;9265:2;9260:3;9256:12;9249:19;;8908:366;;;:::o;9280:419::-;9446:4;9484:2;9473:9;9469:18;9461:26;;9533:9;9527:4;9523:20;9519:1;9508:9;9504:17;9497:47;9561:131;9687:4;9561:131;:::i;:::-;9553:139;;9280:419;;;:::o;9705:223::-;9845:34;9841:1;9833:6;9829:14;9822:58;9914:6;9909:2;9901:6;9897:15;9890:31;9705:223;:::o;9934:366::-;10076:3;10097:67;10161:2;10156:3;10097:67;:::i;:::-;10090:74;;10173:93;10262:3;10173:93;:::i;:::-;10291:2;10286:3;10282:12;10275:19;;9934:366;;;:::o;10306:419::-;10472:4;10510:2;10499:9;10495:18;10487:26;;10559:9;10553:4;10549:20;10545:1;10534:9;10530:17;10523:47;10587:131;10713:4;10587:131;:::i;:::-;10579:139;;10306:419;;;:::o;10731:221::-;10871:34;10867:1;10859:6;10855:14;10848:58;10940:4;10935:2;10927:6;10923:15;10916:29;10731:221;:::o;10958:366::-;11100:3;11121:67;11185:2;11180:3;11121:67;:::i;:::-;11114:74;;11197:93;11286:3;11197:93;:::i;:::-;11315:2;11310:3;11306:12;11299:19;;10958:366;;;:::o;11330:419::-;11496:4;11534:2;11523:9;11519:18;11511:26;;11583:9;11577:4;11573:20;11569:1;11558:9;11554:17;11547:47;11611:131;11737:4;11611:131;:::i;:::-;11603:139;;11330:419;;;:::o;11755:182::-;11895:34;11891:1;11883:6;11879:14;11872:58;11755:182;:::o;11943:366::-;12085:3;12106:67;12170:2;12165:3;12106:67;:::i;:::-;12099:74;;12182:93;12271:3;12182:93;:::i;:::-;12300:2;12295:3;12291:12;12284:19;;11943:366;;;:::o;12315:419::-;12481:4;12519:2;12508:9;12504:18;12496:26;;12568:9;12562:4;12558:20;12554:1;12543:9;12539:17;12532:47;12596:131;12722:4;12596:131;:::i;:::-;12588:139;;12315:419;;;:::o;12740:179::-;12880:31;12876:1;12868:6;12864:14;12857:55;12740:179;:::o;12925:366::-;13067:3;13088:67;13152:2;13147:3;13088:67;:::i;:::-;13081:74;;13164:93;13253:3;13164:93;:::i;:::-;13282:2;13277:3;13273:12;13266:19;;12925:366;;;:::o;13297:419::-;13463:4;13501:2;13490:9;13486:18;13478:26;;13550:9;13544:4;13540:20;13536:1;13525:9;13521:17;13514:47;13578:131;13704:4;13578:131;:::i;:::-;13570:139;;13297:419;;;:::o;13722:171::-;13862:23;13858:1;13850:6;13846:14;13839:47;13722:171;:::o;13899:366::-;14041:3;14062:67;14126:2;14121:3;14062:67;:::i;:::-;14055:74;;14138:93;14227:3;14138:93;:::i;:::-;14256:2;14251:3;14247:12;14240:19;;13899:366;;;:::o;14271:419::-;14437:4;14475:2;14464:9;14460:18;14452:26;;14524:9;14518:4;14514:20;14510:1;14499:9;14495:17;14488:47;14552:131;14678:4;14552:131;:::i;:::-;14544:139;;14271:419;;;:::o;14696:224::-;14836:34;14832:1;14824:6;14820:14;14813:58;14905:7;14900:2;14892:6;14888:15;14881:32;14696:224;:::o;14926:366::-;15068:3;15089:67;15153:2;15148:3;15089:67;:::i;:::-;15082:74;;15165:93;15254:3;15165:93;:::i;:::-;15283:2;15278:3;15274:12;15267:19;;14926:366;;;:::o;15298:419::-;15464:4;15502:2;15491:9;15487:18;15479:26;;15551:9;15545:4;15541:20;15537:1;15526:9;15522:17;15515:47;15579:131;15705:4;15579:131;:::i;:::-;15571:139;;15298:419;;;:::o;15723:222::-;15863:34;15859:1;15851:6;15847:14;15840:58;15932:5;15927:2;15919:6;15915:15;15908:30;15723:222;:::o;15951:366::-;16093:3;16114:67;16178:2;16173:3;16114:67;:::i;:::-;16107:74;;16190:93;16279:3;16190:93;:::i;:::-;16308:2;16303:3;16299:12;16292:19;;15951:366;;;:::o;16323:419::-;16489:4;16527:2;16516:9;16512:18;16504:26;;16576:9;16570:4;16566:20;16562:1;16551:9;16547:17;16540:47;16604:131;16730:4;16604:131;:::i;:::-;16596:139;;16323:419;;;:::o;16748:225::-;16888:34;16884:1;16876:6;16872:14;16865:58;16957:8;16952:2;16944:6;16940:15;16933:33;16748:225;:::o;16979:366::-;17121:3;17142:67;17206:2;17201:3;17142:67;:::i;:::-;17135:74;;17218:93;17307:3;17218:93;:::i;:::-;17336:2;17331:3;17327:12;17320:19;;16979:366;;;:::o;17351:419::-;17517:4;17555:2;17544:9;17540:18;17532:26;;17604:9;17598:4;17594:20;17590:1;17579:9;17575:17;17568:47;17632:131;17758:4;17632:131;:::i;:::-;17624:139;;17351:419;;;:::o

Swarm Source

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