ETH Price: $2,287.32 (-5.50%)

Token

POYSP (POYSP)
 

Overview

Max Total Supply

550,000,000,000 POYSP

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
27,500,000,000 POYSP

Value
$0.00
0x3587F6D57C52ec883f1021279e0B4f77224de8eC
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:
POYSPToken

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-19
*/

// SPDX-License-Identifier: MIT

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






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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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



// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // 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 {}
}




// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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




pragma solidity ^0.8.0;


contract POYSPToken is Ownable, ERC20 {
    uint256 public constant TOTAL_SUPPLY = 550000000000 * 10**18;
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(address _lpwallet, address _teamWallet) ERC20("POYSP", "POYSP") {
        _mint(_lpwallet, TOTAL_SUPPLY * 95/100);        // 95% for LP
        _mint(_teamWallet, TOTAL_SUPPLY * 5/100);       // 5% for team & development
    }

    function blacklistOrNotAddresses(address[] memory _address, bool _isBlacklisting) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++){
            blacklists[_address[i]] = _isBlacklisting;
        }
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_lpwallet","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklistOrNotAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002e3038038062002e30833981810160405281019062000037919062000651565b6040518060400160405280600581526020017f504f5953500000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f504f595350000000000000000000000000000000000000000000000000000000815250620000c3620000b76200016760201b60201c565b6200016f60201b60201c565b8160049081620000d4919062000912565b508060059081620000e6919062000912565b50505062000124826064605f6c06f125563f59f382da700000006200010c919062000a28565b62000118919062000aa2565b6200023360201b60201c565b6200015f81606460056c06f125563f59f382da7000000062000147919062000a28565b62000153919062000aa2565b6200023360201b60201c565b505062000caa565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029c9062000b3b565b60405180910390fd5b620002b960008383620003a160201b60201c565b8060036000828254620002cd919062000b5d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000381919062000ba9565b60405180910390a36200039d600083836200059960201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620004465750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000488576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047f9062000c16565b60405180910390fd5b600660009054906101000a900460ff168015620004f25750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000594576007548162000512846200059e60201b620006761760201c565b6200051e919062000b5d565b111580156200055157506008548162000542846200059e60201b620006761760201c565b6200054e919062000b5d565b10155b62000593576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058a9062000c88565b60405180910390fd5b5b505050565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200061982620005ec565b9050919050565b6200062b816200060c565b81146200063757600080fd5b50565b6000815190506200064b8162000620565b92915050565b600080604083850312156200066b576200066a620005e7565b5b60006200067b858286016200063a565b92505060206200068e858286016200063a565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071a57607f821691505b60208210810362000730576200072f620006d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200079a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200075b565b620007a686836200075b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007f3620007ed620007e784620007be565b620007c8565b620007be565b9050919050565b6000819050919050565b6200080f83620007d2565b620008276200081e82620007fa565b84845462000768565b825550505050565b600090565b6200083e6200082f565b6200084b81848462000804565b505050565b5b8181101562000873576200086760008262000834565b60018101905062000851565b5050565b601f821115620008c2576200088c8162000736565b62000897846200074b565b81016020851015620008a7578190505b620008bf620008b6856200074b565b83018262000850565b50505b505050565b600082821c905092915050565b6000620008e760001984600802620008c7565b1980831691505092915050565b6000620009028383620008d4565b9150826002028217905092915050565b6200091d8262000698565b67ffffffffffffffff811115620009395762000938620006a3565b5b62000945825462000701565b6200095282828562000877565b600060209050601f8311600181146200098a576000841562000975578287015190505b620009818582620008f4565b865550620009f1565b601f1984166200099a8662000736565b60005b82811015620009c4578489015182556001820191506020850194506020810190506200099d565b86831015620009e45784890151620009e0601f891682620008d4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a3582620007be565b915062000a4283620007be565b925082820262000a5281620007be565b9150828204841483151762000a6c5762000a6b620009f9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000aaf82620007be565b915062000abc83620007be565b92508262000acf5762000ace62000a73565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b23601f8362000ada565b915062000b308262000aeb565b602082019050919050565b6000602082019050818103600083015262000b568162000b14565b9050919050565b600062000b6a82620007be565b915062000b7783620007be565b925082820190508082111562000b925762000b91620009f9565b5b92915050565b62000ba381620007be565b82525050565b600060208201905062000bc0600083018462000b98565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000bfe600b8362000ada565b915062000c0b8262000bc6565b602082019050919050565b6000602082019050818103600083015262000c318162000bef565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000c7060068362000ada565b915062000c7d8262000c38565b602082019050919050565b6000602082019050818103600083015262000ca38162000c61565b9050919050565b6121768062000cba6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b4114610392578063a457c2d7146103b0578063a9059cbb146103e0578063dd62ed3e14610410578063f2fde38b14610440578063fb4544a41461045c5761014d565b806370a08231146102e0578063715018a614610310578063860a32ec1461031a57806389f9a1d3146103385780638da5cb5b14610356578063902d55a5146103745761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c578063395093511461025a5780633aa633aa1461028a57806342966c68146102a657806349bd5a5e146102c25761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d05780631ab99e12146101ee575b600080fd5b61015a610478565b6040516101679190611445565b60405180910390f35b61018a6004803603810190610185919061150f565b61050a565b604051610197919061156a565b60405180910390f35b6101ba60048036038101906101b59190611585565b61052d565b6040516101c7919061156a565b60405180910390f35b6101d861054d565b6040516101e591906115c1565b60405180910390f35b6101f6610557565b60405161020391906115c1565b60405180910390f35b610226600480360381019061022191906115dc565b61055d565b604051610233919061156a565b60405180910390f35b61024461058c565b604051610251919061164b565b60405180910390f35b610274600480360381019061026f919061150f565b610595565b604051610281919061156a565b60405180910390f35b6102a4600480360381019061029f9190611692565b6105cc565b005b6102c060048036038101906102bb91906116f9565b610643565b005b6102ca610650565b6040516102d79190611735565b60405180910390f35b6102fa60048036038101906102f59190611585565b610676565b60405161030791906115c1565b60405180910390f35b6103186106bf565b005b6103226106d3565b60405161032f919061156a565b60405180910390f35b6103406106e6565b60405161034d91906115c1565b60405180910390f35b61035e6106ec565b60405161036b9190611735565b60405180910390f35b61037c610715565b60405161038991906115c1565b60405180910390f35b61039a610726565b6040516103a79190611445565b60405180910390f35b6103ca60048036038101906103c5919061150f565b6107b8565b6040516103d7919061156a565b60405180910390f35b6103fa60048036038101906103f5919061150f565b61082f565b604051610407919061156a565b60405180910390f35b61042a60048036038101906104259190611750565b610852565b60405161043791906115c1565b60405180910390f35b61045a60048036038101906104559190611585565b6108d9565b005b610476600480360381019061047191906118d8565b61095c565b005b60606004805461048790611963565b80601f01602080910402602001604051908101604052809291908181526020018280546104b390611963565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b6000806105156109f9565b9050610522818585610a01565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000806105686109f9565b9050610575858285610bca565b610580858585610c56565b60019150509392505050565b60006012905090565b6000806105a06109f9565b90506105c18185856105b28589610852565b6105bc91906119c3565b610a01565b600191505092915050565b6105d4610ecf565b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61064d3382610f4d565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106c7610ecf565b6106d1600061111c565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6c06f125563f59f382da7000000081565b60606005805461073590611963565b80601f016020809104026020016040519081016040528092919081815260200182805461076190611963565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b6000806107c36109f9565b905060006107d18286610852565b905083811015610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90611a69565b60405180910390fd5b6108238286868403610a01565b60019250505092915050565b60008061083a6109f9565b9050610847818585610c56565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108e1610ecf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790611afb565b60405180910390fd5b6109598161111c565b50565b610964610ecf565b60005b82518110156109f45781600a600085848151811061098857610987611b1b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109ec90611b4a565b915050610967565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790611c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690611c96565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bbd91906115c1565b60405180910390a3505050565b6000610bd68484610852565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c505781811015610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990611d02565b60405180910390fd5b610c4f8484848403610a01565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90611d94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90611e26565b60405180910390fd5b610d3f8383836111e0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90611eb8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb691906115c1565b60405180910390a3610ec98484846113b0565b50505050565b610ed76109f9565b73ffffffffffffffffffffffffffffffffffffffff16610ef56106ec565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290611f24565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390611fb6565b60405180910390fd5b610fc8826000836111e0565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690612048565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161110391906115c1565b60405180910390a3611117836000846113b0565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112845750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba906120b4565b60405180910390fd5b600660009054906101000a900460ff16801561132c5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156113ab576007548161133e84610676565b61134891906119c3565b1115801561136b57506008548161135e84610676565b61136891906119c3565b10155b6113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190612120565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ef5780820151818401526020810190506113d4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611417826113b5565b61142181856113c0565b93506114318185602086016113d1565b61143a816113fb565b840191505092915050565b6000602082019050818103600083015261145f818461140c565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114a68261147b565b9050919050565b6114b68161149b565b81146114c157600080fd5b50565b6000813590506114d3816114ad565b92915050565b6000819050919050565b6114ec816114d9565b81146114f757600080fd5b50565b600081359050611509816114e3565b92915050565b6000806040838503121561152657611525611471565b5b6000611534858286016114c4565b9250506020611545858286016114fa565b9150509250929050565b60008115159050919050565b6115648161154f565b82525050565b600060208201905061157f600083018461155b565b92915050565b60006020828403121561159b5761159a611471565b5b60006115a9848285016114c4565b91505092915050565b6115bb816114d9565b82525050565b60006020820190506115d660008301846115b2565b92915050565b6000806000606084860312156115f5576115f4611471565b5b6000611603868287016114c4565b9350506020611614868287016114c4565b9250506040611625868287016114fa565b9150509250925092565b600060ff82169050919050565b6116458161162f565b82525050565b6000602082019050611660600083018461163c565b92915050565b61166f8161154f565b811461167a57600080fd5b50565b60008135905061168c81611666565b92915050565b600080600080608085870312156116ac576116ab611471565b5b60006116ba8782880161167d565b94505060206116cb878288016114c4565b93505060406116dc878288016114fa565b92505060606116ed878288016114fa565b91505092959194509250565b60006020828403121561170f5761170e611471565b5b600061171d848285016114fa565b91505092915050565b61172f8161149b565b82525050565b600060208201905061174a6000830184611726565b92915050565b6000806040838503121561176757611766611471565b5b6000611775858286016114c4565b9250506020611786858286016114c4565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6117cd826113fb565b810181811067ffffffffffffffff821117156117ec576117eb611795565b5b80604052505050565b60006117ff611467565b905061180b82826117c4565b919050565b600067ffffffffffffffff82111561182b5761182a611795565b5b602082029050602081019050919050565b600080fd5b600061185461184f84611810565b6117f5565b905080838252602082019050602084028301858111156118775761187661183c565b5b835b818110156118a0578061188c88826114c4565b845260208401935050602081019050611879565b5050509392505050565b600082601f8301126118bf576118be611790565b5b81356118cf848260208601611841565b91505092915050565b600080604083850312156118ef576118ee611471565b5b600083013567ffffffffffffffff81111561190d5761190c611476565b5b611919858286016118aa565b925050602061192a8582860161167d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061197b57607f821691505b60208210810361198e5761198d611934565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119ce826114d9565b91506119d9836114d9565b92508282019050808211156119f1576119f0611994565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a536025836113c0565b9150611a5e826119f7565b604082019050919050565b60006020820190508181036000830152611a8281611a46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ae56026836113c0565b9150611af082611a89565b604082019050919050565b60006020820190508181036000830152611b1481611ad8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611b55826114d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b8757611b86611994565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bee6024836113c0565b9150611bf982611b92565b604082019050919050565b60006020820190508181036000830152611c1d81611be1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c806022836113c0565b9150611c8b82611c24565b604082019050919050565b60006020820190508181036000830152611caf81611c73565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cec601d836113c0565b9150611cf782611cb6565b602082019050919050565b60006020820190508181036000830152611d1b81611cdf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d7e6025836113c0565b9150611d8982611d22565b604082019050919050565b60006020820190508181036000830152611dad81611d71565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e106023836113c0565b9150611e1b82611db4565b604082019050919050565b60006020820190508181036000830152611e3f81611e03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ea26026836113c0565b9150611ead82611e46565b604082019050919050565b60006020820190508181036000830152611ed181611e95565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f0e6020836113c0565b9150611f1982611ed8565b602082019050919050565b60006020820190508181036000830152611f3d81611f01565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fa06021836113c0565b9150611fab82611f44565b604082019050919050565b60006020820190508181036000830152611fcf81611f93565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120326022836113c0565b915061203d82611fd6565b604082019050919050565b6000602082019050818103600083015261206181612025565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061209e600b836113c0565b91506120a982612068565b602082019050919050565b600060208201905081810360008301526120cd81612091565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600061210a6006836113c0565b9150612115826120d4565b602082019050919050565b60006020820190508181036000830152612139816120fd565b905091905056fea2646970667358221220b06b3e44d976a6aa8cc474b5c65ffa328e7b44056ba01f0d4605d5c658f482e864736f6c63430008120033000000000000000000000000a5ba274ce9c13f09235c8ad72d6b086de6705f350000000000000000000000003587f6d57c52ec883f1021279e0b4f77224de8ec

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b4114610392578063a457c2d7146103b0578063a9059cbb146103e0578063dd62ed3e14610410578063f2fde38b14610440578063fb4544a41461045c5761014d565b806370a08231146102e0578063715018a614610310578063860a32ec1461031a57806389f9a1d3146103385780638da5cb5b14610356578063902d55a5146103745761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c578063395093511461025a5780633aa633aa1461028a57806342966c68146102a657806349bd5a5e146102c25761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d05780631ab99e12146101ee575b600080fd5b61015a610478565b6040516101679190611445565b60405180910390f35b61018a6004803603810190610185919061150f565b61050a565b604051610197919061156a565b60405180910390f35b6101ba60048036038101906101b59190611585565b61052d565b6040516101c7919061156a565b60405180910390f35b6101d861054d565b6040516101e591906115c1565b60405180910390f35b6101f6610557565b60405161020391906115c1565b60405180910390f35b610226600480360381019061022191906115dc565b61055d565b604051610233919061156a565b60405180910390f35b61024461058c565b604051610251919061164b565b60405180910390f35b610274600480360381019061026f919061150f565b610595565b604051610281919061156a565b60405180910390f35b6102a4600480360381019061029f9190611692565b6105cc565b005b6102c060048036038101906102bb91906116f9565b610643565b005b6102ca610650565b6040516102d79190611735565b60405180910390f35b6102fa60048036038101906102f59190611585565b610676565b60405161030791906115c1565b60405180910390f35b6103186106bf565b005b6103226106d3565b60405161032f919061156a565b60405180910390f35b6103406106e6565b60405161034d91906115c1565b60405180910390f35b61035e6106ec565b60405161036b9190611735565b60405180910390f35b61037c610715565b60405161038991906115c1565b60405180910390f35b61039a610726565b6040516103a79190611445565b60405180910390f35b6103ca60048036038101906103c5919061150f565b6107b8565b6040516103d7919061156a565b60405180910390f35b6103fa60048036038101906103f5919061150f565b61082f565b604051610407919061156a565b60405180910390f35b61042a60048036038101906104259190611750565b610852565b60405161043791906115c1565b60405180910390f35b61045a60048036038101906104559190611585565b6108d9565b005b610476600480360381019061047191906118d8565b61095c565b005b60606004805461048790611963565b80601f01602080910402602001604051908101604052809291908181526020018280546104b390611963565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b6000806105156109f9565b9050610522818585610a01565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000806105686109f9565b9050610575858285610bca565b610580858585610c56565b60019150509392505050565b60006012905090565b6000806105a06109f9565b90506105c18185856105b28589610852565b6105bc91906119c3565b610a01565b600191505092915050565b6105d4610ecf565b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b61064d3382610f4d565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106c7610ecf565b6106d1600061111c565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6c06f125563f59f382da7000000081565b60606005805461073590611963565b80601f016020809104026020016040519081016040528092919081815260200182805461076190611963565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b6000806107c36109f9565b905060006107d18286610852565b905083811015610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90611a69565b60405180910390fd5b6108238286868403610a01565b60019250505092915050565b60008061083a6109f9565b9050610847818585610c56565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108e1610ecf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790611afb565b60405180910390fd5b6109598161111c565b50565b610964610ecf565b60005b82518110156109f45781600a600085848151811061098857610987611b1b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109ec90611b4a565b915050610967565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790611c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad690611c96565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bbd91906115c1565b60405180910390a3505050565b6000610bd68484610852565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c505781811015610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990611d02565b60405180910390fd5b610c4f8484848403610a01565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90611d94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90611e26565b60405180910390fd5b610d3f8383836111e0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90611eb8565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb691906115c1565b60405180910390a3610ec98484846113b0565b50505050565b610ed76109f9565b73ffffffffffffffffffffffffffffffffffffffff16610ef56106ec565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290611f24565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390611fb6565b60405180910390fd5b610fc8826000836111e0565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690612048565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161110391906115c1565b60405180910390a3611117836000846113b0565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112845750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba906120b4565b60405180910390fd5b600660009054906101000a900460ff16801561132c5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156113ab576007548161133e84610676565b61134891906119c3565b1115801561136b57506008548161135e84610676565b61136891906119c3565b10155b6113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190612120565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ef5780820151818401526020810190506113d4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611417826113b5565b61142181856113c0565b93506114318185602086016113d1565b61143a816113fb565b840191505092915050565b6000602082019050818103600083015261145f818461140c565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114a68261147b565b9050919050565b6114b68161149b565b81146114c157600080fd5b50565b6000813590506114d3816114ad565b92915050565b6000819050919050565b6114ec816114d9565b81146114f757600080fd5b50565b600081359050611509816114e3565b92915050565b6000806040838503121561152657611525611471565b5b6000611534858286016114c4565b9250506020611545858286016114fa565b9150509250929050565b60008115159050919050565b6115648161154f565b82525050565b600060208201905061157f600083018461155b565b92915050565b60006020828403121561159b5761159a611471565b5b60006115a9848285016114c4565b91505092915050565b6115bb816114d9565b82525050565b60006020820190506115d660008301846115b2565b92915050565b6000806000606084860312156115f5576115f4611471565b5b6000611603868287016114c4565b9350506020611614868287016114c4565b9250506040611625868287016114fa565b9150509250925092565b600060ff82169050919050565b6116458161162f565b82525050565b6000602082019050611660600083018461163c565b92915050565b61166f8161154f565b811461167a57600080fd5b50565b60008135905061168c81611666565b92915050565b600080600080608085870312156116ac576116ab611471565b5b60006116ba8782880161167d565b94505060206116cb878288016114c4565b93505060406116dc878288016114fa565b92505060606116ed878288016114fa565b91505092959194509250565b60006020828403121561170f5761170e611471565b5b600061171d848285016114fa565b91505092915050565b61172f8161149b565b82525050565b600060208201905061174a6000830184611726565b92915050565b6000806040838503121561176757611766611471565b5b6000611775858286016114c4565b9250506020611786858286016114c4565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6117cd826113fb565b810181811067ffffffffffffffff821117156117ec576117eb611795565b5b80604052505050565b60006117ff611467565b905061180b82826117c4565b919050565b600067ffffffffffffffff82111561182b5761182a611795565b5b602082029050602081019050919050565b600080fd5b600061185461184f84611810565b6117f5565b905080838252602082019050602084028301858111156118775761187661183c565b5b835b818110156118a0578061188c88826114c4565b845260208401935050602081019050611879565b5050509392505050565b600082601f8301126118bf576118be611790565b5b81356118cf848260208601611841565b91505092915050565b600080604083850312156118ef576118ee611471565b5b600083013567ffffffffffffffff81111561190d5761190c611476565b5b611919858286016118aa565b925050602061192a8582860161167d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061197b57607f821691505b60208210810361198e5761198d611934565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119ce826114d9565b91506119d9836114d9565b92508282019050808211156119f1576119f0611994565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a536025836113c0565b9150611a5e826119f7565b604082019050919050565b60006020820190508181036000830152611a8281611a46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ae56026836113c0565b9150611af082611a89565b604082019050919050565b60006020820190508181036000830152611b1481611ad8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611b55826114d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b8757611b86611994565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bee6024836113c0565b9150611bf982611b92565b604082019050919050565b60006020820190508181036000830152611c1d81611be1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c806022836113c0565b9150611c8b82611c24565b604082019050919050565b60006020820190508181036000830152611caf81611c73565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cec601d836113c0565b9150611cf782611cb6565b602082019050919050565b60006020820190508181036000830152611d1b81611cdf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d7e6025836113c0565b9150611d8982611d22565b604082019050919050565b60006020820190508181036000830152611dad81611d71565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e106023836113c0565b9150611e1b82611db4565b604082019050919050565b60006020820190508181036000830152611e3f81611e03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ea26026836113c0565b9150611ead82611e46565b604082019050919050565b60006020820190508181036000830152611ed181611e95565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f0e6020836113c0565b9150611f1982611ed8565b602082019050919050565b60006020820190508181036000830152611f3d81611f01565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fa06021836113c0565b9150611fab82611f44565b604082019050919050565b60006020820190508181036000830152611fcf81611f93565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120326022836113c0565b915061203d82611fd6565b604082019050919050565b6000602082019050818103600083015261206181612025565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061209e600b836113c0565b91506120a982612068565b602082019050919050565b600060208201905081810360008301526120cd81612091565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600061210a6006836113c0565b9150612115826120d4565b602082019050919050565b60006020820190508181036000830152612139816120fd565b905091905056fea2646970667358221220b06b3e44d976a6aa8cc474b5c65ffa328e7b44056ba01f0d4605d5c658f482e864736f6c63430008120033

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

000000000000000000000000a5ba274ce9c13f09235c8ad72d6b086de6705f350000000000000000000000003587f6d57c52ec883f1021279e0b4f77224de8ec

-----Decoded View---------------
Arg [0] : _lpwallet (address): 0xa5ba274Ce9C13F09235c8aD72d6B086de6705f35
Arg [1] : _teamWallet (address): 0x3587F6D57C52ec883f1021279e0B4f77224de8eC

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5ba274ce9c13f09235c8ad72d6b086de6705f35
Arg [1] : 0000000000000000000000003587f6d57c52ec883f1021279e0b4f77224de8ec


Deployed Bytecode Sourcemap

20313:1597:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6441:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8792:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20562:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7561:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20489:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9573:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7403:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10277:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21102:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21826:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20527:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7732:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19461:103;;;:::i;:::-;;20425:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20451:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18813:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20358:60;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6660:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11018:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8065:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8321:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19719:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20862:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6441:100;6495:13;6528:5;6521:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6441:100;:::o;8792:201::-;8875:4;8892:13;8908:12;:10;:12::i;:::-;8892:28;;8931:32;8940:5;8947:7;8956:6;8931:8;:32::i;:::-;8981:4;8974:11;;;8792:201;;;;:::o;20562:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;7561:108::-;7622:7;7649:12;;7642:19;;7561:108;:::o;20489:31::-;;;;:::o;9573:295::-;9704:4;9721:15;9739:12;:10;:12::i;:::-;9721:30;;9762:38;9778:4;9784:7;9793:6;9762:15;:38::i;:::-;9811:27;9821:4;9827:2;9831:6;9811:9;:27::i;:::-;9856:4;9849:11;;;9573:295;;;;;:::o;7403:93::-;7461:5;7486:2;7479:9;;7403:93;:::o;10277:238::-;10365:4;10382:13;10398:12;:10;:12::i;:::-;10382:28;;10421:64;10430:5;10437:7;10474:10;10446:25;10456:5;10463:7;10446:9;:25::i;:::-;:38;;;;:::i;:::-;10421:8;:64::i;:::-;10503:4;10496:11;;;10277:238;;;;:::o;21102:301::-;18699:13;:11;:13::i;:::-;21252:8:::1;21242:7;;:18;;;;;;;;;;;;;;;;;;21287:14;21271:13;;:30;;;;;;;;;;;;;;;;;;21331:17;21312:16;:36;;;;21378:17;21359:16;:36;;;;21102:301:::0;;;;:::o;21826:81::-;21875:24;21881:10;21893:5;21875;:24::i;:::-;21826:81;:::o;20527:28::-;;;;;;;;;;;;;:::o;7732:127::-;7806:7;7833:9;:18;7843:7;7833:18;;;;;;;;;;;;;;;;7826:25;;7732:127;;;:::o;19461:103::-;18699:13;:11;:13::i;:::-;19526:30:::1;19553:1;19526:18;:30::i;:::-;19461:103::o:0;20425:19::-;;;;;;;;;;;;;:::o;20451:31::-;;;;:::o;18813:87::-;18859:7;18886:6;;;;;;;;;;;18879:13;;18813:87;:::o;20358:60::-;20397:21;20358:60;:::o;6660:104::-;6716:13;6749:7;6742:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6660:104;:::o;11018:436::-;11111:4;11128:13;11144:12;:10;:12::i;:::-;11128:28;;11167:24;11194:25;11204:5;11211:7;11194:9;:25::i;:::-;11167:52;;11258:15;11238:16;:35;;11230:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11351:60;11360:5;11367:7;11395:15;11376:16;:34;11351:8;:60::i;:::-;11442:4;11435:11;;;;11018:436;;;;:::o;8065:193::-;8144:4;8161:13;8177:12;:10;:12::i;:::-;8161:28;;8200;8210:5;8217:2;8221:6;8200:9;:28::i;:::-;8246:4;8239:11;;;8065:193;;;;:::o;8321:151::-;8410:7;8437:11;:18;8449:5;8437:18;;;;;;;;;;;;;;;:27;8456:7;8437:27;;;;;;;;;;;;;;;;8430:34;;8321:151;;;;:::o;19719:201::-;18699:13;:11;:13::i;:::-;19828:1:::1;19808:22;;:8;:22;;::::0;19800:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19884:28;19903:8;19884:18;:28::i;:::-;19719:201:::0;:::o;20862:232::-;18699:13;:11;:13::i;:::-;20979:9:::1;20974:113;20998:8;:15;20994:1;:19;20974:113;;;21060:15;21034:10;:23;21045:8;21054:1;21045:11;;;;;;;;:::i;:::-;;;;;;;;21034:23;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;21015:3;;;;;:::i;:::-;;;;20974:113;;;;20862:232:::0;;:::o;658:98::-;711:7;738:10;731:17;;658:98;:::o;15045:380::-;15198:1;15181:19;;:5;:19;;;15173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15279:1;15260:21;;:7;:21;;;15252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15363:6;15333:11;:18;15345:5;15333:18;;;;;;;;;;;;;;;:27;15352:7;15333:27;;;;;;;;;;;;;;;:36;;;;15401:7;15385:32;;15394:5;15385:32;;;15410:6;15385:32;;;;;;:::i;:::-;;;;;;;;15045:380;;;:::o;15716:453::-;15851:24;15878:25;15888:5;15895:7;15878:9;:25::i;:::-;15851:52;;15938:17;15918:16;:37;15914:248;;16000:6;15980:16;:26;;15972:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16084:51;16093:5;16100:7;16128:6;16109:16;:25;16084:8;:51::i;:::-;15914:248;15840:329;15716:453;;;:::o;11924:840::-;12071:1;12055:18;;:4;:18;;;12047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12148:1;12134:16;;:2;:16;;;12126:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12203:38;12224:4;12230:2;12234:6;12203:20;:38::i;:::-;12254:19;12276:9;:15;12286:4;12276:15;;;;;;;;;;;;;;;;12254:37;;12325:6;12310:11;:21;;12302:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:6;12428:11;:20;12410:9;:15;12420:4;12410:15;;;;;;;;;;;;;;;:38;;;;12645:6;12628:9;:13;12638:2;12628:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12695:2;12680:26;;12689:4;12680:26;;;12699:6;12680:26;;;;;;:::i;:::-;;;;;;;;12719:37;12739:4;12745:2;12749:6;12719:19;:37::i;:::-;12036:728;11924:840;;;:::o;18978:132::-;19053:12;:10;:12::i;:::-;19042:23;;:7;:5;:7::i;:::-;:23;;;19034:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18978:132::o;13932:675::-;14035:1;14016:21;;:7;:21;;;14008:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14088:49;14109:7;14126:1;14130:6;14088:20;:49::i;:::-;14150:22;14175:9;:18;14185:7;14175:18;;;;;;;;;;;;;;;;14150:43;;14230:6;14212:14;:24;;14204:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14349:6;14332:14;:23;14311:9;:18;14321:7;14311:18;;;;;;;;;;;;;;;:44;;;;14466:6;14450:12;;:22;;;;;;;;;;;14527:1;14501:37;;14510:7;14501:37;;;14531:6;14501:37;;;;;;:::i;:::-;;;;;;;;14551:48;14571:7;14588:1;14592:6;14551:19;:48::i;:::-;13997:610;13932:675;;:::o;20080:191::-;20154:16;20173:6;;;;;;;;;;;20154:25;;20199:8;20190:6;;:17;;;;;;;;;;;;;;;;;;20254:8;20223:40;;20244:8;20223:40;;;;;;;;;;;;20143:128;20080:191;:::o;21411:407::-;21563:10;:14;21574:2;21563:14;;;;;;;;;;;;;;;;;;;;;;;;;21562:15;:36;;;;;21582:10;:16;21593:4;21582:16;;;;;;;;;;;;;;;;;;;;;;;;;21581:17;21562:36;21554:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;21631:7;;;;;;;;;;;:32;;;;;21650:13;;;;;;;;;;;21642:21;;:4;:21;;;21631:32;21627:184;;;21720:16;;21710:6;21688:19;21704:2;21688:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;21772:16;;21762:6;21740:19;21756:2;21740:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21688:100;21680:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;21627:184;21411:407;;;:::o;17498:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:759::-;5532:6;5540;5548;5556;5605:3;5593:9;5584:7;5580:23;5576:33;5573:120;;;5612:79;;:::i;:::-;5573:120;5732:1;5757:50;5799:7;5790:6;5779:9;5775:22;5757:50;:::i;:::-;5747:60;;5703:114;5856:2;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5827:118;5984:2;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5955:118;6112:2;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6083:118;5449:759;;;;;;;:::o;6214:329::-;6273:6;6322:2;6310:9;6301:7;6297:23;6293:32;6290:119;;;6328:79;;:::i;:::-;6290:119;6448:1;6473:53;6518:7;6509:6;6498:9;6494:22;6473:53;:::i;:::-;6463:63;;6419:117;6214:329;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::o;6901:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:117::-;7490:1;7487;7480:12;7504:180;7552:77;7549:1;7542:88;7649:4;7646:1;7639:15;7673:4;7670:1;7663:15;7690:281;7773:27;7795:4;7773:27;:::i;:::-;7765:6;7761:40;7903:6;7891:10;7888:22;7867:18;7855:10;7852:34;7849:62;7846:88;;;7914:18;;:::i;:::-;7846:88;7954:10;7950:2;7943:22;7733:238;7690:281;;:::o;7977:129::-;8011:6;8038:20;;:::i;:::-;8028:30;;8067:33;8095:4;8087:6;8067:33;:::i;:::-;7977:129;;;:::o;8112:311::-;8189:4;8279:18;8271:6;8268:30;8265:56;;;8301:18;;:::i;:::-;8265:56;8351:4;8343:6;8339:17;8331:25;;8411:4;8405;8401:15;8393:23;;8112:311;;;:::o;8429:117::-;8538:1;8535;8528:12;8569:710;8665:5;8690:81;8706:64;8763:6;8706:64;:::i;:::-;8690:81;:::i;:::-;8681:90;;8791:5;8820:6;8813:5;8806:21;8854:4;8847:5;8843:16;8836:23;;8907:4;8899:6;8895:17;8887:6;8883:30;8936:3;8928:6;8925:15;8922:122;;;8955:79;;:::i;:::-;8922:122;9070:6;9053:220;9087:6;9082:3;9079:15;9053:220;;;9162:3;9191:37;9224:3;9212:10;9191:37;:::i;:::-;9186:3;9179:50;9258:4;9253:3;9249:14;9242:21;;9129:144;9113:4;9108:3;9104:14;9097:21;;9053:220;;;9057:21;8671:608;;8569:710;;;;;:::o;9302:370::-;9373:5;9422:3;9415:4;9407:6;9403:17;9399:27;9389:122;;9430:79;;:::i;:::-;9389:122;9547:6;9534:20;9572:94;9662:3;9654:6;9647:4;9639:6;9635:17;9572:94;:::i;:::-;9563:103;;9379:293;9302:370;;;;:::o;9678:678::-;9768:6;9776;9825:2;9813:9;9804:7;9800:23;9796:32;9793:119;;;9831:79;;:::i;:::-;9793:119;9979:1;9968:9;9964:17;9951:31;10009:18;10001:6;9998:30;9995:117;;;10031:79;;:::i;:::-;9995:117;10136:78;10206:7;10197:6;10186:9;10182:22;10136:78;:::i;:::-;10126:88;;9922:302;10263:2;10289:50;10331:7;10322:6;10311:9;10307:22;10289:50;:::i;:::-;10279:60;;10234:115;9678:678;;;;;:::o;10362:180::-;10410:77;10407:1;10400:88;10507:4;10504:1;10497:15;10531:4;10528:1;10521:15;10548:320;10592:6;10629:1;10623:4;10619:12;10609:22;;10676:1;10670:4;10666:12;10697:18;10687:81;;10753:4;10745:6;10741:17;10731:27;;10687:81;10815:2;10807:6;10804:14;10784:18;10781:38;10778:84;;10834:18;;:::i;:::-;10778:84;10599:269;10548:320;;;:::o;10874:180::-;10922:77;10919:1;10912:88;11019:4;11016:1;11009:15;11043:4;11040:1;11033:15;11060:191;11100:3;11119:20;11137:1;11119:20;:::i;:::-;11114:25;;11153:20;11171:1;11153:20;:::i;:::-;11148:25;;11196:1;11193;11189:9;11182:16;;11217:3;11214:1;11211:10;11208:36;;;11224:18;;:::i;:::-;11208:36;11060:191;;;;:::o;11257:224::-;11397:34;11393:1;11385:6;11381:14;11374:58;11466:7;11461:2;11453:6;11449:15;11442:32;11257:224;:::o;11487:366::-;11629:3;11650:67;11714:2;11709:3;11650:67;:::i;:::-;11643:74;;11726:93;11815:3;11726:93;:::i;:::-;11844:2;11839:3;11835:12;11828:19;;11487:366;;;:::o;11859:419::-;12025:4;12063:2;12052:9;12048:18;12040:26;;12112:9;12106:4;12102:20;12098:1;12087:9;12083:17;12076:47;12140:131;12266:4;12140:131;:::i;:::-;12132:139;;11859:419;;;:::o;12284:225::-;12424:34;12420:1;12412:6;12408:14;12401:58;12493:8;12488:2;12480:6;12476:15;12469:33;12284:225;:::o;12515:366::-;12657:3;12678:67;12742:2;12737:3;12678:67;:::i;:::-;12671:74;;12754:93;12843:3;12754:93;:::i;:::-;12872:2;12867:3;12863:12;12856:19;;12515:366;;;:::o;12887:419::-;13053:4;13091:2;13080:9;13076:18;13068:26;;13140:9;13134:4;13130:20;13126:1;13115:9;13111:17;13104:47;13168:131;13294:4;13168:131;:::i;:::-;13160:139;;12887:419;;;:::o;13312:180::-;13360:77;13357:1;13350:88;13457:4;13454:1;13447:15;13481:4;13478:1;13471:15;13498:233;13537:3;13560:24;13578:5;13560:24;:::i;:::-;13551:33;;13606:66;13599:5;13596:77;13593:103;;13676:18;;:::i;:::-;13593:103;13723:1;13716:5;13712:13;13705:20;;13498:233;;;:::o;13737:223::-;13877:34;13873:1;13865:6;13861:14;13854:58;13946:6;13941:2;13933:6;13929:15;13922:31;13737:223;:::o;13966:366::-;14108:3;14129:67;14193:2;14188:3;14129:67;:::i;:::-;14122:74;;14205:93;14294:3;14205:93;:::i;:::-;14323:2;14318:3;14314:12;14307:19;;13966:366;;;:::o;14338:419::-;14504:4;14542:2;14531:9;14527:18;14519:26;;14591:9;14585:4;14581:20;14577:1;14566:9;14562:17;14555:47;14619:131;14745:4;14619:131;:::i;:::-;14611:139;;14338:419;;;:::o;14763:221::-;14903:34;14899:1;14891:6;14887:14;14880:58;14972:4;14967:2;14959:6;14955:15;14948:29;14763:221;:::o;14990:366::-;15132:3;15153:67;15217:2;15212:3;15153:67;:::i;:::-;15146:74;;15229:93;15318:3;15229:93;:::i;:::-;15347:2;15342:3;15338:12;15331:19;;14990:366;;;:::o;15362:419::-;15528:4;15566:2;15555:9;15551:18;15543:26;;15615:9;15609:4;15605:20;15601:1;15590:9;15586:17;15579:47;15643:131;15769:4;15643:131;:::i;:::-;15635:139;;15362:419;;;:::o;15787:179::-;15927:31;15923:1;15915:6;15911:14;15904:55;15787:179;:::o;15972:366::-;16114:3;16135:67;16199:2;16194:3;16135:67;:::i;:::-;16128:74;;16211:93;16300:3;16211:93;:::i;:::-;16329:2;16324:3;16320:12;16313:19;;15972:366;;;:::o;16344:419::-;16510:4;16548:2;16537:9;16533:18;16525:26;;16597:9;16591:4;16587:20;16583:1;16572:9;16568:17;16561:47;16625:131;16751:4;16625:131;:::i;:::-;16617:139;;16344:419;;;:::o;16769:224::-;16909:34;16905:1;16897:6;16893:14;16886:58;16978:7;16973:2;16965:6;16961:15;16954:32;16769:224;:::o;16999:366::-;17141:3;17162:67;17226:2;17221:3;17162:67;:::i;:::-;17155:74;;17238:93;17327:3;17238:93;:::i;:::-;17356:2;17351:3;17347:12;17340:19;;16999:366;;;:::o;17371:419::-;17537:4;17575:2;17564:9;17560:18;17552:26;;17624:9;17618:4;17614:20;17610:1;17599:9;17595:17;17588:47;17652:131;17778:4;17652:131;:::i;:::-;17644:139;;17371:419;;;:::o;17796:222::-;17936:34;17932:1;17924:6;17920:14;17913:58;18005:5;18000:2;17992:6;17988:15;17981:30;17796:222;:::o;18024:366::-;18166:3;18187:67;18251:2;18246:3;18187:67;:::i;:::-;18180:74;;18263:93;18352:3;18263:93;:::i;:::-;18381:2;18376:3;18372:12;18365:19;;18024:366;;;:::o;18396:419::-;18562:4;18600:2;18589:9;18585:18;18577:26;;18649:9;18643:4;18639:20;18635:1;18624:9;18620:17;18613:47;18677:131;18803:4;18677:131;:::i;:::-;18669:139;;18396:419;;;:::o;18821:225::-;18961:34;18957:1;18949:6;18945:14;18938:58;19030:8;19025:2;19017:6;19013:15;19006:33;18821:225;:::o;19052:366::-;19194:3;19215:67;19279:2;19274:3;19215:67;:::i;:::-;19208:74;;19291:93;19380:3;19291:93;:::i;:::-;19409:2;19404:3;19400:12;19393:19;;19052:366;;;:::o;19424:419::-;19590:4;19628:2;19617:9;19613:18;19605:26;;19677:9;19671:4;19667:20;19663:1;19652:9;19648:17;19641:47;19705:131;19831:4;19705:131;:::i;:::-;19697:139;;19424:419;;;:::o;19849:182::-;19989:34;19985:1;19977:6;19973:14;19966:58;19849:182;:::o;20037:366::-;20179:3;20200:67;20264:2;20259:3;20200:67;:::i;:::-;20193:74;;20276:93;20365:3;20276:93;:::i;:::-;20394:2;20389:3;20385:12;20378:19;;20037:366;;;:::o;20409:419::-;20575:4;20613:2;20602:9;20598:18;20590:26;;20662:9;20656:4;20652:20;20648:1;20637:9;20633:17;20626:47;20690:131;20816:4;20690:131;:::i;:::-;20682:139;;20409:419;;;:::o;20834:220::-;20974:34;20970:1;20962:6;20958:14;20951:58;21043:3;21038:2;21030:6;21026:15;21019:28;20834:220;:::o;21060:366::-;21202:3;21223:67;21287:2;21282:3;21223:67;:::i;:::-;21216:74;;21299:93;21388:3;21299:93;:::i;:::-;21417:2;21412:3;21408:12;21401:19;;21060:366;;;:::o;21432:419::-;21598:4;21636:2;21625:9;21621:18;21613:26;;21685:9;21679:4;21675:20;21671:1;21660:9;21656:17;21649:47;21713:131;21839:4;21713:131;:::i;:::-;21705:139;;21432:419;;;:::o;21857:221::-;21997:34;21993:1;21985:6;21981:14;21974:58;22066:4;22061:2;22053:6;22049:15;22042:29;21857:221;:::o;22084:366::-;22226:3;22247:67;22311:2;22306:3;22247:67;:::i;:::-;22240:74;;22323:93;22412:3;22323:93;:::i;:::-;22441:2;22436:3;22432:12;22425:19;;22084:366;;;:::o;22456:419::-;22622:4;22660:2;22649:9;22645:18;22637:26;;22709:9;22703:4;22699:20;22695:1;22684:9;22680:17;22673:47;22737:131;22863:4;22737:131;:::i;:::-;22729:139;;22456:419;;;:::o;22881:161::-;23021:13;23017:1;23009:6;23005:14;22998:37;22881:161;:::o;23048:366::-;23190:3;23211:67;23275:2;23270:3;23211:67;:::i;:::-;23204:74;;23287:93;23376:3;23287:93;:::i;:::-;23405:2;23400:3;23396:12;23389:19;;23048:366;;;:::o;23420:419::-;23586:4;23624:2;23613:9;23609:18;23601:26;;23673:9;23667:4;23663:20;23659:1;23648:9;23644:17;23637:47;23701:131;23827:4;23701:131;:::i;:::-;23693:139;;23420:419;;;:::o;23845:156::-;23985:8;23981:1;23973:6;23969:14;23962:32;23845:156;:::o;24007:365::-;24149:3;24170:66;24234:1;24229:3;24170:66;:::i;:::-;24163:73;;24245:93;24334:3;24245:93;:::i;:::-;24363:2;24358:3;24354:12;24347:19;;24007:365;;;:::o;24378:419::-;24544:4;24582:2;24571:9;24567:18;24559:26;;24631:9;24625:4;24621:20;24617:1;24606:9;24602:17;24595:47;24659:131;24785:4;24659:131;:::i;:::-;24651:139;;24378:419;;;:::o

Swarm Source

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