ETH Price: $3,467.89 (-1.39%)
Gas: 3 Gwei

Token

POWELLUP (PWLLUP)
 

Overview

Max Total Supply

420,690,000,000 PWLLUP

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,901,668,621.295533807716413787 PWLLUP

Value
$0.00
0x7046517af490ea1899b0f0e5b6d7b016c22aad07
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:
POWELLUP

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-04-22
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.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 {}
}

// File: PWLLUP.sol


pragma solidity ^0.8.0;



contract POWELLUP is Ownable, ERC20 {
    bool public limited;
    bool public allowed = true;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("POWELLUP", "PWLLUP") {
        _mint(msg.sender, 420690000000 * 10 ** decimals());
    }
 
    function blacklist(address[] calldata _address, bool[] calldata _isBlacklisting) external onlyOwner {
        for (uint256 i = 0; i < _address.length;) {
            blacklists[_address[i]] = _isBlacklisting[i];
            unchecked {i++;}
        }
    }

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

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

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

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

    function transferFrom(
        address from, 
        address to, 
        uint256 amount
    ) public virtual override open returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

    modifier open() {
        require(allowed);
        _;
    }
}

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":[],"name":"allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"blacklist","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"},{"internalType":"bool","name":"al","type":"bool"}],"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"}]

60806040526001600660016101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600881526020017f504f57454c4c55500000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f50574c4c55500000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012660201b60201c565b6200012e60201b60201c565b8160049081620000ca919062000976565b508060059081620000dc919062000976565b5050506200012033620000f4620001f260201b60201c565b600a62000102919062000bed565b6461f313f88062000114919062000c3e565b620001fb60201b60201c565b62000ecb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000cea565b60405180910390fd5b62000281600083836200036960201b60201c565b806003600082825462000295919062000d0c565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000349919062000d58565b60405180910390a362000365600083836200068560201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200040e5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004479062000dc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200057357620004b76200068a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806200052b5750620004fc6200068a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200056d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005649062000e37565b60405180910390fd5b62000680565b600660009054906101000a900460ff168015620005dd5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200067f5760075481620005fd84620006b360201b6200062c1760201c565b62000609919062000d0c565b111580156200063c5750600854816200062d84620006b360201b6200062c1760201c565b62000639919062000d0c565b10155b6200067e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006759062000ea9565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200077e57607f821691505b60208210810362000794576200079362000736565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007bf565b6200080a8683620007bf565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000857620008516200084b8462000822565b6200082c565b62000822565b9050919050565b6000819050919050565b620008738362000836565b6200088b62000882826200085e565b848454620007cc565b825550505050565b600090565b620008a262000893565b620008af81848462000868565b505050565b5b81811015620008d757620008cb60008262000898565b600181019050620008b5565b5050565b601f8211156200092657620008f0816200079a565b620008fb84620007af565b810160208510156200090b578190505b620009236200091a85620007af565b830182620008b4565b50505b505050565b600082821c905092915050565b60006200094b600019846008026200092b565b1980831691505092915050565b600062000966838362000938565b9150826002028217905092915050565b6200098182620006fc565b67ffffffffffffffff8111156200099d576200099c62000707565b5b620009a9825462000765565b620009b6828285620008db565b600060209050601f831160018114620009ee5760008415620009d9578287015190505b620009e5858262000958565b86555062000a55565b601f198416620009fe866200079a565b60005b8281101562000a285784890151825560018201915060208501945060208101905062000a01565b8683101562000a48578489015162000a44601f89168262000938565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000aeb5780860481111562000ac35762000ac262000a5d565b5b600185161562000ad35780820291505b808102905062000ae38562000a8c565b945062000aa3565b94509492505050565b60008262000b06576001905062000bd9565b8162000b16576000905062000bd9565b816001811462000b2f576002811462000b3a5762000b70565b600191505062000bd9565b60ff84111562000b4f5762000b4e62000a5d565b5b8360020a91508482111562000b695762000b6862000a5d565b5b5062000bd9565b5060208310610133831016604e8410600b841016171562000baa5782820a90508381111562000ba45762000ba362000a5d565b5b62000bd9565b62000bb9848484600162000a99565b9250905081840481111562000bd35762000bd262000a5d565b5b81810290505b9392505050565b600060ff82169050919050565b600062000bfa8262000822565b915062000c078362000be0565b925062000c367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000af4565b905092915050565b600062000c4b8262000822565b915062000c588362000822565b925082820262000c688162000822565b9150828204841483151762000c825762000c8162000a5d565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cd2601f8362000c89565b915062000cdf8262000c9a565b602082019050919050565b6000602082019050818103600083015262000d058162000cc3565b9050919050565b600062000d198262000822565b915062000d268362000822565b925082820190508082111562000d415762000d4062000a5d565b5b92915050565b62000d528162000822565b82525050565b600060208201905062000d6f600083018462000d47565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000dad600b8362000c89565b915062000dba8262000d75565b602082019050919050565b6000602082019050818103600083015262000de08162000d9e565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000e1f60168362000c89565b915062000e2c8262000de7565b602082019050919050565b6000602082019050818103600083015262000e528162000e10565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000e9160068362000c89565b915062000e9e8262000e59565b602082019050919050565b6000602082019050818103600083015262000ec48162000e82565b9050919050565b6122e08062000edb6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610394578063a9059cbb146103c4578063afd38184146103f4578063dd62ed3e14610410578063f2fde38b14610440578063f756d4111461045c5761014d565b806370a08231146102e2578063715018a614610312578063860a32ec1461031c57806389f9a1d31461033a5780638da5cb5b1461035857806395d89b41146103765761014d565b80631ab99e12116101155780631ab99e121461020c57806323b872dd1461022a578063313ce5671461025a578063395093511461027857806342966c68146102a857806349bd5a5e146102c45761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d057806319e1fca4146101ee575b600080fd5b61015a610478565b60405161016791906115bc565b60405180910390f35b61018a6004803603810190610185919061167c565b61050a565b60405161019791906116d7565b60405180910390f35b6101ba60048036038101906101b591906116f2565b61052d565b6040516101c791906116d7565b60405180910390f35b6101d861054d565b6040516101e5919061172e565b60405180910390f35b6101f6610557565b60405161020391906116d7565b60405180910390f35b61021461056a565b604051610221919061172e565b60405180910390f35b610244600480360381019061023f9190611749565b610570565b60405161025191906116d7565b60405180910390f35b6102626105b9565b60405161026f91906117b8565b60405180910390f35b610292600480360381019061028d919061167c565b6105c2565b60405161029f91906116d7565b60405180910390f35b6102c260048036038101906102bd91906117d3565b6105f9565b005b6102cc610606565b6040516102d9919061180f565b60405180910390f35b6102fc60048036038101906102f791906116f2565b61062c565b604051610309919061172e565b60405180910390f35b61031a610675565b005b610324610689565b60405161033191906116d7565b60405180910390f35b61034261069c565b60405161034f919061172e565b60405180910390f35b6103606106a2565b60405161036d919061180f565b60405180910390f35b61037e6106cb565b60405161038b91906115bc565b60405180910390f35b6103ae60048036038101906103a9919061167c565b61075d565b6040516103bb91906116d7565b60405180910390f35b6103de60048036038101906103d9919061167c565b6107d4565b6040516103eb91906116d7565b60405180910390f35b61040e600480360381019061040991906118e5565b6107f7565b005b61042a60048036038101906104259190611966565b6108c6565b604051610437919061172e565b60405180910390f35b61045a600480360381019061045591906116f2565b61094d565b005b610476600480360381019061047191906119d2565b6109d0565b005b60606004805461048790611a7c565b80601f01602080910402602001604051908101604052809291908181526020018280546104b390611a7c565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b600080610515610a62565b9050610522818585610a6a565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b600660019054906101000a900460ff1681565b60085481565b6000600660019054906101000a900460ff1661058b57600080fd5b6000610595610a62565b90506105a2858285610c33565b6105ad858585610cbf565b60019150509392505050565b60006012905090565b6000806105cd610a62565b90506105ee8185856105df85896108c6565b6105e99190611adc565b610a6a565b600191505092915050565b6106033382610f38565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61067d611107565b6106876000611185565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106da90611a7c565b80601f016020809104026020016040519081016040528092919081815260200182805461070690611a7c565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768610a62565b9050600061077682866108c6565b9050838110156107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b290611b82565b60405180910390fd5b6107c88286868403610a6a565b60019250505092915050565b6000806107df610a62565b90506107ec818585610cbf565b600191505092915050565b6107ff611107565b60005b848490508110156108bf578282828181106108205761081f611ba2565b5b90506020020160208101906108359190611bd1565b600a600087878581811061084c5761084b611ba2565b5b905060200201602081019061086191906116f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610802565b5050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610955611107565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90611c70565b60405180910390fd5b6109cd81611185565b50565b6109d8611107565b84600660006101000a81548160ff02191690831515021790555083600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826007819055508160088190555080600660016101000a81548160ff0219169083151502179055505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090611d02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90611d94565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c26919061172e565b60405180910390a3505050565b6000610c3f84846108c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cb95781811015610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611e00565b60405180910390fd5b610cb88484848403610a6a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590611e92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490611f24565b60405180910390fd5b610da8838383611249565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611fb6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f1f919061172e565b60405180910390a3610f32848484611527565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612048565b60405180910390fd5b610fb382600083611249565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561103a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611031906120da565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ee919061172e565b60405180910390a361110283600084611527565b505050565b61110f610a62565b73ffffffffffffffffffffffffffffffffffffffff1661112d6106a2565b73ffffffffffffffffffffffffffffffffffffffff1614611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90612146565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112ed5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61132c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611323906121b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036114395761138a6106a2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113f557506113c66106a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061221e565b60405180910390fd5b611522565b600660009054906101000a900460ff1680156114a25750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561152157600754816114b48461062c565b6114be9190611adc565b111580156114e15750600854816114d48461062c565b6114de9190611adc565b10155b611520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115179061228a565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561156657808201518184015260208101905061154b565b60008484015250505050565b6000601f19601f8301169050919050565b600061158e8261152c565b6115988185611537565b93506115a8818560208601611548565b6115b181611572565b840191505092915050565b600060208201905081810360008301526115d68184611583565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611613826115e8565b9050919050565b61162381611608565b811461162e57600080fd5b50565b6000813590506116408161161a565b92915050565b6000819050919050565b61165981611646565b811461166457600080fd5b50565b60008135905061167681611650565b92915050565b60008060408385031215611693576116926115de565b5b60006116a185828601611631565b92505060206116b285828601611667565b9150509250929050565b60008115159050919050565b6116d1816116bc565b82525050565b60006020820190506116ec60008301846116c8565b92915050565b600060208284031215611708576117076115de565b5b600061171684828501611631565b91505092915050565b61172881611646565b82525050565b6000602082019050611743600083018461171f565b92915050565b600080600060608486031215611762576117616115de565b5b600061177086828701611631565b935050602061178186828701611631565b925050604061179286828701611667565b9150509250925092565b600060ff82169050919050565b6117b28161179c565b82525050565b60006020820190506117cd60008301846117a9565b92915050565b6000602082840312156117e9576117e86115de565b5b60006117f784828501611667565b91505092915050565b61180981611608565b82525050565b60006020820190506118246000830184611800565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261184f5761184e61182a565b5b8235905067ffffffffffffffff81111561186c5761186b61182f565b5b60208301915083602082028301111561188857611887611834565b5b9250929050565b60008083601f8401126118a5576118a461182a565b5b8235905067ffffffffffffffff8111156118c2576118c161182f565b5b6020830191508360208202830111156118de576118dd611834565b5b9250929050565b600080600080604085870312156118ff576118fe6115de565b5b600085013567ffffffffffffffff81111561191d5761191c6115e3565b5b61192987828801611839565b9450945050602085013567ffffffffffffffff81111561194c5761194b6115e3565b5b6119588782880161188f565b925092505092959194509250565b6000806040838503121561197d5761197c6115de565b5b600061198b85828601611631565b925050602061199c85828601611631565b9150509250929050565b6119af816116bc565b81146119ba57600080fd5b50565b6000813590506119cc816119a6565b92915050565b600080600080600060a086880312156119ee576119ed6115de565b5b60006119fc888289016119bd565b9550506020611a0d88828901611631565b9450506040611a1e88828901611667565b9350506060611a2f88828901611667565b9250506080611a40888289016119bd565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a9457607f821691505b602082108103611aa757611aa6611a4d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ae782611646565b9150611af283611646565b9250828201905080821115611b0a57611b09611aad565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b6c602583611537565b9150611b7782611b10565b604082019050919050565b60006020820190508181036000830152611b9b81611b5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611be757611be66115de565b5b6000611bf5848285016119bd565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c5a602683611537565b9150611c6582611bfe565b604082019050919050565b60006020820190508181036000830152611c8981611c4d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cec602483611537565b9150611cf782611c90565b604082019050919050565b60006020820190508181036000830152611d1b81611cdf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d7e602283611537565b9150611d8982611d22565b604082019050919050565b60006020820190508181036000830152611dad81611d71565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611dea601d83611537565b9150611df582611db4565b602082019050919050565b60006020820190508181036000830152611e1981611ddd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e7c602583611537565b9150611e8782611e20565b604082019050919050565b60006020820190508181036000830152611eab81611e6f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0e602383611537565b9150611f1982611eb2565b604082019050919050565b60006020820190508181036000830152611f3d81611f01565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fa0602683611537565b9150611fab82611f44565b604082019050919050565b60006020820190508181036000830152611fcf81611f93565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612032602183611537565b915061203d82611fd6565b604082019050919050565b6000602082019050818103600083015261206181612025565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120c4602283611537565b91506120cf82612068565b604082019050919050565b600060208201905081810360008301526120f3816120b7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612130602083611537565b915061213b826120fa565b602082019050919050565b6000602082019050818103600083015261215f81612123565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061219c600b83611537565b91506121a782612166565b602082019050919050565b600060208201905081810360008301526121cb8161218f565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000612208601683611537565b9150612213826121d2565b602082019050919050565b60006020820190508181036000830152612237816121fb565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612274600683611537565b915061227f8261223e565b602082019050919050565b600060208201905081810360008301526122a381612267565b905091905056fea2646970667358221220aa451e19f1adf3d2580224ce957b672153884c85f92284ead5f92200133cdeee64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610394578063a9059cbb146103c4578063afd38184146103f4578063dd62ed3e14610410578063f2fde38b14610440578063f756d4111461045c5761014d565b806370a08231146102e2578063715018a614610312578063860a32ec1461031c57806389f9a1d31461033a5780638da5cb5b1461035857806395d89b41146103765761014d565b80631ab99e12116101155780631ab99e121461020c57806323b872dd1461022a578063313ce5671461025a578063395093511461027857806342966c68146102a857806349bd5a5e146102c45761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d057806319e1fca4146101ee575b600080fd5b61015a610478565b60405161016791906115bc565b60405180910390f35b61018a6004803603810190610185919061167c565b61050a565b60405161019791906116d7565b60405180910390f35b6101ba60048036038101906101b591906116f2565b61052d565b6040516101c791906116d7565b60405180910390f35b6101d861054d565b6040516101e5919061172e565b60405180910390f35b6101f6610557565b60405161020391906116d7565b60405180910390f35b61021461056a565b604051610221919061172e565b60405180910390f35b610244600480360381019061023f9190611749565b610570565b60405161025191906116d7565b60405180910390f35b6102626105b9565b60405161026f91906117b8565b60405180910390f35b610292600480360381019061028d919061167c565b6105c2565b60405161029f91906116d7565b60405180910390f35b6102c260048036038101906102bd91906117d3565b6105f9565b005b6102cc610606565b6040516102d9919061180f565b60405180910390f35b6102fc60048036038101906102f791906116f2565b61062c565b604051610309919061172e565b60405180910390f35b61031a610675565b005b610324610689565b60405161033191906116d7565b60405180910390f35b61034261069c565b60405161034f919061172e565b60405180910390f35b6103606106a2565b60405161036d919061180f565b60405180910390f35b61037e6106cb565b60405161038b91906115bc565b60405180910390f35b6103ae60048036038101906103a9919061167c565b61075d565b6040516103bb91906116d7565b60405180910390f35b6103de60048036038101906103d9919061167c565b6107d4565b6040516103eb91906116d7565b60405180910390f35b61040e600480360381019061040991906118e5565b6107f7565b005b61042a60048036038101906104259190611966565b6108c6565b604051610437919061172e565b60405180910390f35b61045a600480360381019061045591906116f2565b61094d565b005b610476600480360381019061047191906119d2565b6109d0565b005b60606004805461048790611a7c565b80601f01602080910402602001604051908101604052809291908181526020018280546104b390611a7c565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b600080610515610a62565b9050610522818585610a6a565b600191505092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b600660019054906101000a900460ff1681565b60085481565b6000600660019054906101000a900460ff1661058b57600080fd5b6000610595610a62565b90506105a2858285610c33565b6105ad858585610cbf565b60019150509392505050565b60006012905090565b6000806105cd610a62565b90506105ee8185856105df85896108c6565b6105e99190611adc565b610a6a565b600191505092915050565b6106033382610f38565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61067d611107565b6106876000611185565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106da90611a7c565b80601f016020809104026020016040519081016040528092919081815260200182805461070690611a7c565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768610a62565b9050600061077682866108c6565b9050838110156107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b290611b82565b60405180910390fd5b6107c88286868403610a6a565b60019250505092915050565b6000806107df610a62565b90506107ec818585610cbf565b600191505092915050565b6107ff611107565b60005b848490508110156108bf578282828181106108205761081f611ba2565b5b90506020020160208101906108359190611bd1565b600a600087878581811061084c5761084b611ba2565b5b905060200201602081019061086191906116f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610802565b5050505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610955611107565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90611c70565b60405180910390fd5b6109cd81611185565b50565b6109d8611107565b84600660006101000a81548160ff02191690831515021790555083600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826007819055508160088190555080600660016101000a81548160ff0219169083151502179055505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090611d02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90611d94565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c26919061172e565b60405180910390a3505050565b6000610c3f84846108c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cb95781811015610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290611e00565b60405180910390fd5b610cb88484848403610a6a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590611e92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490611f24565b60405180910390fd5b610da8838383611249565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690611fb6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f1f919061172e565b60405180910390a3610f32848484611527565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90612048565b60405180910390fd5b610fb382600083611249565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561103a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611031906120da565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ee919061172e565b60405180910390a361110283600084611527565b505050565b61110f610a62565b73ffffffffffffffffffffffffffffffffffffffff1661112d6106a2565b73ffffffffffffffffffffffffffffffffffffffff1614611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90612146565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112ed5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61132c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611323906121b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036114395761138a6106a2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806113f557506113c66106a2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061221e565b60405180910390fd5b611522565b600660009054906101000a900460ff1680156114a25750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561152157600754816114b48461062c565b6114be9190611adc565b111580156114e15750600854816114d48461062c565b6114de9190611adc565b10155b611520576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115179061228a565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561156657808201518184015260208101905061154b565b60008484015250505050565b6000601f19601f8301169050919050565b600061158e8261152c565b6115988185611537565b93506115a8818560208601611548565b6115b181611572565b840191505092915050565b600060208201905081810360008301526115d68184611583565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611613826115e8565b9050919050565b61162381611608565b811461162e57600080fd5b50565b6000813590506116408161161a565b92915050565b6000819050919050565b61165981611646565b811461166457600080fd5b50565b60008135905061167681611650565b92915050565b60008060408385031215611693576116926115de565b5b60006116a185828601611631565b92505060206116b285828601611667565b9150509250929050565b60008115159050919050565b6116d1816116bc565b82525050565b60006020820190506116ec60008301846116c8565b92915050565b600060208284031215611708576117076115de565b5b600061171684828501611631565b91505092915050565b61172881611646565b82525050565b6000602082019050611743600083018461171f565b92915050565b600080600060608486031215611762576117616115de565b5b600061177086828701611631565b935050602061178186828701611631565b925050604061179286828701611667565b9150509250925092565b600060ff82169050919050565b6117b28161179c565b82525050565b60006020820190506117cd60008301846117a9565b92915050565b6000602082840312156117e9576117e86115de565b5b60006117f784828501611667565b91505092915050565b61180981611608565b82525050565b60006020820190506118246000830184611800565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261184f5761184e61182a565b5b8235905067ffffffffffffffff81111561186c5761186b61182f565b5b60208301915083602082028301111561188857611887611834565b5b9250929050565b60008083601f8401126118a5576118a461182a565b5b8235905067ffffffffffffffff8111156118c2576118c161182f565b5b6020830191508360208202830111156118de576118dd611834565b5b9250929050565b600080600080604085870312156118ff576118fe6115de565b5b600085013567ffffffffffffffff81111561191d5761191c6115e3565b5b61192987828801611839565b9450945050602085013567ffffffffffffffff81111561194c5761194b6115e3565b5b6119588782880161188f565b925092505092959194509250565b6000806040838503121561197d5761197c6115de565b5b600061198b85828601611631565b925050602061199c85828601611631565b9150509250929050565b6119af816116bc565b81146119ba57600080fd5b50565b6000813590506119cc816119a6565b92915050565b600080600080600060a086880312156119ee576119ed6115de565b5b60006119fc888289016119bd565b9550506020611a0d88828901611631565b9450506040611a1e88828901611667565b9350506060611a2f88828901611667565b9250506080611a40888289016119bd565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a9457607f821691505b602082108103611aa757611aa6611a4d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ae782611646565b9150611af283611646565b9250828201905080821115611b0a57611b09611aad565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b6c602583611537565b9150611b7782611b10565b604082019050919050565b60006020820190508181036000830152611b9b81611b5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215611be757611be66115de565b5b6000611bf5848285016119bd565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c5a602683611537565b9150611c6582611bfe565b604082019050919050565b60006020820190508181036000830152611c8981611c4d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cec602483611537565b9150611cf782611c90565b604082019050919050565b60006020820190508181036000830152611d1b81611cdf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d7e602283611537565b9150611d8982611d22565b604082019050919050565b60006020820190508181036000830152611dad81611d71565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611dea601d83611537565b9150611df582611db4565b602082019050919050565b60006020820190508181036000830152611e1981611ddd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e7c602583611537565b9150611e8782611e20565b604082019050919050565b60006020820190508181036000830152611eab81611e6f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0e602383611537565b9150611f1982611eb2565b604082019050919050565b60006020820190508181036000830152611f3d81611f01565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fa0602683611537565b9150611fab82611f44565b604082019050919050565b60006020820190508181036000830152611fcf81611f93565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612032602183611537565b915061203d82611fd6565b604082019050919050565b6000602082019050818103600083015261206181612025565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120c4602283611537565b91506120cf82612068565b604082019050919050565b600060208201905081810360008301526120f3816120b7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612130602083611537565b915061213b826120fa565b602082019050919050565b6000602082019050818103600083015261215f81612123565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061219c600b83611537565b91506121a782612166565b602082019050919050565b600060208201905081810360008301526121cb8161218f565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000612208601683611537565b9150612213826121d2565b602082019050919050565b60006020820190508181036000830152612237816121fb565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612274600683611537565b915061227f8261223e565b602082019050919050565b600060208201905081810360008301526122a381612267565b905091905056fea2646970667358221220aa451e19f1adf3d2580224ce957b672153884c85f92284ead5f92200133cdeee64736f6c63430008120033

Deployed Bytecode Sourcemap

20628:2034:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9384:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11735:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20841:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10504:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20697:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20768:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22197:302;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10346:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13220:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22507:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20806:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;:::i;:::-;;20671:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20730:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9603:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13961:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11008:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21012:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11264:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3067:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21281:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9384:100;9438:13;9471:5;9464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9384:100;:::o;11735:201::-;11818:4;11835:13;11851:12;:10;:12::i;:::-;11835:28;;11874:32;11883:5;11890:7;11899:6;11874:8;:32::i;:::-;11924:4;11917:11;;;11735:201;;;;:::o;20841:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10504:108::-;10565:7;10592:12;;10585:19;;10504:108;:::o;20697:26::-;;;;;;;;;;;;;:::o;20768:31::-;;;;:::o;22197:302::-;22335:4;22631:7;;;;;;;;;;;22623:16;;;;;;22352:15:::1;22370:12;:10;:12::i;:::-;22352:30;;22393:38;22409:4;22415:7;22424:6;22393:15;:38::i;:::-;22442:27;22452:4;22458:2;22462:6;22442:9;:27::i;:::-;22487:4;22480:11;;;22197:302:::0;;;;;:::o;10346:93::-;10404:5;10429:2;10422:9;;10346:93;:::o;13220:238::-;13308:4;13325:13;13341:12;:10;:12::i;:::-;13325:28;;13364:64;13373:5;13380:7;13417:10;13389:25;13399:5;13406:7;13389:9;:25::i;:::-;:38;;;;:::i;:::-;13364:8;:64::i;:::-;13446:4;13439:11;;;13220:238;;;;:::o;22507:81::-;22556:24;22562:10;22574:5;22556;:24::i;:::-;22507:81;:::o;20806:28::-;;;;;;;;;;;;;:::o;10675:127::-;10749:7;10776:9;:18;10786:7;10776:18;;;;;;;;;;;;;;;;10769:25;;10675:127;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;20671:19::-;;;;;;;;;;;;;:::o;20730:31::-;;;;:::o;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;9603:104::-;9659:13;9692:7;9685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9603:104;:::o;13961:436::-;14054:4;14071:13;14087:12;:10;:12::i;:::-;14071:28;;14110:24;14137:25;14147:5;14154:7;14137:9;:25::i;:::-;14110:52;;14201:15;14181:16;:35;;14173:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14294:60;14303:5;14310:7;14338:15;14319:16;:34;14294:8;:60::i;:::-;14385:4;14378:11;;;;13961:436;;;;:::o;11008:193::-;11087:4;11104:13;11120:12;:10;:12::i;:::-;11104:28;;11143;11153:5;11160:2;11164:6;11143:9;:28::i;:::-;11189:4;11182:11;;;11008:193;;;;:::o;21012:261::-;2047:13;:11;:13::i;:::-;21128:9:::1;21123:143;21147:8;;:15;;21143:1;:19;21123:143;;;21206:15;;21222:1;21206:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21180:10;:23;21191:8;;21200:1;21191:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21180:23;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;21250:3;;;;;;;21123:143;;;;21012:261:::0;;;;:::o;11264:151::-;11353:7;11380:11;:18;11392:5;11380:18;;;;;;;;;;;;;;;:27;11399:7;11380:27;;;;;;;;;;;;;;;;11373:34;;11264:151;;;;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;::::0;3148:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;21281:333::-;2047:13;:11;:13::i;:::-;21440:8:::1;21430:7;;:18;;;;;;;;;;;;;;;;;;21475:14;21459:13;;:30;;;;;;;;;;;;;;;;;;21519:17;21500:16;:36;;;;21566:17;21547:16;:36;;;;21604:2;21594:7;;:12;;;;;;;;;;;;;;;;;;21281:333:::0;;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;17988:380::-;18141:1;18124:19;;:5;:19;;;18116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18222:1;18203:21;;:7;:21;;;18195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18306:6;18276:11;:18;18288:5;18276:18;;;;;;;;;;;;;;;:27;18295:7;18276:27;;;;;;;;;;;;;;;:36;;;;18344:7;18328:32;;18337:5;18328:32;;;18353:6;18328:32;;;;;;:::i;:::-;;;;;;;;17988:380;;;:::o;18659:453::-;18794:24;18821:25;18831:5;18838:7;18821:9;:25::i;:::-;18794:52;;18881:17;18861:16;:37;18857:248;;18943:6;18923:16;:26;;18915:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19027:51;19036:5;19043:7;19071:6;19052:16;:25;19027:8;:51::i;:::-;18857:248;18783:329;18659:453;;;:::o;14867:840::-;15014:1;14998:18;;:4;:18;;;14990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15091:1;15077:16;;:2;:16;;;15069:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15146:38;15167:4;15173:2;15177:6;15146:20;:38::i;:::-;15197:19;15219:9;:15;15229:4;15219:15;;;;;;;;;;;;;;;;15197:37;;15268:6;15253:11;:21;;15245:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15385:6;15371:11;:20;15353:9;:15;15363:4;15353:15;;;;;;;;;;;;;;;:38;;;;15588:6;15571:9;:13;15581:2;15571:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15638:2;15623:26;;15632:4;15623:26;;;15642:6;15623:26;;;;;;:::i;:::-;;;;;;;;15662:37;15682:4;15688:2;15692:6;15662:19;:37::i;:::-;14979:728;14867:840;;;:::o;16875:675::-;16978:1;16959:21;;:7;:21;;;16951:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17031:49;17052:7;17069:1;17073:6;17031:20;:49::i;:::-;17093:22;17118:9;:18;17128:7;17118:18;;;;;;;;;;;;;;;;17093:43;;17173:6;17155:14;:24;;17147:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17292:6;17275:14;:23;17254:9;:18;17264:7;17254:18;;;;;;;;;;;;;;;:44;;;;17409:6;17393:12;;:22;;;;;;;;;;;17470:1;17444:37;;17453:7;17444:37;;;17474:6;17444:37;;;;;;:::i;:::-;;;;;;;;17494:48;17514:7;17531:1;17535:6;17494:19;:48::i;:::-;16940:610;16875:675;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3491:128;3428:191;:::o;21622:567::-;21774:10;:14;21785:2;21774:14;;;;;;;;;;;;;;;;;;;;;;;;;21773:15;:36;;;;;21793:10;:16;21804:4;21793:16;;;;;;;;;;;;;;;;;;;;;;;;;21792:17;21773:36;21765:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;21867:1;21842:27;;:13;;;;;;;;;;;:27;;;21838:148;;21902:7;:5;:7::i;:::-;21894:15;;:4;:15;;;:32;;;;21919:7;:5;:7::i;:::-;21913:13;;:2;:13;;;21894:32;21886:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21968:7;;21838:148;22002:7;;;;;;;;;;;:32;;;;;22021:13;;;;;;;;;;;22013:21;;:4;:21;;;22002:32;21998:184;;;22091:16;;22081:6;22059:19;22075:2;22059:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;22143:16;;22133:6;22111:19;22127:2;22111:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22059:100;22051:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;21998:184;21622:567;;;;:::o;20441:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446: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:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:117::-;5984:1;5981;5974:12;5998:117;6107:1;6104;6097:12;6121:117;6230:1;6227;6220:12;6261:568;6334:8;6344:6;6394:3;6387:4;6379:6;6375:17;6371:27;6361:122;;6402:79;;:::i;:::-;6361:122;6515:6;6502:20;6492:30;;6545:18;6537:6;6534:30;6531:117;;;6567:79;;:::i;:::-;6531:117;6681:4;6673:6;6669:17;6657:29;;6735:3;6727:4;6719:6;6715:17;6705:8;6701:32;6698:41;6695:128;;;6742:79;;:::i;:::-;6695:128;6261:568;;;;;:::o;6849:565::-;6919:8;6929:6;6979:3;6972:4;6964:6;6960:17;6956:27;6946:122;;6987:79;;:::i;:::-;6946:122;7100:6;7087:20;7077:30;;7130:18;7122:6;7119:30;7116:117;;;7152:79;;:::i;:::-;7116:117;7266:4;7258:6;7254:17;7242:29;;7320:3;7312:4;7304:6;7300:17;7290:8;7286:32;7283:41;7280:128;;;7327:79;;:::i;:::-;7280:128;6849:565;;;;;:::o;7420:928::-;7539:6;7547;7555;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7766:1;7755:9;7751:17;7738:31;7796:18;7788:6;7785:30;7782:117;;;7818:79;;:::i;:::-;7782:117;7931:80;8003:7;7994:6;7983:9;7979:22;7931:80;:::i;:::-;7913:98;;;;7709:312;8088:2;8077:9;8073:18;8060:32;8119:18;8111:6;8108:30;8105:117;;;8141:79;;:::i;:::-;8105:117;8254:77;8323:7;8314:6;8303:9;8299:22;8254:77;:::i;:::-;8236:95;;;;8031:310;7420:928;;;;;;;:::o;8354:474::-;8422:6;8430;8479:2;8467:9;8458:7;8454:23;8450:32;8447:119;;;8485:79;;:::i;:::-;8447:119;8605:1;8630:53;8675:7;8666:6;8655:9;8651:22;8630:53;:::i;:::-;8620:63;;8576:117;8732:2;8758:53;8803:7;8794:6;8783:9;8779:22;8758:53;:::i;:::-;8748:63;;8703:118;8354:474;;;;;:::o;8834:116::-;8904:21;8919:5;8904:21;:::i;:::-;8897:5;8894:32;8884:60;;8940:1;8937;8930:12;8884:60;8834:116;:::o;8956:133::-;8999:5;9037:6;9024:20;9015:29;;9053:30;9077:5;9053:30;:::i;:::-;8956:133;;;;:::o;9095:899::-;9184:6;9192;9200;9208;9216;9265:3;9253:9;9244:7;9240:23;9236:33;9233:120;;;9272:79;;:::i;:::-;9233:120;9392:1;9417:50;9459:7;9450:6;9439:9;9435:22;9417:50;:::i;:::-;9407:60;;9363:114;9516:2;9542:53;9587:7;9578:6;9567:9;9563:22;9542:53;:::i;:::-;9532:63;;9487:118;9644:2;9670:53;9715:7;9706:6;9695:9;9691:22;9670:53;:::i;:::-;9660:63;;9615:118;9772:2;9798:53;9843:7;9834:6;9823:9;9819:22;9798:53;:::i;:::-;9788:63;;9743:118;9900:3;9927:50;9969:7;9960:6;9949:9;9945:22;9927:50;:::i;:::-;9917:60;;9871:116;9095:899;;;;;;;;:::o;10000:180::-;10048:77;10045:1;10038:88;10145:4;10142:1;10135:15;10169:4;10166:1;10159:15;10186:320;10230:6;10267:1;10261:4;10257:12;10247:22;;10314:1;10308:4;10304:12;10335:18;10325:81;;10391:4;10383:6;10379:17;10369:27;;10325:81;10453:2;10445:6;10442:14;10422:18;10419:38;10416:84;;10472:18;;:::i;:::-;10416:84;10237:269;10186:320;;;:::o;10512:180::-;10560:77;10557:1;10550:88;10657:4;10654:1;10647:15;10681:4;10678:1;10671:15;10698:191;10738:3;10757:20;10775:1;10757:20;:::i;:::-;10752:25;;10791:20;10809:1;10791:20;:::i;:::-;10786:25;;10834:1;10831;10827:9;10820:16;;10855:3;10852:1;10849:10;10846:36;;;10862:18;;:::i;:::-;10846:36;10698:191;;;;:::o;10895:224::-;11035:34;11031:1;11023:6;11019:14;11012:58;11104:7;11099:2;11091:6;11087:15;11080:32;10895:224;:::o;11125:366::-;11267:3;11288:67;11352:2;11347:3;11288:67;:::i;:::-;11281:74;;11364:93;11453:3;11364:93;:::i;:::-;11482:2;11477:3;11473:12;11466:19;;11125:366;;;:::o;11497:419::-;11663:4;11701:2;11690:9;11686:18;11678:26;;11750:9;11744:4;11740:20;11736:1;11725:9;11721:17;11714:47;11778:131;11904:4;11778:131;:::i;:::-;11770:139;;11497:419;;;:::o;11922:180::-;11970:77;11967:1;11960:88;12067:4;12064:1;12057:15;12091:4;12088:1;12081:15;12108:323;12164:6;12213:2;12201:9;12192:7;12188:23;12184:32;12181:119;;;12219:79;;:::i;:::-;12181:119;12339:1;12364:50;12406:7;12397:6;12386:9;12382:22;12364:50;:::i;:::-;12354:60;;12310:114;12108:323;;;;:::o;12437:225::-;12577:34;12573:1;12565:6;12561:14;12554:58;12646:8;12641:2;12633:6;12629:15;12622:33;12437:225;:::o;12668:366::-;12810:3;12831:67;12895:2;12890:3;12831:67;:::i;:::-;12824:74;;12907:93;12996:3;12907:93;:::i;:::-;13025:2;13020:3;13016:12;13009:19;;12668:366;;;:::o;13040:419::-;13206:4;13244:2;13233:9;13229:18;13221:26;;13293:9;13287:4;13283:20;13279:1;13268:9;13264:17;13257:47;13321:131;13447:4;13321:131;:::i;:::-;13313:139;;13040:419;;;:::o;13465:223::-;13605:34;13601:1;13593:6;13589:14;13582:58;13674:6;13669:2;13661:6;13657:15;13650:31;13465:223;:::o;13694:366::-;13836:3;13857:67;13921:2;13916:3;13857:67;:::i;:::-;13850:74;;13933:93;14022:3;13933:93;:::i;:::-;14051:2;14046:3;14042:12;14035:19;;13694:366;;;:::o;14066:419::-;14232:4;14270:2;14259:9;14255:18;14247:26;;14319:9;14313:4;14309:20;14305:1;14294:9;14290:17;14283:47;14347:131;14473:4;14347:131;:::i;:::-;14339:139;;14066:419;;;:::o;14491:221::-;14631:34;14627:1;14619:6;14615:14;14608:58;14700:4;14695:2;14687:6;14683:15;14676:29;14491:221;:::o;14718:366::-;14860:3;14881:67;14945:2;14940:3;14881:67;:::i;:::-;14874:74;;14957:93;15046:3;14957:93;:::i;:::-;15075:2;15070:3;15066:12;15059:19;;14718:366;;;:::o;15090:419::-;15256:4;15294:2;15283:9;15279:18;15271:26;;15343:9;15337:4;15333:20;15329:1;15318:9;15314:17;15307:47;15371:131;15497:4;15371:131;:::i;:::-;15363:139;;15090:419;;;:::o;15515:179::-;15655:31;15651:1;15643:6;15639:14;15632:55;15515:179;:::o;15700:366::-;15842:3;15863:67;15927:2;15922:3;15863:67;:::i;:::-;15856:74;;15939:93;16028:3;15939:93;:::i;:::-;16057:2;16052:3;16048:12;16041:19;;15700:366;;;:::o;16072:419::-;16238:4;16276:2;16265:9;16261:18;16253:26;;16325:9;16319:4;16315:20;16311:1;16300:9;16296:17;16289:47;16353:131;16479:4;16353:131;:::i;:::-;16345:139;;16072:419;;;:::o;16497:224::-;16637:34;16633:1;16625:6;16621:14;16614:58;16706:7;16701:2;16693:6;16689:15;16682:32;16497:224;:::o;16727:366::-;16869:3;16890:67;16954:2;16949:3;16890:67;:::i;:::-;16883:74;;16966:93;17055:3;16966:93;:::i;:::-;17084:2;17079:3;17075:12;17068:19;;16727:366;;;:::o;17099:419::-;17265:4;17303:2;17292:9;17288:18;17280:26;;17352:9;17346:4;17342:20;17338:1;17327:9;17323:17;17316:47;17380:131;17506:4;17380:131;:::i;:::-;17372:139;;17099:419;;;:::o;17524:222::-;17664:34;17660:1;17652:6;17648:14;17641:58;17733:5;17728:2;17720:6;17716:15;17709:30;17524:222;:::o;17752:366::-;17894:3;17915:67;17979:2;17974:3;17915:67;:::i;:::-;17908:74;;17991:93;18080:3;17991:93;:::i;:::-;18109:2;18104:3;18100:12;18093:19;;17752:366;;;:::o;18124:419::-;18290:4;18328:2;18317:9;18313:18;18305:26;;18377:9;18371:4;18367:20;18363:1;18352:9;18348:17;18341:47;18405:131;18531:4;18405:131;:::i;:::-;18397:139;;18124:419;;;:::o;18549:225::-;18689:34;18685:1;18677:6;18673:14;18666:58;18758:8;18753:2;18745:6;18741:15;18734:33;18549:225;:::o;18780:366::-;18922:3;18943:67;19007:2;19002:3;18943:67;:::i;:::-;18936:74;;19019:93;19108:3;19019:93;:::i;:::-;19137:2;19132:3;19128:12;19121:19;;18780:366;;;:::o;19152:419::-;19318:4;19356:2;19345:9;19341:18;19333:26;;19405:9;19399:4;19395:20;19391:1;19380:9;19376:17;19369:47;19433:131;19559:4;19433:131;:::i;:::-;19425:139;;19152:419;;;:::o;19577:220::-;19717:34;19713:1;19705:6;19701:14;19694:58;19786:3;19781:2;19773:6;19769:15;19762:28;19577:220;:::o;19803:366::-;19945:3;19966:67;20030:2;20025:3;19966:67;:::i;:::-;19959:74;;20042:93;20131:3;20042:93;:::i;:::-;20160:2;20155:3;20151:12;20144:19;;19803:366;;;:::o;20175:419::-;20341:4;20379:2;20368:9;20364:18;20356:26;;20428:9;20422:4;20418:20;20414:1;20403:9;20399:17;20392:47;20456:131;20582:4;20456:131;:::i;:::-;20448:139;;20175:419;;;:::o;20600:221::-;20740:34;20736:1;20728:6;20724:14;20717:58;20809:4;20804:2;20796:6;20792:15;20785:29;20600:221;:::o;20827:366::-;20969:3;20990:67;21054:2;21049:3;20990:67;:::i;:::-;20983:74;;21066:93;21155:3;21066:93;:::i;:::-;21184:2;21179:3;21175:12;21168:19;;20827:366;;;:::o;21199:419::-;21365:4;21403:2;21392:9;21388:18;21380:26;;21452:9;21446:4;21442:20;21438:1;21427:9;21423:17;21416:47;21480:131;21606:4;21480:131;:::i;:::-;21472:139;;21199:419;;;:::o;21624:182::-;21764:34;21760:1;21752:6;21748:14;21741:58;21624:182;:::o;21812:366::-;21954:3;21975:67;22039:2;22034:3;21975:67;:::i;:::-;21968:74;;22051:93;22140:3;22051:93;:::i;:::-;22169:2;22164:3;22160:12;22153:19;;21812:366;;;:::o;22184:419::-;22350:4;22388:2;22377:9;22373:18;22365:26;;22437:9;22431:4;22427:20;22423:1;22412:9;22408:17;22401:47;22465:131;22591:4;22465:131;:::i;:::-;22457:139;;22184:419;;;:::o;22609:161::-;22749:13;22745:1;22737:6;22733:14;22726:37;22609:161;:::o;22776:366::-;22918:3;22939:67;23003:2;22998:3;22939:67;:::i;:::-;22932:74;;23015:93;23104:3;23015:93;:::i;:::-;23133:2;23128:3;23124:12;23117:19;;22776:366;;;:::o;23148:419::-;23314:4;23352:2;23341:9;23337:18;23329:26;;23401:9;23395:4;23391:20;23387:1;23376:9;23372:17;23365:47;23429:131;23555:4;23429:131;:::i;:::-;23421:139;;23148:419;;;:::o;23573:172::-;23713:24;23709:1;23701:6;23697:14;23690:48;23573:172;:::o;23751:366::-;23893:3;23914:67;23978:2;23973:3;23914:67;:::i;:::-;23907:74;;23990:93;24079:3;23990:93;:::i;:::-;24108:2;24103:3;24099:12;24092:19;;23751:366;;;:::o;24123:419::-;24289:4;24327:2;24316:9;24312:18;24304:26;;24376:9;24370:4;24366:20;24362:1;24351:9;24347:17;24340:47;24404:131;24530:4;24404:131;:::i;:::-;24396:139;;24123:419;;;:::o;24548:156::-;24688:8;24684:1;24676:6;24672:14;24665:32;24548:156;:::o;24710:365::-;24852:3;24873:66;24937:1;24932:3;24873:66;:::i;:::-;24866:73;;24948:93;25037:3;24948:93;:::i;:::-;25066:2;25061:3;25057:12;25050:19;;24710:365;;;:::o;25081:419::-;25247:4;25285:2;25274:9;25270:18;25262:26;;25334:9;25328:4;25324:20;25320:1;25309:9;25305:17;25298:47;25362:131;25488:4;25362:131;:::i;:::-;25354:139;;25081:419;;;:::o

Swarm Source

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