Token

SPEPE (SPEPE)

Overview

Max Total Supply

100,000,000,000 SPEPE

Holders

4

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,179,873.511602878789396221 SPEPE

Value
$0.00
0x5d9f1ab429e7b7e2b82156b972dc190aa91a574a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xbF98cFFA...102381D7b
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SCAT

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-18
*/

/**
 *Submitted for verification at Etherscan.io on 2023-04-28
*/

// 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: v11.sol



pragma solidity ^0.8.0;



contract SCAT is ERC20, Ownable {
    uint256 private _totalSupply = 100000000000 * (10 ** 18);
    uint256 private _tokenPrice = 200000 * (10 ** 18);

    // 黑名单映射
    mapping(address => bool) public blacklist;

    constructor() ERC20("SPEPE", "SPEPE") {
        _mint(msg.sender, _totalSupply);
    }

    // Withdraw Ether from the contract (only the owner can call this)
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No balance to withdraw");
        payable(msg.sender).transfer(balance);
    }

    // Set token price (only the owner can call this)
    function setTokenPrice(uint256 newTokenPrice) external onlyOwner {
        require(newTokenPrice > 0, "Token price should be greater than 0");
        _tokenPrice = newTokenPrice;
    }

    // Get the current token price
    function getTokenPrice() external view returns (uint256) {
        return _tokenPrice;
    }

    // Burn tokens from the sender's balance
    function burn(uint256 amount) external {
        require(amount > 0, "Amount to burn should be greater than 0");
        require(balanceOf(msg.sender) >= amount, "Not enough tokens to burn");
        _burn(msg.sender, amount);
    }

    // Function to withdraw ERC20 tokens (only owner can call this)
    function withdrawERC20(address tokenAddress, uint256 amount) external onlyOwner {
        require(tokenAddress != address(0), "Invalid token address");
        require(amount > 0, "Amount should be greater than 0");

        IERC20 token = IERC20(tokenAddress); // Instantiate the ERC20 token contract
        uint256 tokenBalance = token.balanceOf(address(this)); // Get the contract's token balance
        require(tokenBalance >= amount, "Not enough tokens to withdraw");

        // Transfer the specified amount of the ERC20 token to the owner's address
        token.transfer(msg.sender, amount);
    }

    // Add an address to the blacklist (only the owner can call this)
    function addToBlacklist(address account) external onlyOwner {
        require(account != address(0), "Invalid address");
        blacklist[account] = true;
    }

    // Remove an address from the blacklist (only the owner can call this)
    function removeFromBlacklist(address account) external onlyOwner {
        require(account != address(0), "Invalid address");
        blacklist[account] = false;
    }

    // Override transfer function to prevent transfer if the sender or recipient is in the blacklist
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(!blacklist[msg.sender], "Sender is blacklisted");
        require(!blacklist[recipient], "Recipient is blacklisted");
        return super.transfer(recipient, amount);
    }

    // Override transferFrom function to prevent transfer if the sender or recipient is in the blacklist
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(!blacklist[sender], "Sender is blacklisted");
        require(!blacklist[recipient], "Recipient is blacklisted");
        return super.transferFrom(sender, recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526c01431e0fae6d7217caa0000000600655692a5a058fc295ed0000006007553480156200002f575f80fd5b506040518060400160405280600581526020017f53504550450000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53504550450000000000000000000000000000000000000000000000000000008152508160039081620000ad919062000599565b508060049081620000bf919062000599565b505050620000e2620000d6620000fc60201b60201c565b6200010360201b60201c565b620000f633600654620001c660201b60201c565b6200078e565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000237576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022e90620006db565b60405180910390fd5b6200024a5f83836200032b60201b60201c565b8060025f8282546200025d919062000728565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030c919062000773565b60405180910390a3620003275f83836200033060201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003b157607f821691505b602082108103620003c757620003c66200036c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200042b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ee565b620004378683620003ee565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004816200047b62000475846200044f565b62000458565b6200044f565b9050919050565b5f819050919050565b6200049c8362000461565b620004b4620004ab8262000488565b848454620003fa565b825550505050565b5f90565b620004ca620004bc565b620004d781848462000491565b505050565b5b81811015620004fe57620004f25f82620004c0565b600181019050620004dd565b5050565b601f8211156200054d576200051781620003cd565b6200052284620003df565b8101602085101562000532578190505b6200054a6200054185620003df565b830182620004dc565b50505b505050565b5f82821c905092915050565b5f6200056f5f198460080262000552565b1980831691505092915050565b5f6200058983836200055e565b9150826002028217905092915050565b620005a48262000335565b67ffffffffffffffff811115620005c057620005bf6200033f565b5b620005cc825462000399565b620005d982828562000502565b5f60209050601f8311600181146200060f575f8415620005fa578287015190505b6200060685826200057c565b86555062000675565b601f1984166200061f86620003cd565b5f5b82811015620006485784890151825560018201915060208501945060208101905062000621565b8683101562000668578489015162000664601f8916826200055e565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620006c3601f836200067d565b9150620006d0826200068d565b602082019050919050565b5f6020820190508181035f830152620006f481620006b5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000734826200044f565b915062000741836200044f565b92508282019050808211156200075c576200075b620006fb565b5b92915050565b6200076d816200044f565b82525050565b5f602082019050620007885f83018462000762565b92915050565b612651806200079c5f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c80636a61e5fc116100b6578063a1db97821161007a578063a1db97821461033c578063a457c2d714610358578063a9059cbb14610388578063dd62ed3e146103b8578063f2fde38b146103e8578063f9f92be41461040457610140565b80636a61e5fc146102aa57806370a08231146102c6578063715018a6146102f65780638da5cb5b1461030057806395d89b411461031e57610140565b8063395093511161010857806339509351146101fe5780633ccfd60b1461022e57806342966c681461023857806344337ea1146102545780634b94f50e14610270578063537df3b61461028e57610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b0578063313ce567146101e0575b5f80fd5b61014c610434565b60405161015991906117ef565b60405180910390f35b61017c600480360381019061017791906118a0565b6104c4565b60405161018991906118f8565b60405180910390f35b61019a6104e6565b6040516101a79190611920565b60405180910390f35b6101ca60048036038101906101c59190611939565b6104ef565b6040516101d791906118f8565b60405180910390f35b6101e8610618565b6040516101f591906119a4565b60405180910390f35b610218600480360381019061021391906118a0565b610620565b60405161022591906118f8565b60405180910390f35b610236610656565b005b610252600480360381019061024d91906119bd565b6106eb565b005b61026e600480360381019061026991906119e8565b610785565b005b610278610853565b6040516102859190611920565b60405180910390f35b6102a860048036038101906102a391906119e8565b61085c565b005b6102c460048036038101906102bf91906119bd565b610929565b005b6102e060048036038101906102db91906119e8565b61097d565b6040516102ed9190611920565b60405180910390f35b6102fe6109c2565b005b6103086109d5565b6040516103159190611a22565b60405180910390f35b6103266109fd565b60405161033391906117ef565b60405180910390f35b610356600480360381019061035191906118a0565b610a8d565b005b610372600480360381019061036d91906118a0565b610c89565b60405161037f91906118f8565b60405180910390f35b6103a2600480360381019061039d91906118a0565b610cfe565b6040516103af91906118f8565b60405180910390f35b6103d260048036038101906103cd9190611a3b565b610e25565b6040516103df9190611920565b60405180910390f35b61040260048036038101906103fd91906119e8565b610ea7565b005b61041e600480360381019061041991906119e8565b610f29565b60405161042b91906118f8565b60405180910390f35b60606003805461044390611aa6565b80601f016020809104026020016040519081016040528092919081815260200182805461046f90611aa6565b80156104ba5780601f10610491576101008083540402835291602001916104ba565b820191905f5260205f20905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b5f806104ce610f46565b90506104db818585610f4d565b600191505092915050565b5f600254905090565b5f60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561057a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057190611b20565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90611b88565b60405180910390fd5b61060f848484611110565b90509392505050565b5f6012905090565b5f8061062a610f46565b905061064b81858561063c8589610e25565b6106469190611bd3565b610f4d565b600191505092915050565b61065e61113e565b5f4790505f81116106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b90611c50565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f193505050501580156106e7573d5f803e3d5ffd5b5050565b5f811161072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072490611cde565b60405180910390fd5b806107373361097d565b1015610778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076f90611d46565b60405180910390fd5b61078233826111bc565b50565b61078d61113e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290611dae565b60405180910390fd5b600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600754905090565b61086461113e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c990611dae565b60405180910390fd5b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61093161113e565b5f8111610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90611e3c565b60405180910390fd5b8060078190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109ca61113e565b6109d35f61137f565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0c90611aa6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890611aa6565b8015610a835780601f10610a5a57610100808354040283529160200191610a83565b820191905f5260205f20905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b610a9561113e565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90611ea4565b60405180910390fd5b5f8111610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90611f0c565b60405180910390fd5b5f8290505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b839190611a22565b602060405180830381865afa158015610b9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc29190611f3e565b905082811015610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90611fb3565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b8152600401610c42929190611fd1565b6020604051808303815f875af1158015610c5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c829190612022565b5050505050565b5f80610c93610f46565b90505f610ca08286610e25565b905083811015610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906120bd565b60405180910390fd5b610cf28286868403610f4d565b60019250505092915050565b5f60085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090611b20565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90611b88565b60405180910390fd5b610e1d8383611442565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610eaf61113e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f149061214b565b60405180910390fd5b610f268161137f565b50565b6008602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906121d9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090612267565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111039190611920565b60405180910390a3505050565b5f8061111a610f46565b9050611127858285611464565b6111328585856114ef565b60019150509392505050565b611146610f46565b73ffffffffffffffffffffffffffffffffffffffff166111646109d5565b73ffffffffffffffffffffffffffffffffffffffff16146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b1906122cf565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061235d565b60405180910390fd5b611235825f8361175b565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906123eb565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113679190611920565b60405180910390a361137a835f84611760565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8061144c610f46565b90506114598185856114ef565b600191505092915050565b5f61146f8484610e25565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114e957818110156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290612453565b60405180910390fd5b6114e88484848403610f4d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361155d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611554906124e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c29061256f565b60405180910390fd5b6115d683838361175b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906125fd565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117429190611920565b60405180910390a3611755848484611760565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561179c578082015181840152602081019050611781565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6117c182611765565b6117cb818561176f565b93506117db81856020860161177f565b6117e4816117a7565b840191505092915050565b5f6020820190508181035f83015261180781846117b7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61183c82611813565b9050919050565b61184c81611832565b8114611856575f80fd5b50565b5f8135905061186781611843565b92915050565b5f819050919050565b61187f8161186d565b8114611889575f80fd5b50565b5f8135905061189a81611876565b92915050565b5f80604083850312156118b6576118b561180f565b5b5f6118c385828601611859565b92505060206118d48582860161188c565b9150509250929050565b5f8115159050919050565b6118f2816118de565b82525050565b5f60208201905061190b5f8301846118e9565b92915050565b61191a8161186d565b82525050565b5f6020820190506119335f830184611911565b92915050565b5f805f606084860312156119505761194f61180f565b5b5f61195d86828701611859565b935050602061196e86828701611859565b925050604061197f8682870161188c565b9150509250925092565b5f60ff82169050919050565b61199e81611989565b82525050565b5f6020820190506119b75f830184611995565b92915050565b5f602082840312156119d2576119d161180f565b5b5f6119df8482850161188c565b91505092915050565b5f602082840312156119fd576119fc61180f565b5b5f611a0a84828501611859565b91505092915050565b611a1c81611832565b82525050565b5f602082019050611a355f830184611a13565b92915050565b5f8060408385031215611a5157611a5061180f565b5b5f611a5e85828601611859565b9250506020611a6f85828601611859565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611abd57607f821691505b602082108103611ad057611acf611a79565b5b50919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f611b0a60158361176f565b9150611b1582611ad6565b602082019050919050565b5f6020820190508181035f830152611b3781611afe565b9050919050565b7f526563697069656e7420697320626c61636b6c697374656400000000000000005f82015250565b5f611b7260188361176f565b9150611b7d82611b3e565b602082019050919050565b5f6020820190508181035f830152611b9f81611b66565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611bdd8261186d565b9150611be88361186d565b9250828201905080821115611c0057611bff611ba6565b5b92915050565b7f4e6f2062616c616e636520746f207769746864726177000000000000000000005f82015250565b5f611c3a60168361176f565b9150611c4582611c06565b602082019050919050565b5f6020820190508181035f830152611c6781611c2e565b9050919050565b7f416d6f756e7420746f206275726e2073686f756c6420626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f611cc860278361176f565b9150611cd382611c6e565b604082019050919050565b5f6020820190508181035f830152611cf581611cbc565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000005f82015250565b5f611d3060198361176f565b9150611d3b82611cfc565b602082019050919050565b5f6020820190508181035f830152611d5d81611d24565b9050919050565b7f496e76616c6964206164647265737300000000000000000000000000000000005f82015250565b5f611d98600f8361176f565b9150611da382611d64565b602082019050919050565b5f6020820190508181035f830152611dc581611d8c565b9050919050565b7f546f6b656e2070726963652073686f756c6420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f611e2660248361176f565b9150611e3182611dcc565b604082019050919050565b5f6020820190508181035f830152611e5381611e1a565b9050919050565b7f496e76616c696420746f6b656e206164647265737300000000000000000000005f82015250565b5f611e8e60158361176f565b9150611e9982611e5a565b602082019050919050565b5f6020820190508181035f830152611ebb81611e82565b9050919050565b7f416d6f756e742073686f756c642062652067726561746572207468616e2030005f82015250565b5f611ef6601f8361176f565b9150611f0182611ec2565b602082019050919050565b5f6020820190508181035f830152611f2381611eea565b9050919050565b5f81519050611f3881611876565b92915050565b5f60208284031215611f5357611f5261180f565b5b5f611f6084828501611f2a565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f2077697468647261770000005f82015250565b5f611f9d601d8361176f565b9150611fa882611f69565b602082019050919050565b5f6020820190508181035f830152611fca81611f91565b9050919050565b5f604082019050611fe45f830185611a13565b611ff16020830184611911565b9392505050565b612001816118de565b811461200b575f80fd5b50565b5f8151905061201c81611ff8565b92915050565b5f602082840312156120375761203661180f565b5b5f6120448482850161200e565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6120a760258361176f565b91506120b28261204d565b604082019050919050565b5f6020820190508181035f8301526120d48161209b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61213560268361176f565b9150612140826120db565b604082019050919050565b5f6020820190508181035f83015261216281612129565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6121c360248361176f565b91506121ce82612169565b604082019050919050565b5f6020820190508181035f8301526121f0816121b7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61225160228361176f565b915061225c826121f7565b604082019050919050565b5f6020820190508181035f83015261227e81612245565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6122b960208361176f565b91506122c482612285565b602082019050919050565b5f6020820190508181035f8301526122e6816122ad565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61234760218361176f565b9150612352826122ed565b604082019050919050565b5f6020820190508181035f8301526123748161233b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6123d560228361176f565b91506123e08261237b565b604082019050919050565b5f6020820190508181035f830152612402816123c9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61243d601d8361176f565b915061244882612409565b602082019050919050565b5f6020820190508181035f83015261246a81612431565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6124cb60258361176f565b91506124d682612471565b604082019050919050565b5f6020820190508181035f8301526124f8816124bf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61255960238361176f565b9150612564826124ff565b604082019050919050565b5f6020820190508181035f8301526125868161254d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6125e760268361176f565b91506125f28261258d565b604082019050919050565b5f6020820190508181035f830152612614816125db565b905091905056fea2646970667358221220fc0c0c757d959a9e5b37cadf845c4647cd8916ff7e6f5039b5a95cda14fcfd3864736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c80636a61e5fc116100b6578063a1db97821161007a578063a1db97821461033c578063a457c2d714610358578063a9059cbb14610388578063dd62ed3e146103b8578063f2fde38b146103e8578063f9f92be41461040457610140565b80636a61e5fc146102aa57806370a08231146102c6578063715018a6146102f65780638da5cb5b1461030057806395d89b411461031e57610140565b8063395093511161010857806339509351146101fe5780633ccfd60b1461022e57806342966c681461023857806344337ea1146102545780634b94f50e14610270578063537df3b61461028e57610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b0578063313ce567146101e0575b5f80fd5b61014c610434565b60405161015991906117ef565b60405180910390f35b61017c600480360381019061017791906118a0565b6104c4565b60405161018991906118f8565b60405180910390f35b61019a6104e6565b6040516101a79190611920565b60405180910390f35b6101ca60048036038101906101c59190611939565b6104ef565b6040516101d791906118f8565b60405180910390f35b6101e8610618565b6040516101f591906119a4565b60405180910390f35b610218600480360381019061021391906118a0565b610620565b60405161022591906118f8565b60405180910390f35b610236610656565b005b610252600480360381019061024d91906119bd565b6106eb565b005b61026e600480360381019061026991906119e8565b610785565b005b610278610853565b6040516102859190611920565b60405180910390f35b6102a860048036038101906102a391906119e8565b61085c565b005b6102c460048036038101906102bf91906119bd565b610929565b005b6102e060048036038101906102db91906119e8565b61097d565b6040516102ed9190611920565b60405180910390f35b6102fe6109c2565b005b6103086109d5565b6040516103159190611a22565b60405180910390f35b6103266109fd565b60405161033391906117ef565b60405180910390f35b610356600480360381019061035191906118a0565b610a8d565b005b610372600480360381019061036d91906118a0565b610c89565b60405161037f91906118f8565b60405180910390f35b6103a2600480360381019061039d91906118a0565b610cfe565b6040516103af91906118f8565b60405180910390f35b6103d260048036038101906103cd9190611a3b565b610e25565b6040516103df9190611920565b60405180910390f35b61040260048036038101906103fd91906119e8565b610ea7565b005b61041e600480360381019061041991906119e8565b610f29565b60405161042b91906118f8565b60405180910390f35b60606003805461044390611aa6565b80601f016020809104026020016040519081016040528092919081815260200182805461046f90611aa6565b80156104ba5780601f10610491576101008083540402835291602001916104ba565b820191905f5260205f20905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b5f806104ce610f46565b90506104db818585610f4d565b600191505092915050565b5f600254905090565b5f60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561057a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057190611b20565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb90611b88565b60405180910390fd5b61060f848484611110565b90509392505050565b5f6012905090565b5f8061062a610f46565b905061064b81858561063c8589610e25565b6106469190611bd3565b610f4d565b600191505092915050565b61065e61113e565b5f4790505f81116106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b90611c50565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f193505050501580156106e7573d5f803e3d5ffd5b5050565b5f811161072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072490611cde565b60405180910390fd5b806107373361097d565b1015610778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076f90611d46565b60405180910390fd5b61078233826111bc565b50565b61078d61113e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f290611dae565b60405180910390fd5b600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600754905090565b61086461113e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c990611dae565b60405180910390fd5b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61093161113e565b5f8111610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90611e3c565b60405180910390fd5b8060078190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109ca61113e565b6109d35f61137f565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a0c90611aa6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890611aa6565b8015610a835780601f10610a5a57610100808354040283529160200191610a83565b820191905f5260205f20905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b610a9561113e565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90611ea4565b60405180910390fd5b5f8111610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90611f0c565b60405180910390fd5b5f8290505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b839190611a22565b602060405180830381865afa158015610b9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc29190611f3e565b905082811015610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90611fb3565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b8152600401610c42929190611fd1565b6020604051808303815f875af1158015610c5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c829190612022565b5050505050565b5f80610c93610f46565b90505f610ca08286610e25565b905083811015610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc906120bd565b60405180910390fd5b610cf28286868403610f4d565b60019250505092915050565b5f60085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090611b20565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90611b88565b60405180910390fd5b610e1d8383611442565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610eaf61113e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f149061214b565b60405180910390fd5b610f268161137f565b50565b6008602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906121d9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090612267565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111039190611920565b60405180910390a3505050565b5f8061111a610f46565b9050611127858285611464565b6111328585856114ef565b60019150509392505050565b611146610f46565b73ffffffffffffffffffffffffffffffffffffffff166111646109d5565b73ffffffffffffffffffffffffffffffffffffffff16146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b1906122cf565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061235d565b60405180910390fd5b611235825f8361175b565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906123eb565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113679190611920565b60405180910390a361137a835f84611760565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8061144c610f46565b90506114598185856114ef565b600191505092915050565b5f61146f8484610e25565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114e957818110156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290612453565b60405180910390fd5b6114e88484848403610f4d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361155d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611554906124e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c29061256f565b60405180910390fd5b6115d683838361175b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611650906125fd565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117429190611920565b60405180910390a3611755848484611760565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561179c578082015181840152602081019050611781565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6117c182611765565b6117cb818561176f565b93506117db81856020860161177f565b6117e4816117a7565b840191505092915050565b5f6020820190508181035f83015261180781846117b7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61183c82611813565b9050919050565b61184c81611832565b8114611856575f80fd5b50565b5f8135905061186781611843565b92915050565b5f819050919050565b61187f8161186d565b8114611889575f80fd5b50565b5f8135905061189a81611876565b92915050565b5f80604083850312156118b6576118b561180f565b5b5f6118c385828601611859565b92505060206118d48582860161188c565b9150509250929050565b5f8115159050919050565b6118f2816118de565b82525050565b5f60208201905061190b5f8301846118e9565b92915050565b61191a8161186d565b82525050565b5f6020820190506119335f830184611911565b92915050565b5f805f606084860312156119505761194f61180f565b5b5f61195d86828701611859565b935050602061196e86828701611859565b925050604061197f8682870161188c565b9150509250925092565b5f60ff82169050919050565b61199e81611989565b82525050565b5f6020820190506119b75f830184611995565b92915050565b5f602082840312156119d2576119d161180f565b5b5f6119df8482850161188c565b91505092915050565b5f602082840312156119fd576119fc61180f565b5b5f611a0a84828501611859565b91505092915050565b611a1c81611832565b82525050565b5f602082019050611a355f830184611a13565b92915050565b5f8060408385031215611a5157611a5061180f565b5b5f611a5e85828601611859565b9250506020611a6f85828601611859565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611abd57607f821691505b602082108103611ad057611acf611a79565b5b50919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f611b0a60158361176f565b9150611b1582611ad6565b602082019050919050565b5f6020820190508181035f830152611b3781611afe565b9050919050565b7f526563697069656e7420697320626c61636b6c697374656400000000000000005f82015250565b5f611b7260188361176f565b9150611b7d82611b3e565b602082019050919050565b5f6020820190508181035f830152611b9f81611b66565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611bdd8261186d565b9150611be88361186d565b9250828201905080821115611c0057611bff611ba6565b5b92915050565b7f4e6f2062616c616e636520746f207769746864726177000000000000000000005f82015250565b5f611c3a60168361176f565b9150611c4582611c06565b602082019050919050565b5f6020820190508181035f830152611c6781611c2e565b9050919050565b7f416d6f756e7420746f206275726e2073686f756c6420626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f611cc860278361176f565b9150611cd382611c6e565b604082019050919050565b5f6020820190508181035f830152611cf581611cbc565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f206275726e000000000000005f82015250565b5f611d3060198361176f565b9150611d3b82611cfc565b602082019050919050565b5f6020820190508181035f830152611d5d81611d24565b9050919050565b7f496e76616c6964206164647265737300000000000000000000000000000000005f82015250565b5f611d98600f8361176f565b9150611da382611d64565b602082019050919050565b5f6020820190508181035f830152611dc581611d8c565b9050919050565b7f546f6b656e2070726963652073686f756c6420626520677265617465722074685f8201527f616e203000000000000000000000000000000000000000000000000000000000602082015250565b5f611e2660248361176f565b9150611e3182611dcc565b604082019050919050565b5f6020820190508181035f830152611e5381611e1a565b9050919050565b7f496e76616c696420746f6b656e206164647265737300000000000000000000005f82015250565b5f611e8e60158361176f565b9150611e9982611e5a565b602082019050919050565b5f6020820190508181035f830152611ebb81611e82565b9050919050565b7f416d6f756e742073686f756c642062652067726561746572207468616e2030005f82015250565b5f611ef6601f8361176f565b9150611f0182611ec2565b602082019050919050565b5f6020820190508181035f830152611f2381611eea565b9050919050565b5f81519050611f3881611876565b92915050565b5f60208284031215611f5357611f5261180f565b5b5f611f6084828501611f2a565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f2077697468647261770000005f82015250565b5f611f9d601d8361176f565b9150611fa882611f69565b602082019050919050565b5f6020820190508181035f830152611fca81611f91565b9050919050565b5f604082019050611fe45f830185611a13565b611ff16020830184611911565b9392505050565b612001816118de565b811461200b575f80fd5b50565b5f8151905061201c81611ff8565b92915050565b5f602082840312156120375761203661180f565b5b5f6120448482850161200e565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6120a760258361176f565b91506120b28261204d565b604082019050919050565b5f6020820190508181035f8301526120d48161209b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61213560268361176f565b9150612140826120db565b604082019050919050565b5f6020820190508181035f83015261216281612129565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6121c360248361176f565b91506121ce82612169565b604082019050919050565b5f6020820190508181035f8301526121f0816121b7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61225160228361176f565b915061225c826121f7565b604082019050919050565b5f6020820190508181035f83015261227e81612245565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6122b960208361176f565b91506122c482612285565b602082019050919050565b5f6020820190508181035f8301526122e6816122ad565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61234760218361176f565b9150612352826122ed565b604082019050919050565b5f6020820190508181035f8301526123748161233b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6123d560228361176f565b91506123e08261237b565b604082019050919050565b5f6020820190508181035f830152612402816123c9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61243d601d8361176f565b915061244882612409565b602082019050919050565b5f6020820190508181035f83015261246a81612431565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6124cb60258361176f565b91506124d682612471565b604082019050919050565b5f6020820190508181035f8301526124f8816124bf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61255960238361176f565b9150612564826124ff565b604082019050919050565b5f6020820190508181035f8301526125868161254d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6125e760268361176f565b91506125f28261258d565b604082019050919050565b5f6020820190508181035f830152612614816125db565b905091905056fea2646970667358221220fc0c0c757d959a9e5b37cadf845c4647cd8916ff7e6f5039b5a95cda14fcfd3864736f6c63430008180033

Deployed Bytecode Sourcemap

20713:3288:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9470:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11821:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10590:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23691:307;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13306:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21115:202;;;:::i;:::-;;21760:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22770:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21612:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23018:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21380:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10761:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2895:103;;;:::i;:::-;;2247:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9689:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22073:618;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14047:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23298:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11350:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3153:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20897:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9470:100;9524:13;9557:5;9550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9470:100;:::o;11821:201::-;11904:4;11921:13;11937:12;:10;:12::i;:::-;11921:28;;11960:32;11969:5;11976:7;11985:6;11960:8;:32::i;:::-;12010:4;12003:11;;;11821:201;;;;:::o;10590:108::-;10651:7;10678:12;;10671:19;;10590:108;:::o;23691:307::-;23789:4;23815:9;:17;23825:6;23815:17;;;;;;;;;;;;;;;;;;;;;;;;;23814:18;23806:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;23878:9;:20;23888:9;23878:20;;;;;;;;;;;;;;;;;;;;;;;;;23877:21;23869:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;23945:45;23964:6;23972:9;23983:6;23945:18;:45::i;:::-;23938:52;;23691:307;;;;;:::o;10432:93::-;10490:5;10515:2;10508:9;;10432:93;:::o;13306:238::-;13394:4;13411:13;13427:12;:10;:12::i;:::-;13411:28;;13450:64;13459:5;13466:7;13503:10;13475:25;13485:5;13492:7;13475:9;:25::i;:::-;:38;;;;:::i;:::-;13450:8;:64::i;:::-;13532:4;13525:11;;;13306:238;;;;:::o;21115:202::-;2133:13;:11;:13::i;:::-;21165:15:::1;21183:21;21165:39;;21233:1;21223:7;:11;21215:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;21280:10;21272:28;;:37;21301:7;21272:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;21154:163;21115:202::o:0;21760:236::-;21827:1;21818:6;:10;21810:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;21916:6;21891:21;21901:10;21891:9;:21::i;:::-;:31;;21883:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21963:25;21969:10;21981:6;21963:5;:25::i;:::-;21760:236;:::o;22770:164::-;2133:13;:11;:13::i;:::-;22868:1:::1;22849:21;;:7;:21;;::::0;22841:49:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22922:4;22901:9;:18;22911:7;22901:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;22770:164:::0;:::o;21612:94::-;21660:7;21687:11;;21680:18;;21612:94;:::o;23018:170::-;2133:13;:11;:13::i;:::-;23121:1:::1;23102:21;;:7;:21;;::::0;23094:49:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23175:5;23154:9;:18;23164:7;23154:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;23018:170:::0;:::o;21380:188::-;2133:13;:11;:13::i;:::-;21480:1:::1;21464:13;:17;21456:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;21547:13;21533:11;:27;;;;21380:188:::0;:::o;10761:127::-;10835:7;10862:9;:18;10872:7;10862:18;;;;;;;;;;;;;;;;10855:25;;10761:127;;;:::o;2895:103::-;2133:13;:11;:13::i;:::-;2960:30:::1;2987:1;2960:18;:30::i;:::-;2895:103::o:0;2247:87::-;2293:7;2320:6;;;;;;;;;;;2313:13;;2247:87;:::o;9689:104::-;9745:13;9778:7;9771:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9689:104;:::o;22073:618::-;2133:13;:11;:13::i;:::-;22196:1:::1;22172:26;;:12;:26;;::::0;22164:60:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22252:1;22243:6;:10;22235:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;22302:12;22324;22302:35;;22388:20;22411:5;:15;;;22435:4;22411:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22388:53;;22512:6;22496:12;:22;;22488:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22649:5;:14;;;22664:10;22676:6;22649:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22153:538;;22073:618:::0;;:::o;14047:436::-;14140:4;14157:13;14173:12;:10;:12::i;:::-;14157:28;;14196:24;14223:25;14233:5;14240:7;14223:9;:25::i;:::-;14196:52;;14287:15;14267:16;:35;;14259:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14380:60;14389:5;14396:7;14424:15;14405:16;:34;14380:8;:60::i;:::-;14471:4;14464:11;;;;14047:436;;;;:::o;23298:279::-;23376:4;23402:9;:21;23412:10;23402:21;;;;;;;;;;;;;;;;;;;;;;;;;23401:22;23393:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;23469:9;:20;23479:9;23469:20;;;;;;;;;;;;;;;;;;;;;;;;;23468:21;23460:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;23536:33;23551:9;23562:6;23536:14;:33::i;:::-;23529:40;;23298:279;;;;:::o;11350:151::-;11439:7;11466:11;:18;11478:5;11466:18;;;;;;;;;;;;;;;:27;11485:7;11466:27;;;;;;;;;;;;;;;;11459:34;;11350:151;;;;:::o;3153:201::-;2133:13;:11;:13::i;:::-;3262:1:::1;3242:22;;:8;:22;;::::0;3234:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3318:28;3337:8;3318:18;:28::i;:::-;3153:201:::0;:::o;20897:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;798:98::-;851:7;878:10;871:17;;798:98;:::o;18074:380::-;18227:1;18210:19;;:5;:19;;;18202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18308:1;18289:21;;:7;:21;;;18281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18392:6;18362:11;:18;18374:5;18362:18;;;;;;;;;;;;;;;:27;18381:7;18362:27;;;;;;;;;;;;;;;:36;;;;18430:7;18414:32;;18423:5;18414:32;;;18439:6;18414:32;;;;;;:::i;:::-;;;;;;;;18074:380;;;:::o;12602:295::-;12733:4;12750:15;12768:12;:10;:12::i;:::-;12750:30;;12791:38;12807:4;12813:7;12822:6;12791:15;:38::i;:::-;12840:27;12850:4;12856:2;12860:6;12840:9;:27::i;:::-;12885:4;12878:11;;;12602:295;;;;;:::o;2412:132::-;2487:12;:10;:12::i;:::-;2476:23;;:7;:5;:7::i;:::-;:23;;;2468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2412:132::o;16961:675::-;17064:1;17045:21;;:7;:21;;;17037:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17117:49;17138:7;17155:1;17159:6;17117:20;:49::i;:::-;17179:22;17204:9;:18;17214:7;17204:18;;;;;;;;;;;;;;;;17179:43;;17259:6;17241:14;:24;;17233:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17378:6;17361:14;:23;17340:9;:18;17350:7;17340:18;;;;;;;;;;;;;;;:44;;;;17495:6;17479:12;;:22;;;;;;;;;;;17556:1;17530:37;;17539:7;17530:37;;;17560:6;17530:37;;;;;;:::i;:::-;;;;;;;;17580:48;17600:7;17617:1;17621:6;17580:19;:48::i;:::-;17026:610;16961:675;;:::o;3514:191::-;3588:16;3607:6;;;;;;;;;;;3588:25;;3633:8;3624:6;;:17;;;;;;;;;;;;;;;;;;3688:8;3657:40;;3678:8;3657:40;;;;;;;;;;;;3577:128;3514:191;:::o;11094:193::-;11173:4;11190:13;11206:12;:10;:12::i;:::-;11190:28;;11229;11239:5;11246:2;11250:6;11229:9;:28::i;:::-;11275:4;11268:11;;;11094:193;;;;:::o;18745:453::-;18880:24;18907:25;18917:5;18924:7;18907:9;:25::i;:::-;18880:52;;18967:17;18947:16;:37;18943:248;;19029:6;19009:16;:26;;19001:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19113:51;19122:5;19129:7;19157:6;19138:16;:25;19113:8;:51::i;:::-;18943:248;18869:329;18745:453;;;:::o;14953:840::-;15100:1;15084:18;;:4;:18;;;15076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15177:1;15163:16;;:2;:16;;;15155:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15232:38;15253:4;15259:2;15263:6;15232:20;:38::i;:::-;15283:19;15305:9;:15;15315:4;15305:15;;;;;;;;;;;;;;;;15283:37;;15354:6;15339:11;:21;;15331:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15471:6;15457:11;:20;15439:9;:15;15449:4;15439:15;;;;;;;;;;;;;;;:38;;;;15674:6;15657:9;:13;15667:2;15657:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15724:2;15709:26;;15718:4;15709:26;;;15728:6;15709:26;;;;;;:::i;:::-;;;;;;;;15748:37;15768:4;15774:2;15778:6;15748:19;:37::i;:::-;15065:728;14953:840;;;:::o;19798:125::-;;;;:::o;20527:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:171::-;7007:23;7003:1;6995:6;6991:14;6984:47;6867:171;:::o;7044:366::-;7186:3;7207:67;7271:2;7266:3;7207:67;:::i;:::-;7200:74;;7283:93;7372:3;7283:93;:::i;:::-;7401:2;7396:3;7392:12;7385:19;;7044:366;;;:::o;7416:419::-;7582:4;7620:2;7609:9;7605:18;7597:26;;7669:9;7663:4;7659:20;7655:1;7644:9;7640:17;7633:47;7697:131;7823:4;7697:131;:::i;:::-;7689:139;;7416:419;;;:::o;7841:174::-;7981:26;7977:1;7969:6;7965:14;7958:50;7841:174;:::o;8021:366::-;8163:3;8184:67;8248:2;8243:3;8184:67;:::i;:::-;8177:74;;8260:93;8349:3;8260:93;:::i;:::-;8378:2;8373:3;8369:12;8362:19;;8021:366;;;:::o;8393:419::-;8559:4;8597:2;8586:9;8582:18;8574:26;;8646:9;8640:4;8636:20;8632:1;8621:9;8617:17;8610:47;8674:131;8800:4;8674:131;:::i;:::-;8666:139;;8393:419;;;:::o;8818:180::-;8866:77;8863:1;8856:88;8963:4;8960:1;8953:15;8987:4;8984:1;8977:15;9004:191;9044:3;9063:20;9081:1;9063:20;:::i;:::-;9058:25;;9097:20;9115:1;9097:20;:::i;:::-;9092:25;;9140:1;9137;9133:9;9126:16;;9161:3;9158:1;9155:10;9152:36;;;9168:18;;:::i;:::-;9152:36;9004:191;;;;:::o;9201:172::-;9341:24;9337:1;9329:6;9325:14;9318:48;9201:172;:::o;9379:366::-;9521:3;9542:67;9606:2;9601:3;9542:67;:::i;:::-;9535:74;;9618:93;9707:3;9618:93;:::i;:::-;9736:2;9731:3;9727:12;9720:19;;9379:366;;;:::o;9751:419::-;9917:4;9955:2;9944:9;9940:18;9932:26;;10004:9;9998:4;9994:20;9990:1;9979:9;9975:17;9968:47;10032:131;10158:4;10032:131;:::i;:::-;10024:139;;9751:419;;;:::o;10176:226::-;10316:34;10312:1;10304:6;10300:14;10293:58;10385:9;10380:2;10372:6;10368:15;10361:34;10176:226;:::o;10408:366::-;10550:3;10571:67;10635:2;10630:3;10571:67;:::i;:::-;10564:74;;10647:93;10736:3;10647:93;:::i;:::-;10765:2;10760:3;10756:12;10749:19;;10408:366;;;:::o;10780:419::-;10946:4;10984:2;10973:9;10969:18;10961:26;;11033:9;11027:4;11023:20;11019:1;11008:9;11004:17;10997:47;11061:131;11187:4;11061:131;:::i;:::-;11053:139;;10780:419;;;:::o;11205:175::-;11345:27;11341:1;11333:6;11329:14;11322:51;11205:175;:::o;11386:366::-;11528:3;11549:67;11613:2;11608:3;11549:67;:::i;:::-;11542:74;;11625:93;11714:3;11625:93;:::i;:::-;11743:2;11738:3;11734:12;11727:19;;11386:366;;;:::o;11758:419::-;11924:4;11962:2;11951:9;11947:18;11939:26;;12011:9;12005:4;12001:20;11997:1;11986:9;11982:17;11975:47;12039:131;12165:4;12039:131;:::i;:::-;12031:139;;11758:419;;;:::o;12183:165::-;12323:17;12319:1;12311:6;12307:14;12300:41;12183:165;:::o;12354:366::-;12496:3;12517:67;12581:2;12576:3;12517:67;:::i;:::-;12510:74;;12593:93;12682:3;12593:93;:::i;:::-;12711:2;12706:3;12702:12;12695:19;;12354:366;;;:::o;12726:419::-;12892:4;12930:2;12919:9;12915:18;12907:26;;12979:9;12973:4;12969:20;12965:1;12954:9;12950:17;12943:47;13007:131;13133:4;13007:131;:::i;:::-;12999:139;;12726:419;;;:::o;13151:223::-;13291:34;13287:1;13279:6;13275:14;13268:58;13360:6;13355:2;13347:6;13343:15;13336:31;13151:223;:::o;13380:366::-;13522:3;13543:67;13607:2;13602:3;13543:67;:::i;:::-;13536:74;;13619:93;13708:3;13619:93;:::i;:::-;13737:2;13732:3;13728:12;13721:19;;13380:366;;;:::o;13752:419::-;13918:4;13956:2;13945:9;13941:18;13933:26;;14005:9;13999:4;13995:20;13991:1;13980:9;13976:17;13969:47;14033:131;14159:4;14033:131;:::i;:::-;14025:139;;13752:419;;;:::o;14177:171::-;14317:23;14313:1;14305:6;14301:14;14294:47;14177:171;:::o;14354:366::-;14496:3;14517:67;14581:2;14576:3;14517:67;:::i;:::-;14510:74;;14593:93;14682:3;14593:93;:::i;:::-;14711:2;14706:3;14702:12;14695:19;;14354:366;;;:::o;14726:419::-;14892:4;14930:2;14919:9;14915:18;14907:26;;14979:9;14973:4;14969:20;14965:1;14954:9;14950:17;14943:47;15007:131;15133:4;15007:131;:::i;:::-;14999:139;;14726:419;;;:::o;15151:181::-;15291:33;15287:1;15279:6;15275:14;15268:57;15151:181;:::o;15338:366::-;15480:3;15501:67;15565:2;15560:3;15501:67;:::i;:::-;15494:74;;15577:93;15666:3;15577:93;:::i;:::-;15695:2;15690:3;15686:12;15679:19;;15338:366;;;:::o;15710:419::-;15876:4;15914:2;15903:9;15899:18;15891:26;;15963:9;15957:4;15953:20;15949:1;15938:9;15934:17;15927:47;15991:131;16117:4;15991:131;:::i;:::-;15983:139;;15710:419;;;:::o;16135:143::-;16192:5;16223:6;16217:13;16208:22;;16239:33;16266:5;16239:33;:::i;:::-;16135:143;;;;:::o;16284:351::-;16354:6;16403:2;16391:9;16382:7;16378:23;16374:32;16371:119;;;16409:79;;:::i;:::-;16371:119;16529:1;16554:64;16610:7;16601:6;16590:9;16586:22;16554:64;:::i;:::-;16544:74;;16500:128;16284:351;;;;:::o;16641:179::-;16781:31;16777:1;16769:6;16765:14;16758:55;16641:179;:::o;16826:366::-;16968:3;16989:67;17053:2;17048:3;16989:67;:::i;:::-;16982:74;;17065:93;17154:3;17065:93;:::i;:::-;17183:2;17178:3;17174:12;17167:19;;16826:366;;;:::o;17198:419::-;17364:4;17402:2;17391:9;17387:18;17379:26;;17451:9;17445:4;17441:20;17437:1;17426:9;17422:17;17415:47;17479:131;17605:4;17479:131;:::i;:::-;17471:139;;17198:419;;;:::o;17623:332::-;17744:4;17782:2;17771:9;17767:18;17759:26;;17795:71;17863:1;17852:9;17848:17;17839:6;17795:71;:::i;:::-;17876:72;17944:2;17933:9;17929:18;17920:6;17876:72;:::i;:::-;17623:332;;;;;:::o;17961:116::-;18031:21;18046:5;18031:21;:::i;:::-;18024:5;18021:32;18011:60;;18067:1;18064;18057:12;18011:60;17961:116;:::o;18083:137::-;18137:5;18168:6;18162:13;18153:22;;18184:30;18208:5;18184:30;:::i;:::-;18083:137;;;;:::o;18226:345::-;18293:6;18342:2;18330:9;18321:7;18317:23;18313:32;18310:119;;;18348:79;;:::i;:::-;18310:119;18468:1;18493:61;18546:7;18537:6;18526:9;18522:22;18493:61;:::i;:::-;18483:71;;18439:125;18226:345;;;;:::o;18577:224::-;18717:34;18713:1;18705:6;18701:14;18694:58;18786:7;18781:2;18773:6;18769:15;18762:32;18577:224;:::o;18807:366::-;18949:3;18970:67;19034:2;19029:3;18970:67;:::i;:::-;18963:74;;19046:93;19135:3;19046:93;:::i;:::-;19164:2;19159:3;19155:12;19148:19;;18807:366;;;:::o;19179:419::-;19345:4;19383:2;19372:9;19368:18;19360:26;;19432:9;19426:4;19422:20;19418:1;19407:9;19403:17;19396:47;19460:131;19586:4;19460:131;:::i;:::-;19452:139;;19179:419;;;:::o;19604:225::-;19744:34;19740:1;19732:6;19728:14;19721:58;19813:8;19808:2;19800:6;19796:15;19789:33;19604:225;:::o;19835:366::-;19977:3;19998:67;20062:2;20057:3;19998:67;:::i;:::-;19991:74;;20074:93;20163:3;20074:93;:::i;:::-;20192:2;20187:3;20183:12;20176:19;;19835:366;;;:::o;20207:419::-;20373:4;20411:2;20400:9;20396:18;20388:26;;20460:9;20454:4;20450:20;20446:1;20435:9;20431:17;20424:47;20488:131;20614:4;20488:131;:::i;:::-;20480:139;;20207:419;;;:::o;20632:223::-;20772:34;20768:1;20760:6;20756:14;20749:58;20841:6;20836:2;20828:6;20824:15;20817:31;20632:223;:::o;20861:366::-;21003:3;21024:67;21088:2;21083:3;21024:67;:::i;:::-;21017:74;;21100:93;21189:3;21100:93;:::i;:::-;21218:2;21213:3;21209:12;21202:19;;20861:366;;;:::o;21233:419::-;21399:4;21437:2;21426:9;21422:18;21414:26;;21486:9;21480:4;21476:20;21472:1;21461:9;21457:17;21450:47;21514:131;21640:4;21514:131;:::i;:::-;21506:139;;21233:419;;;:::o;21658:221::-;21798:34;21794:1;21786:6;21782:14;21775:58;21867:4;21862:2;21854:6;21850:15;21843:29;21658:221;:::o;21885:366::-;22027:3;22048:67;22112:2;22107:3;22048:67;:::i;:::-;22041:74;;22124:93;22213:3;22124:93;:::i;:::-;22242:2;22237:3;22233:12;22226:19;;21885:366;;;:::o;22257:419::-;22423:4;22461:2;22450:9;22446:18;22438:26;;22510:9;22504:4;22500:20;22496:1;22485:9;22481:17;22474:47;22538:131;22664:4;22538:131;:::i;:::-;22530:139;;22257:419;;;:::o;22682:182::-;22822:34;22818:1;22810:6;22806:14;22799:58;22682:182;:::o;22870:366::-;23012:3;23033:67;23097:2;23092:3;23033:67;:::i;:::-;23026:74;;23109:93;23198:3;23109:93;:::i;:::-;23227:2;23222:3;23218:12;23211:19;;22870:366;;;:::o;23242:419::-;23408:4;23446:2;23435:9;23431:18;23423:26;;23495:9;23489:4;23485:20;23481:1;23470:9;23466:17;23459:47;23523:131;23649:4;23523:131;:::i;:::-;23515:139;;23242:419;;;:::o;23667:220::-;23807:34;23803:1;23795:6;23791:14;23784:58;23876:3;23871:2;23863:6;23859:15;23852:28;23667:220;:::o;23893:366::-;24035:3;24056:67;24120:2;24115:3;24056:67;:::i;:::-;24049:74;;24132:93;24221:3;24132:93;:::i;:::-;24250:2;24245:3;24241:12;24234:19;;23893:366;;;:::o;24265:419::-;24431:4;24469:2;24458:9;24454:18;24446:26;;24518:9;24512:4;24508:20;24504:1;24493:9;24489:17;24482:47;24546:131;24672:4;24546:131;:::i;:::-;24538:139;;24265:419;;;:::o;24690:221::-;24830:34;24826:1;24818:6;24814:14;24807:58;24899:4;24894:2;24886:6;24882:15;24875:29;24690:221;:::o;24917:366::-;25059:3;25080:67;25144:2;25139:3;25080:67;:::i;:::-;25073:74;;25156:93;25245:3;25156:93;:::i;:::-;25274:2;25269:3;25265:12;25258:19;;24917:366;;;:::o;25289:419::-;25455:4;25493:2;25482:9;25478:18;25470:26;;25542:9;25536:4;25532:20;25528:1;25517:9;25513:17;25506:47;25570:131;25696:4;25570:131;:::i;:::-;25562:139;;25289:419;;;:::o;25714:179::-;25854:31;25850:1;25842:6;25838:14;25831:55;25714:179;:::o;25899:366::-;26041:3;26062:67;26126:2;26121:3;26062:67;:::i;:::-;26055:74;;26138:93;26227:3;26138:93;:::i;:::-;26256:2;26251:3;26247:12;26240:19;;25899:366;;;:::o;26271:419::-;26437:4;26475:2;26464:9;26460:18;26452:26;;26524:9;26518:4;26514:20;26510:1;26499:9;26495:17;26488:47;26552:131;26678:4;26552:131;:::i;:::-;26544:139;;26271:419;;;:::o;26696:224::-;26836:34;26832:1;26824:6;26820:14;26813:58;26905:7;26900:2;26892:6;26888:15;26881:32;26696:224;:::o;26926:366::-;27068:3;27089:67;27153:2;27148:3;27089:67;:::i;:::-;27082:74;;27165:93;27254:3;27165:93;:::i;:::-;27283:2;27278:3;27274:12;27267:19;;26926:366;;;:::o;27298:419::-;27464:4;27502:2;27491:9;27487:18;27479:26;;27551:9;27545:4;27541:20;27537:1;27526:9;27522:17;27515:47;27579:131;27705:4;27579:131;:::i;:::-;27571:139;;27298:419;;;:::o;27723:222::-;27863:34;27859:1;27851:6;27847:14;27840:58;27932:5;27927:2;27919:6;27915:15;27908:30;27723:222;:::o;27951:366::-;28093:3;28114:67;28178:2;28173:3;28114:67;:::i;:::-;28107:74;;28190:93;28279:3;28190:93;:::i;:::-;28308:2;28303:3;28299:12;28292:19;;27951:366;;;:::o;28323:419::-;28489:4;28527:2;28516:9;28512:18;28504:26;;28576:9;28570:4;28566:20;28562:1;28551:9;28547:17;28540:47;28604:131;28730:4;28604:131;:::i;:::-;28596:139;;28323:419;;;:::o;28748:225::-;28888:34;28884:1;28876:6;28872:14;28865:58;28957:8;28952:2;28944:6;28940:15;28933:33;28748:225;:::o;28979:366::-;29121:3;29142:67;29206:2;29201:3;29142:67;:::i;:::-;29135:74;;29218:93;29307:3;29218:93;:::i;:::-;29336:2;29331:3;29327:12;29320:19;;28979:366;;;:::o;29351:419::-;29517:4;29555:2;29544:9;29540:18;29532:26;;29604:9;29598:4;29594:20;29590:1;29579:9;29575:17;29568:47;29632:131;29758:4;29632:131;:::i;:::-;29624:139;;29351:419;;;:::o

Swarm Source

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