ETH Price: $2,967.17 (+3.57%)
Gas: 2 Gwei

Token

Conspiracy Coin (spspsps)
 

Overview

Max Total Supply

100,000,000 spspsps

Holders

159

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
464,045.155831821564863718 spspsps

Value
$0.00
0xb9ff27c08be49cf82243380716d655741be0f4d0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SPSPSPS

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;


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

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


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

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

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

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

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

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

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

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


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

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

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


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
        _balances[from] = fromBalance - amount;
        // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
        // decrementing then incrementing.
        _balances[to] += amount;
    }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}


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

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

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

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

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

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

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

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

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


interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}


interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


contract SPSPSPS is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniswapV2Pair;
    address public immutable devWallet;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;

    uint256 private launchBlock;
    uint256 private firstBlocks = 3;
    uint256 private swapsPerBlock = 2;

    bool public tradingActive;
    bool public limitsDisabled;

    mapping(address => bool) private excludedMaxTransactionAmount;

    constructor() ERC20("Conspiracy Coin", "spspsps") {
        uint256 maxSupply = 100_000_000 ether;
        maxTransactionAmount = maxSupply * 2 / 100;
        maxWallet = maxSupply * 2 / 100;

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        excludeFromMaxTransaction(address(uniswapV2Router));
        excludeFromMaxTransaction(uniswapV2Pair);
        excludeFromMaxTransaction(msg.sender);
        excludeFromMaxTransaction(address(this));

        _mint(address(this), maxSupply * 95 / 100);
        _mint(msg.sender, maxSupply * 5 / 100);
        devWallet = msg.sender;
    }

    receive() external payable {}

    function enableTrading() external payable onlyOwner {
        require(!tradingActive, "Token launched");
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value : msg.value}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            address(0xdead),
            block.timestamp
        );
        tradingActive = true;
        launchBlock = block.number;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(tradingActive || from == devWallet || to == devWallet || from == address(this) || to == address(this), "Trading is not active");

        bool isInFirstBlocks = launchBlock + firstBlocks >= block.number;

        if (tradingActive && !isInFirstBlocks && !limitsDisabled) {
            limitsDisabled = true;
        }

        if (
            from != devWallet &&
            to != devWallet &&
            !limitsDisabled
        ) {
            if (from == uniswapV2Pair && !excludedMaxTransactionAmount[to]) {
                require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount");
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }

            if (to == uniswapV2Pair && !excludedMaxTransactionAmount[from]) {
                require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount");
            }
        }

        super._transfer(from, to, amount);
    }

    function excludeFromMaxTransaction(address addr) private {
        excludedMaxTransactionAmount[addr] = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"payable","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":"limitsDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525060036009556002600a553480156200006257600080fd5b506040518060400160405280600f81526020017f436f6e7370697261637920436f696e00000000000000000000000000000000008152506040518060400160405280600781526020017f73707370737073000000000000000000000000000000000000000000000000008152508160039081620000e0919062000900565b508060049081620000f2919062000900565b5050506200011562000109620003e660201b60201c565b620003ee60201b60201c565b60006a52b7d2dcc80cd2e40000009050606460028262000136919062000a16565b62000142919062000a90565b600681905550606460028262000159919062000a16565b62000165919062000a90565b60078190555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001df919062000b32565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000249573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026f919062000b32565b6040518363ffffffff1660e01b81526004016200028e92919062000b75565b6020604051808303816000875af1158015620002ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d4919062000b32565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200031a608051620004b460201b60201c565b6200032d60a051620004b460201b60201c565b6200033e33620004b460201b60201c565b6200034f30620004b460201b60201c565b6200037d306064605f8462000365919062000a16565b62000371919062000a90565b6200050f60201b60201c565b620003ab33606460058462000393919062000a16565b6200039f919062000a90565b6200050f60201b60201c565b3373ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250505062000c8e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005789062000c03565b60405180910390fd5b62000595600083836200067c60201b60201c565b8060026000828254620005a9919062000c25565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200065c919062000c71565b60405180910390a362000678600083836200068160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070857607f821691505b6020821081036200071e576200071d620006c0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000749565b62000794868362000749565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007e1620007db620007d584620007ac565b620007b6565b620007ac565b9050919050565b6000819050919050565b620007fd83620007c0565b620008156200080c82620007e8565b84845462000756565b825550505050565b600090565b6200082c6200081d565b62000839818484620007f2565b505050565b5b8181101562000861576200085560008262000822565b6001810190506200083f565b5050565b601f821115620008b0576200087a8162000724565b620008858462000739565b8101602085101562000895578190505b620008ad620008a48562000739565b8301826200083e565b50505b505050565b600082821c905092915050565b6000620008d560001984600802620008b5565b1980831691505092915050565b6000620008f08383620008c2565b9150826002028217905092915050565b6200090b8262000686565b67ffffffffffffffff81111562000927576200092662000691565b5b620009338254620006ef565b6200094082828562000865565b600060209050601f83116001811462000978576000841562000963578287015190505b6200096f8582620008e2565b865550620009df565b601f198416620009888662000724565b60005b82811015620009b2578489015182556001820191506020850194506020810190506200098b565b86831015620009d25784890151620009ce601f891682620008c2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a2382620007ac565b915062000a3083620007ac565b925082820262000a4081620007ac565b9150828204841483151762000a5a5762000a59620009e7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000a9d82620007ac565b915062000aaa83620007ac565b92508262000abd5762000abc62000a61565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000afa8262000acd565b9050919050565b62000b0c8162000aed565b811462000b1857600080fd5b50565b60008151905062000b2c8162000b01565b92915050565b60006020828403121562000b4b5762000b4a62000ac8565b5b600062000b5b8482850162000b1b565b91505092915050565b62000b6f8162000aed565b82525050565b600060408201905062000b8c600083018562000b64565b62000b9b602083018462000b64565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000beb601f8362000ba2565b915062000bf88262000bb3565b602082019050919050565b6000602082019050818103600083015262000c1e8162000bdc565b9050919050565b600062000c3282620007ac565b915062000c3f83620007ac565b925082820190508082111562000c5a5762000c59620009e7565b5b92915050565b62000c6b81620007ac565b82525050565b600060208201905062000c88600083018462000c60565b92915050565b60805160a05160c0516124b962000cf6600039600081816108cb01528181610ed801528181610f2e0152818161109401526110eb0152600081816106a50152818161115a01526112a20152600081816105f50152818161078101526107c801526124b96000f3fe6080604052600436106101395760003560e01c80638a8c523c116100ab578063a9059cbb1161006f578063a9059cbb1461041a578063bbc0c74214610457578063c8c8ebe414610482578063dd62ed3e146104ad578063f2fde38b146104ea578063f8b45b051461051357610140565b80638a8c523c146103525780638da5cb5b1461035c5780638ea5220f1461038757806395d89b41146103b2578063a457c2d7146103dd57610140565b8063313ce567116100fd578063313ce5671461024057806338eac85d1461026b578063395093511461029657806349bd5a5e146102d357806370a08231146102fe578063715018a61461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a61053e565b60405161016791906117f6565b60405180910390f35b34801561017c57600080fd5b50610197600480360381019061019291906118b1565b6105d0565b6040516101a4919061190c565b60405180910390f35b3480156101b957600080fd5b506101c26105f3565b6040516101cf9190611986565b60405180910390f35b3480156101e457600080fd5b506101ed610617565b6040516101fa91906119b0565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906119cb565b610621565b604051610237919061190c565b60405180910390f35b34801561024c57600080fd5b50610255610650565b6040516102629190611a3a565b60405180910390f35b34801561027757600080fd5b50610280610659565b60405161028d919061190c565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b891906118b1565b61066c565b6040516102ca919061190c565b60405180910390f35b3480156102df57600080fd5b506102e86106a3565b6040516102f59190611a64565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190611a7f565b6106c7565b60405161033291906119b0565b60405180910390f35b34801561034757600080fd5b5061035061070f565b005b61035a610723565b005b34801561036857600080fd5b5061037161089f565b60405161037e9190611a64565b60405180910390f35b34801561039357600080fd5b5061039c6108c9565b6040516103a99190611a64565b60405180910390f35b3480156103be57600080fd5b506103c76108ed565b6040516103d491906117f6565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906118b1565b61097f565b604051610411919061190c565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c91906118b1565b6109f6565b60405161044e919061190c565b60405180910390f35b34801561046357600080fd5b5061046c610a19565b604051610479919061190c565b60405180910390f35b34801561048e57600080fd5b50610497610a2c565b6040516104a491906119b0565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190611aac565b610a32565b6040516104e191906119b0565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190611a7f565b610ab9565b005b34801561051f57600080fd5b50610528610b3c565b60405161053591906119b0565b60405180910390f35b60606003805461054d90611b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461057990611b1b565b80156105c65780601f1061059b576101008083540402835291602001916105c6565b820191906000526020600020905b8154815290600101906020018083116105a957829003601f168201915b5050505050905090565b6000806105db610b42565b90506105e8818585610b4a565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60008061062c610b42565b9050610639858285610d13565b610644858585610d9f565b60019150509392505050565b60006012905090565b600b60019054906101000a900460ff1681565b600080610677610b42565b90506106988185856106898589610a32565b6106939190611b7b565b610b4a565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107176113a2565b6107216000611420565b565b61072b6113a2565b600b60009054906101000a900460ff161561077b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077290611bfb565b60405180910390fd5b6107c6307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610b4a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719343061080d306106c7565b60008061dead426040518863ffffffff1660e01b815260040161083596959493929190611c56565b60606040518083038185885af1158015610853573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108789190611ccc565b5050506001600b60006101000a81548160ff02191690831515021790555043600881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600480546108fc90611b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461092890611b1b565b80156109755780601f1061094a57610100808354040283529160200191610975565b820191906000526020600020905b81548152906001019060200180831161095857829003601f168201915b5050505050905090565b60008061098a610b42565b905060006109988286610a32565b9050838110156109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490611d91565b60405180910390fd5b6109ea8286868403610b4a565b60019250505092915050565b600080610a01610b42565b9050610a0e818585610d9f565b600191505092915050565b600b60009054906101000a900460ff1681565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ac16113a2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790611e23565b60405180910390fd5b610b3981611420565b50565b60075481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090611eb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90611f47565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0691906119b0565b60405180910390a3505050565b6000610d1f8484610a32565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d995781811015610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290611fb3565b60405180910390fd5b610d988484848403610b4a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590612045565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906120d7565b60405180910390fd5b60008111610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790612169565b60405180910390fd5b600b60009054906101000a900460ff1680610f2657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610f7c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80610fb257503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610fe857503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e906121d5565b60405180910390fd5b60004360095460085461103a9190611b7b565b10159050600b60009054906101000a900460ff168015611058575080155b80156110715750600b60019054906101000a900460ff16155b15611092576001600b60016101000a81548160ff0219169083151502179055505b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561113a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156111535750600b60019054906101000a900460ff16155b15611391577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111fd5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156112a057600654821115611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90612267565b60405180910390fd5b600754611253846106c7565b8361125e9190611b7b565b111561129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906122d3565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156113455750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113905760065482111561138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690612365565b60405180910390fd5b5b5b61139c8484846114e6565b50505050565b6113aa610b42565b73ffffffffffffffffffffffffffffffffffffffff166113c861089f565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611415906123d1565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612045565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb906120d7565b60405180910390fd5b6115cf83838361175c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90612463565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161174391906119b0565b60405180910390a3611756848484611761565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117a0578082015181840152602081019050611785565b60008484015250505050565b6000601f19601f8301169050919050565b60006117c882611766565b6117d28185611771565b93506117e2818560208601611782565b6117eb816117ac565b840191505092915050565b6000602082019050818103600083015261181081846117bd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118488261181d565b9050919050565b6118588161183d565b811461186357600080fd5b50565b6000813590506118758161184f565b92915050565b6000819050919050565b61188e8161187b565b811461189957600080fd5b50565b6000813590506118ab81611885565b92915050565b600080604083850312156118c8576118c7611818565b5b60006118d685828601611866565b92505060206118e78582860161189c565b9150509250929050565b60008115159050919050565b611906816118f1565b82525050565b600060208201905061192160008301846118fd565b92915050565b6000819050919050565b600061194c6119476119428461181d565b611927565b61181d565b9050919050565b600061195e82611931565b9050919050565b600061197082611953565b9050919050565b61198081611965565b82525050565b600060208201905061199b6000830184611977565b92915050565b6119aa8161187b565b82525050565b60006020820190506119c560008301846119a1565b92915050565b6000806000606084860312156119e4576119e3611818565b5b60006119f286828701611866565b9350506020611a0386828701611866565b9250506040611a148682870161189c565b9150509250925092565b600060ff82169050919050565b611a3481611a1e565b82525050565b6000602082019050611a4f6000830184611a2b565b92915050565b611a5e8161183d565b82525050565b6000602082019050611a796000830184611a55565b92915050565b600060208284031215611a9557611a94611818565b5b6000611aa384828501611866565b91505092915050565b60008060408385031215611ac357611ac2611818565b5b6000611ad185828601611866565b9250506020611ae285828601611866565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b3357607f821691505b602082108103611b4657611b45611aec565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b868261187b565b9150611b918361187b565b9250828201905080821115611ba957611ba8611b4c565b5b92915050565b7f546f6b656e206c61756e63686564000000000000000000000000000000000000600082015250565b6000611be5600e83611771565b9150611bf082611baf565b602082019050919050565b60006020820190508181036000830152611c1481611bd8565b9050919050565b6000819050919050565b6000611c40611c3b611c3684611c1b565b611927565b61187b565b9050919050565b611c5081611c25565b82525050565b600060c082019050611c6b6000830189611a55565b611c7860208301886119a1565b611c856040830187611c47565b611c926060830186611c47565b611c9f6080830185611a55565b611cac60a08301846119a1565b979650505050505050565b600081519050611cc681611885565b92915050565b600080600060608486031215611ce557611ce4611818565b5b6000611cf386828701611cb7565b9350506020611d0486828701611cb7565b9250506040611d1586828701611cb7565b9150509250925092565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d7b602583611771565b9150611d8682611d1f565b604082019050919050565b60006020820190508181036000830152611daa81611d6e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e0d602683611771565b9150611e1882611db1565b604082019050919050565b60006020820190508181036000830152611e3c81611e00565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e9f602483611771565b9150611eaa82611e43565b604082019050919050565b60006020820190508181036000830152611ece81611e92565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f31602283611771565b9150611f3c82611ed5565b604082019050919050565b60006020820190508181036000830152611f6081611f24565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f9d601d83611771565b9150611fa882611f67565b602082019050919050565b60006020820190508181036000830152611fcc81611f90565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061202f602583611771565b915061203a82611fd3565b604082019050919050565b6000602082019050818103600083015261205e81612022565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c1602383611771565b91506120cc82612065565b604082019050919050565b600060208201905081810360008301526120f0816120b4565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612153602983611771565b915061215e826120f7565b604082019050919050565b6000602082019050818103600083015261218281612146565b9050919050565b7f54726164696e67206973206e6f74206163746976650000000000000000000000600082015250565b60006121bf601583611771565b91506121ca82612189565b602082019050919050565b600060208201905081810360008301526121ee816121b2565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e74000000000000000000000000602082015250565b6000612251603483611771565b915061225c826121f5565b604082019050919050565b6000602082019050818103600083015261228081612244565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006122bd601383611771565b91506122c882612287565b602082019050919050565b600060208201905081810360008301526122ec816122b0565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e740000000000000000000000602082015250565b600061234f603583611771565b915061235a826122f3565b604082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123bb602083611771565b91506123c682612385565b602082019050919050565b600060208201905081810360008301526123ea816123ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061244d602683611771565b9150612458826123f1565b604082019050919050565b6000602082019050818103600083015261247c81612440565b905091905056fea26469706673582212201bf66ac8800154653dba27b3aea440f0891a5db03939ecd57cc1c1d629d4a70d64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101395760003560e01c80638a8c523c116100ab578063a9059cbb1161006f578063a9059cbb1461041a578063bbc0c74214610457578063c8c8ebe414610482578063dd62ed3e146104ad578063f2fde38b146104ea578063f8b45b051461051357610140565b80638a8c523c146103525780638da5cb5b1461035c5780638ea5220f1461038757806395d89b41146103b2578063a457c2d7146103dd57610140565b8063313ce567116100fd578063313ce5671461024057806338eac85d1461026b578063395093511461029657806349bd5a5e146102d357806370a08231146102fe578063715018a61461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a61053e565b60405161016791906117f6565b60405180910390f35b34801561017c57600080fd5b50610197600480360381019061019291906118b1565b6105d0565b6040516101a4919061190c565b60405180910390f35b3480156101b957600080fd5b506101c26105f3565b6040516101cf9190611986565b60405180910390f35b3480156101e457600080fd5b506101ed610617565b6040516101fa91906119b0565b60405180910390f35b34801561020f57600080fd5b5061022a600480360381019061022591906119cb565b610621565b604051610237919061190c565b60405180910390f35b34801561024c57600080fd5b50610255610650565b6040516102629190611a3a565b60405180910390f35b34801561027757600080fd5b50610280610659565b60405161028d919061190c565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b891906118b1565b61066c565b6040516102ca919061190c565b60405180910390f35b3480156102df57600080fd5b506102e86106a3565b6040516102f59190611a64565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190611a7f565b6106c7565b60405161033291906119b0565b60405180910390f35b34801561034757600080fd5b5061035061070f565b005b61035a610723565b005b34801561036857600080fd5b5061037161089f565b60405161037e9190611a64565b60405180910390f35b34801561039357600080fd5b5061039c6108c9565b6040516103a99190611a64565b60405180910390f35b3480156103be57600080fd5b506103c76108ed565b6040516103d491906117f6565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906118b1565b61097f565b604051610411919061190c565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c91906118b1565b6109f6565b60405161044e919061190c565b60405180910390f35b34801561046357600080fd5b5061046c610a19565b604051610479919061190c565b60405180910390f35b34801561048e57600080fd5b50610497610a2c565b6040516104a491906119b0565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190611aac565b610a32565b6040516104e191906119b0565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190611a7f565b610ab9565b005b34801561051f57600080fd5b50610528610b3c565b60405161053591906119b0565b60405180910390f35b60606003805461054d90611b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461057990611b1b565b80156105c65780601f1061059b576101008083540402835291602001916105c6565b820191906000526020600020905b8154815290600101906020018083116105a957829003601f168201915b5050505050905090565b6000806105db610b42565b90506105e8818585610b4a565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60008061062c610b42565b9050610639858285610d13565b610644858585610d9f565b60019150509392505050565b60006012905090565b600b60019054906101000a900460ff1681565b600080610677610b42565b90506106988185856106898589610a32565b6106939190611b7b565b610b4a565b600191505092915050565b7f0000000000000000000000008ad748538c5c4860f1c6b0a98570ff5ad1c6617a81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107176113a2565b6107216000611420565b565b61072b6113a2565b600b60009054906101000a900460ff161561077b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077290611bfb565b60405180910390fd5b6107c6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610b4a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719343061080d306106c7565b60008061dead426040518863ffffffff1660e01b815260040161083596959493929190611c56565b60606040518083038185885af1158015610853573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108789190611ccc565b5050506001600b60006101000a81548160ff02191690831515021790555043600881905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000a04cb198bbde98ee90de4e28b35e81809304180881565b6060600480546108fc90611b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461092890611b1b565b80156109755780601f1061094a57610100808354040283529160200191610975565b820191906000526020600020905b81548152906001019060200180831161095857829003601f168201915b5050505050905090565b60008061098a610b42565b905060006109988286610a32565b9050838110156109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490611d91565b60405180910390fd5b6109ea8286868403610b4a565b60019250505092915050565b600080610a01610b42565b9050610a0e818585610d9f565b600191505092915050565b600b60009054906101000a900460ff1681565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ac16113a2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790611e23565b60405180910390fd5b610b3981611420565b50565b60075481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090611eb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90611f47565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0691906119b0565b60405180910390a3505050565b6000610d1f8484610a32565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d995781811015610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290611fb3565b60405180910390fd5b610d988484848403610b4a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590612045565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906120d7565b60405180910390fd5b60008111610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790612169565b60405180910390fd5b600b60009054906101000a900460ff1680610f2657507f000000000000000000000000a04cb198bbde98ee90de4e28b35e81809304180873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610f7c57507f000000000000000000000000a04cb198bbde98ee90de4e28b35e81809304180873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80610fb257503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610fe857503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e906121d5565b60405180910390fd5b60004360095460085461103a9190611b7b565b10159050600b60009054906101000a900460ff168015611058575080155b80156110715750600b60019054906101000a900460ff16155b15611092576001600b60016101000a81548160ff0219169083151502179055505b7f000000000000000000000000a04cb198bbde98ee90de4e28b35e81809304180873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561113a57507f000000000000000000000000a04cb198bbde98ee90de4e28b35e81809304180873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156111535750600b60019054906101000a900460ff16155b15611391577f0000000000000000000000008ad748538c5c4860f1c6b0a98570ff5ad1c6617a73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111fd5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156112a057600654821115611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90612267565b60405180910390fd5b600754611253846106c7565b8361125e9190611b7b565b111561129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906122d3565b60405180910390fd5b5b7f0000000000000000000000008ad748538c5c4860f1c6b0a98570ff5ad1c6617a73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156113455750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113905760065482111561138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690612365565b60405180910390fd5b5b5b61139c8484846114e6565b50505050565b6113aa610b42565b73ffffffffffffffffffffffffffffffffffffffff166113c861089f565b73ffffffffffffffffffffffffffffffffffffffff161461141e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611415906123d1565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612045565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb906120d7565b60405180910390fd5b6115cf83838361175c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90612463565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161174391906119b0565b60405180910390a3611756848484611761565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117a0578082015181840152602081019050611785565b60008484015250505050565b6000601f19601f8301169050919050565b60006117c882611766565b6117d28185611771565b93506117e2818560208601611782565b6117eb816117ac565b840191505092915050565b6000602082019050818103600083015261181081846117bd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118488261181d565b9050919050565b6118588161183d565b811461186357600080fd5b50565b6000813590506118758161184f565b92915050565b6000819050919050565b61188e8161187b565b811461189957600080fd5b50565b6000813590506118ab81611885565b92915050565b600080604083850312156118c8576118c7611818565b5b60006118d685828601611866565b92505060206118e78582860161189c565b9150509250929050565b60008115159050919050565b611906816118f1565b82525050565b600060208201905061192160008301846118fd565b92915050565b6000819050919050565b600061194c6119476119428461181d565b611927565b61181d565b9050919050565b600061195e82611931565b9050919050565b600061197082611953565b9050919050565b61198081611965565b82525050565b600060208201905061199b6000830184611977565b92915050565b6119aa8161187b565b82525050565b60006020820190506119c560008301846119a1565b92915050565b6000806000606084860312156119e4576119e3611818565b5b60006119f286828701611866565b9350506020611a0386828701611866565b9250506040611a148682870161189c565b9150509250925092565b600060ff82169050919050565b611a3481611a1e565b82525050565b6000602082019050611a4f6000830184611a2b565b92915050565b611a5e8161183d565b82525050565b6000602082019050611a796000830184611a55565b92915050565b600060208284031215611a9557611a94611818565b5b6000611aa384828501611866565b91505092915050565b60008060408385031215611ac357611ac2611818565b5b6000611ad185828601611866565b9250506020611ae285828601611866565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b3357607f821691505b602082108103611b4657611b45611aec565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b868261187b565b9150611b918361187b565b9250828201905080821115611ba957611ba8611b4c565b5b92915050565b7f546f6b656e206c61756e63686564000000000000000000000000000000000000600082015250565b6000611be5600e83611771565b9150611bf082611baf565b602082019050919050565b60006020820190508181036000830152611c1481611bd8565b9050919050565b6000819050919050565b6000611c40611c3b611c3684611c1b565b611927565b61187b565b9050919050565b611c5081611c25565b82525050565b600060c082019050611c6b6000830189611a55565b611c7860208301886119a1565b611c856040830187611c47565b611c926060830186611c47565b611c9f6080830185611a55565b611cac60a08301846119a1565b979650505050505050565b600081519050611cc681611885565b92915050565b600080600060608486031215611ce557611ce4611818565b5b6000611cf386828701611cb7565b9350506020611d0486828701611cb7565b9250506040611d1586828701611cb7565b9150509250925092565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d7b602583611771565b9150611d8682611d1f565b604082019050919050565b60006020820190508181036000830152611daa81611d6e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e0d602683611771565b9150611e1882611db1565b604082019050919050565b60006020820190508181036000830152611e3c81611e00565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e9f602483611771565b9150611eaa82611e43565b604082019050919050565b60006020820190508181036000830152611ece81611e92565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f31602283611771565b9150611f3c82611ed5565b604082019050919050565b60006020820190508181036000830152611f6081611f24565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f9d601d83611771565b9150611fa882611f67565b602082019050919050565b60006020820190508181036000830152611fcc81611f90565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061202f602583611771565b915061203a82611fd3565b604082019050919050565b6000602082019050818103600083015261205e81612022565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c1602383611771565b91506120cc82612065565b604082019050919050565b600060208201905081810360008301526120f0816120b4565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612153602983611771565b915061215e826120f7565b604082019050919050565b6000602082019050818103600083015261218281612146565b9050919050565b7f54726164696e67206973206e6f74206163746976650000000000000000000000600082015250565b60006121bf601583611771565b91506121ca82612189565b602082019050919050565b600060208201905081810360008301526121ee816121b2565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e74000000000000000000000000602082015250565b6000612251603483611771565b915061225c826121f5565b604082019050919050565b6000602082019050818103600083015261228081612244565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006122bd601383611771565b91506122c882612287565b602082019050919050565b600060208201905081810360008301526122ec816122b0565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e740000000000000000000000602082015250565b600061234f603583611771565b915061235a826122f3565b604082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123bb602083611771565b91506123c682612385565b602082019050919050565b600060208201905081810360008301526123ea816123ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061244d602683611771565b9150612458826123f1565b604082019050919050565b6000602082019050818103600083015261247c81612440565b905091905056fea26469706673582212201bf66ac8800154653dba27b3aea440f0891a5db03939ecd57cc1c1d629d4a70d64736f6c63430008130033

Deployed Bytecode Sourcemap

20636:3268:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5999:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8359:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20678:116;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7128:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9140:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6970:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21110:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9810:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20801:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7299:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18628:103;;;;;;;;;;;;;:::i;:::-;;21935:490;;;:::i;:::-;;17987:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20846:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6218:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10551:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7632:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21078:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20889:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7888:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18886:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20931:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5999:100;6053:13;6086:5;6079:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5999:100;:::o;8359:201::-;8442:4;8459:13;8475:12;:10;:12::i;:::-;8459:28;;8498:32;8507:5;8514:7;8523:6;8498:8;:32::i;:::-;8548:4;8541:11;;;8359:201;;;;:::o;20678:116::-;;;:::o;7128:108::-;7189:7;7216:12;;7209:19;;7128:108;:::o;9140:261::-;9237:4;9254:15;9272:12;:10;:12::i;:::-;9254:30;;9295:38;9311:4;9317:7;9326:6;9295:15;:38::i;:::-;9344:27;9354:4;9360:2;9364:6;9344:9;:27::i;:::-;9389:4;9382:11;;;9140:261;;;;;:::o;6970:93::-;7028:5;7053:2;7046:9;;6970:93;:::o;21110:26::-;;;;;;;;;;;;;:::o;9810:238::-;9898:4;9915:13;9931:12;:10;:12::i;:::-;9915:28;;9954:64;9963:5;9970:7;10007:10;9979:25;9989:5;9996:7;9979:9;:25::i;:::-;:38;;;;:::i;:::-;9954:8;:64::i;:::-;10036:4;10029:11;;;9810:238;;;;:::o;20801:38::-;;;:::o;7299:127::-;7373:7;7400:9;:18;7410:7;7400:18;;;;;;;;;;;;;;;;7393:25;;7299:127;;;:::o;18628:103::-;17873:13;:11;:13::i;:::-;18693:30:::1;18720:1;18693:18;:30::i;:::-;18628:103::o:0;21935:490::-;17873:13;:11;:13::i;:::-;22007::::1;;;;;;;;;;;22006:14;21998:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;22050:68;22067:4;22082:15;22100:17;22050:8;:68::i;:::-;22129:15;:31;;;22169:9;22202:4;22222:24;22240:4;22222:9;:24::i;:::-;22261:1;22277::::0;22301:6:::1;22323:15;22129:220;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;22376:4;22360:13;;:20;;;;;;;;;;;;;;;;;;22405:12;22391:11;:26;;;;21935:490::o:0;17987:87::-;18033:7;18060:6;;;;;;;;;;;18053:13;;17987:87;:::o;20846:34::-;;;:::o;6218:104::-;6274:13;6307:7;6300:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6218:104;:::o;10551:424::-;10644:4;10661:13;10677:12;:10;:12::i;:::-;10661:28;;10700:24;10727:25;10737:5;10744:7;10727:9;:25::i;:::-;10700:52;;10791:15;10771:16;:35;;10763:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10876:60;10885:5;10892:7;10920:15;10901:16;:34;10876:8;:60::i;:::-;10963:4;10956:11;;;;10551:424;;;;:::o;7632:193::-;7711:4;7728:13;7744:12;:10;:12::i;:::-;7728:28;;7767;7777:5;7784:2;7788:6;7767:9;:28::i;:::-;7813:4;7806:11;;;7632:193;;;;:::o;21078:25::-;;;;;;;;;;;;;:::o;20889:35::-;;;;:::o;7888:151::-;7977:7;8004:11;:18;8016:5;8004:18;;;;;;;;;;;;;;;:27;8023:7;8004:27;;;;;;;;;;;;;;;;7997:34;;7888:151;;;;:::o;18886:201::-;17873:13;:11;:13::i;:::-;18995:1:::1;18975:22;;:8;:22;;::::0;18967:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19051:28;19070:8;19051:18;:28::i;:::-;18886:201:::0;:::o;20931:24::-;;;;:::o;604:98::-;657:7;684:10;677:17;;604:98;:::o;14472:346::-;14591:1;14574:19;;:5;:19;;;14566:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14672:1;14653:21;;:7;:21;;;14645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14756:6;14726:11;:18;14738:5;14726:18;;;;;;;;;;;;;;;:27;14745:7;14726:27;;;;;;;;;;;;;;;:36;;;;14794:7;14778:32;;14787:5;14778:32;;;14803:6;14778:32;;;;;;:::i;:::-;;;;;;;;14472:346;;;:::o;15109:407::-;15210:24;15237:25;15247:5;15254:7;15237:9;:25::i;:::-;15210:52;;15297:17;15277:16;:37;15273:236;;15359:6;15339:16;:26;;15331:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15435:51;15444:5;15451:7;15479:6;15460:16;:25;15435:8;:51::i;:::-;15273:236;15199:317;15109:407;;;:::o;22433:1343::-;22547:1;22531:18;;:4;:18;;;22523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22624:1;22610:16;;:2;:16;;;22602:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22694:1;22685:6;:10;22677:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22760:13;;;;;;;;;;;:34;;;;22785:9;22777:17;;:4;:17;;;22760:34;:53;;;;22804:9;22798:15;;:2;:15;;;22760:53;:78;;;;22833:4;22817:21;;:4;:21;;;22760:78;:101;;;;22856:4;22842:19;;:2;:19;;;22760:101;22752:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;22900:20;22952:12;22937:11;;22923;;:25;;;;:::i;:::-;:41;;22900:64;;22981:13;;;;;;;;;;;:33;;;;;22999:15;22998:16;22981:33;:52;;;;;23019:14;;;;;;;;;;;23018:15;22981:52;22977:106;;;23067:4;23050:14;;:21;;;;;;;;;;;;;;;;;;22977:106;23121:9;23113:17;;:4;:17;;;;:49;;;;;23153:9;23147:15;;:2;:15;;;;23113:49;:81;;;;;23180:14;;;;;;;;;;;23179:15;23113:81;23095:628;;;23233:13;23225:21;;:4;:21;;;:58;;;;;23251:28;:32;23280:2;23251:32;;;;;;;;;;;;;;;;;;;;;;;;;23250:33;23225:58;23221:280;;;23322:20;;23312:6;:30;;23304:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;23452:9;;23435:13;23445:2;23435:9;:13::i;:::-;23426:6;:22;;;;:::i;:::-;:35;;23418:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23221:280;23527:13;23521:19;;:2;:19;;;:58;;;;;23545:28;:34;23574:4;23545:34;;;;;;;;;;;;;;;;;;;;;;;;;23544:35;23521:58;23517:195;;;23618:20;;23608:6;:30;;23600:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;23517:195;23095:628;23735:33;23751:4;23757:2;23761:6;23735:15;:33::i;:::-;22512:1264;22433:1343;;;:::o;18152:132::-;18227:12;:10;:12::i;:::-;18216:23;;:7;:5;:7::i;:::-;:23;;;18208:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18152:132::o;19247:191::-;19321:16;19340:6;;;;;;;;;;;19321:25;;19366:8;19357:6;;:17;;;;;;;;;;;;;;;;;;19421:8;19390:40;;19411:8;19390:40;;;;;;;;;;;;19310:128;19247:191;:::o;11445:782::-;11558:1;11542:18;;:4;:18;;;11534:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11635:1;11621:16;;:2;:16;;;11613:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11690:38;11711:4;11717:2;11721:6;11690:20;:38::i;:::-;11741:19;11763:9;:15;11773:4;11763:15;;;;;;;;;;;;;;;;11741:37;;11812:6;11797:11;:21;;11789:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;11921:6;11907:11;:20;11889:9;:15;11899:4;11889:15;;;;;;;;;;;;;;;:38;;;;12112:6;12095:9;:13;12105:2;12095:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12158:2;12143:26;;12152:4;12143:26;;;12162:6;12143:26;;;;;;:::i;:::-;;;;;;;;12182:37;12202:4;12208:2;12212:6;12182:19;:37::i;:::-;11523:704;11445:782;;;:::o;16116:91::-;;;;:::o;16811:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:180::-;7041:77;7038:1;7031:88;7138:4;7135:1;7128:15;7162:4;7159:1;7152:15;7179:320;7223:6;7260:1;7254:4;7250:12;7240:22;;7307:1;7301:4;7297:12;7328:18;7318:81;;7384:4;7376:6;7372:17;7362:27;;7318:81;7446:2;7438:6;7435:14;7415:18;7412:38;7409:84;;7465:18;;:::i;:::-;7409:84;7230:269;7179:320;;;:::o;7505:180::-;7553:77;7550:1;7543:88;7650:4;7647:1;7640:15;7674:4;7671:1;7664:15;7691:191;7731:3;7750:20;7768:1;7750:20;:::i;:::-;7745:25;;7784:20;7802:1;7784:20;:::i;:::-;7779:25;;7827:1;7824;7820:9;7813:16;;7848:3;7845:1;7842:10;7839:36;;;7855:18;;:::i;:::-;7839:36;7691:191;;;;:::o;7888:164::-;8028:16;8024:1;8016:6;8012:14;8005:40;7888:164;:::o;8058:366::-;8200:3;8221:67;8285:2;8280:3;8221:67;:::i;:::-;8214:74;;8297:93;8386:3;8297:93;:::i;:::-;8415:2;8410:3;8406:12;8399:19;;8058:366;;;:::o;8430:419::-;8596:4;8634:2;8623:9;8619:18;8611:26;;8683:9;8677:4;8673:20;8669:1;8658:9;8654:17;8647:47;8711:131;8837:4;8711:131;:::i;:::-;8703:139;;8430:419;;;:::o;8855:85::-;8900:7;8929:5;8918:16;;8855:85;;;:::o;8946:158::-;9004:9;9037:61;9055:42;9064:32;9090:5;9064:32;:::i;:::-;9055:42;:::i;:::-;9037:61;:::i;:::-;9024:74;;8946:158;;;:::o;9110:147::-;9205:45;9244:5;9205:45;:::i;:::-;9200:3;9193:58;9110:147;;:::o;9263:807::-;9512:4;9550:3;9539:9;9535:19;9527:27;;9564:71;9632:1;9621:9;9617:17;9608:6;9564:71;:::i;:::-;9645:72;9713:2;9702:9;9698:18;9689:6;9645:72;:::i;:::-;9727:80;9803:2;9792:9;9788:18;9779:6;9727:80;:::i;:::-;9817;9893:2;9882:9;9878:18;9869:6;9817:80;:::i;:::-;9907:73;9975:3;9964:9;9960:19;9951:6;9907:73;:::i;:::-;9990;10058:3;10047:9;10043:19;10034:6;9990:73;:::i;:::-;9263:807;;;;;;;;;:::o;10076:143::-;10133:5;10164:6;10158:13;10149:22;;10180:33;10207:5;10180:33;:::i;:::-;10076:143;;;;:::o;10225:663::-;10313:6;10321;10329;10378:2;10366:9;10357:7;10353:23;10349:32;10346:119;;;10384:79;;:::i;:::-;10346:119;10504:1;10529:64;10585:7;10576:6;10565:9;10561:22;10529:64;:::i;:::-;10519:74;;10475:128;10642:2;10668:64;10724:7;10715:6;10704:9;10700:22;10668:64;:::i;:::-;10658:74;;10613:129;10781:2;10807:64;10863:7;10854:6;10843:9;10839:22;10807:64;:::i;:::-;10797:74;;10752:129;10225:663;;;;;:::o;10894:224::-;11034:34;11030:1;11022:6;11018:14;11011:58;11103:7;11098:2;11090:6;11086:15;11079:32;10894:224;:::o;11124:366::-;11266:3;11287:67;11351:2;11346:3;11287:67;:::i;:::-;11280:74;;11363:93;11452:3;11363:93;:::i;:::-;11481:2;11476:3;11472:12;11465:19;;11124:366;;;:::o;11496:419::-;11662:4;11700:2;11689:9;11685:18;11677:26;;11749:9;11743:4;11739:20;11735:1;11724:9;11720:17;11713:47;11777:131;11903:4;11777:131;:::i;:::-;11769:139;;11496:419;;;:::o;11921:225::-;12061:34;12057:1;12049:6;12045:14;12038:58;12130:8;12125:2;12117:6;12113:15;12106:33;11921:225;:::o;12152:366::-;12294:3;12315:67;12379:2;12374:3;12315:67;:::i;:::-;12308:74;;12391:93;12480:3;12391:93;:::i;:::-;12509:2;12504:3;12500:12;12493:19;;12152:366;;;:::o;12524:419::-;12690:4;12728:2;12717:9;12713:18;12705:26;;12777:9;12771:4;12767:20;12763:1;12752:9;12748:17;12741:47;12805:131;12931:4;12805:131;:::i;:::-;12797:139;;12524:419;;;:::o;12949:223::-;13089:34;13085:1;13077:6;13073:14;13066:58;13158:6;13153:2;13145:6;13141:15;13134:31;12949:223;:::o;13178:366::-;13320:3;13341:67;13405:2;13400:3;13341:67;:::i;:::-;13334:74;;13417:93;13506:3;13417:93;:::i;:::-;13535:2;13530:3;13526:12;13519:19;;13178:366;;;:::o;13550:419::-;13716:4;13754:2;13743:9;13739:18;13731:26;;13803:9;13797:4;13793:20;13789:1;13778:9;13774:17;13767:47;13831:131;13957:4;13831:131;:::i;:::-;13823:139;;13550:419;;;:::o;13975:221::-;14115:34;14111:1;14103:6;14099:14;14092:58;14184:4;14179:2;14171:6;14167:15;14160:29;13975:221;:::o;14202:366::-;14344:3;14365:67;14429:2;14424:3;14365:67;:::i;:::-;14358:74;;14441:93;14530:3;14441:93;:::i;:::-;14559:2;14554:3;14550:12;14543:19;;14202:366;;;:::o;14574:419::-;14740:4;14778:2;14767:9;14763:18;14755:26;;14827:9;14821:4;14817:20;14813:1;14802:9;14798:17;14791:47;14855:131;14981:4;14855:131;:::i;:::-;14847:139;;14574:419;;;:::o;14999:179::-;15139:31;15135:1;15127:6;15123:14;15116:55;14999:179;:::o;15184:366::-;15326:3;15347:67;15411:2;15406:3;15347:67;:::i;:::-;15340:74;;15423:93;15512:3;15423:93;:::i;:::-;15541:2;15536:3;15532:12;15525:19;;15184:366;;;:::o;15556:419::-;15722:4;15760:2;15749:9;15745:18;15737:26;;15809:9;15803:4;15799:20;15795:1;15784:9;15780:17;15773:47;15837:131;15963:4;15837:131;:::i;:::-;15829:139;;15556:419;;;:::o;15981:224::-;16121:34;16117:1;16109:6;16105:14;16098:58;16190:7;16185:2;16177:6;16173:15;16166:32;15981:224;:::o;16211:366::-;16353:3;16374:67;16438:2;16433:3;16374:67;:::i;:::-;16367:74;;16450:93;16539:3;16450:93;:::i;:::-;16568:2;16563:3;16559:12;16552:19;;16211:366;;;:::o;16583:419::-;16749:4;16787:2;16776:9;16772:18;16764:26;;16836:9;16830:4;16826:20;16822:1;16811:9;16807:17;16800:47;16864:131;16990:4;16864:131;:::i;:::-;16856:139;;16583:419;;;:::o;17008:222::-;17148:34;17144:1;17136:6;17132:14;17125:58;17217:5;17212:2;17204:6;17200:15;17193:30;17008:222;:::o;17236:366::-;17378:3;17399:67;17463:2;17458:3;17399:67;:::i;:::-;17392:74;;17475:93;17564:3;17475:93;:::i;:::-;17593:2;17588:3;17584:12;17577:19;;17236:366;;;:::o;17608:419::-;17774:4;17812:2;17801:9;17797:18;17789:26;;17861:9;17855:4;17851:20;17847:1;17836:9;17832:17;17825:47;17889:131;18015:4;17889:131;:::i;:::-;17881:139;;17608:419;;;:::o;18033:228::-;18173:34;18169:1;18161:6;18157:14;18150:58;18242:11;18237:2;18229:6;18225:15;18218:36;18033:228;:::o;18267:366::-;18409:3;18430:67;18494:2;18489:3;18430:67;:::i;:::-;18423:74;;18506:93;18595:3;18506:93;:::i;:::-;18624:2;18619:3;18615:12;18608:19;;18267:366;;;:::o;18639:419::-;18805:4;18843:2;18832:9;18828:18;18820:26;;18892:9;18886:4;18882:20;18878:1;18867:9;18863:17;18856:47;18920:131;19046:4;18920:131;:::i;:::-;18912:139;;18639:419;;;:::o;19064:171::-;19204:23;19200:1;19192:6;19188:14;19181:47;19064:171;:::o;19241:366::-;19383:3;19404:67;19468:2;19463:3;19404:67;:::i;:::-;19397:74;;19480:93;19569:3;19480:93;:::i;:::-;19598:2;19593:3;19589:12;19582:19;;19241:366;;;:::o;19613:419::-;19779:4;19817:2;19806:9;19802:18;19794:26;;19866:9;19860:4;19856:20;19852:1;19841:9;19837:17;19830:47;19894:131;20020:4;19894:131;:::i;:::-;19886:139;;19613:419;;;:::o;20038:239::-;20178:34;20174:1;20166:6;20162:14;20155:58;20247:22;20242:2;20234:6;20230:15;20223:47;20038:239;:::o;20283:366::-;20425:3;20446:67;20510:2;20505:3;20446:67;:::i;:::-;20439:74;;20522:93;20611:3;20522:93;:::i;:::-;20640:2;20635:3;20631:12;20624:19;;20283:366;;;:::o;20655:419::-;20821:4;20859:2;20848:9;20844:18;20836:26;;20908:9;20902:4;20898:20;20894:1;20883:9;20879:17;20872:47;20936:131;21062:4;20936:131;:::i;:::-;20928:139;;20655:419;;;:::o;21080:169::-;21220:21;21216:1;21208:6;21204:14;21197:45;21080:169;:::o;21255:366::-;21397:3;21418:67;21482:2;21477:3;21418:67;:::i;:::-;21411:74;;21494:93;21583:3;21494:93;:::i;:::-;21612:2;21607:3;21603:12;21596:19;;21255:366;;;:::o;21627:419::-;21793:4;21831:2;21820:9;21816:18;21808:26;;21880:9;21874:4;21870:20;21866:1;21855:9;21851:17;21844:47;21908:131;22034:4;21908:131;:::i;:::-;21900:139;;21627:419;;;:::o;22052:240::-;22192:34;22188:1;22180:6;22176:14;22169:58;22261:23;22256:2;22248:6;22244:15;22237:48;22052:240;:::o;22298:366::-;22440:3;22461:67;22525:2;22520:3;22461:67;:::i;:::-;22454:74;;22537:93;22626:3;22537:93;:::i;:::-;22655:2;22650:3;22646:12;22639:19;;22298:366;;;:::o;22670:419::-;22836:4;22874:2;22863:9;22859:18;22851:26;;22923:9;22917:4;22913:20;22909:1;22898:9;22894:17;22887:47;22951:131;23077:4;22951:131;:::i;:::-;22943:139;;22670:419;;;:::o;23095:182::-;23235:34;23231:1;23223:6;23219:14;23212:58;23095:182;:::o;23283:366::-;23425:3;23446:67;23510:2;23505:3;23446:67;:::i;:::-;23439:74;;23522:93;23611:3;23522:93;:::i;:::-;23640:2;23635:3;23631:12;23624:19;;23283:366;;;:::o;23655:419::-;23821:4;23859:2;23848:9;23844:18;23836:26;;23908:9;23902:4;23898:20;23894:1;23883:9;23879:17;23872:47;23936:131;24062:4;23936:131;:::i;:::-;23928:139;;23655:419;;;:::o;24080:225::-;24220:34;24216:1;24208:6;24204:14;24197:58;24289:8;24284:2;24276:6;24272:15;24265:33;24080:225;:::o;24311:366::-;24453:3;24474:67;24538:2;24533:3;24474:67;:::i;:::-;24467:74;;24550:93;24639:3;24550:93;:::i;:::-;24668:2;24663:3;24659:12;24652:19;;24311:366;;;:::o;24683:419::-;24849:4;24887:2;24876:9;24872:18;24864:26;;24936:9;24930:4;24926:20;24922:1;24911:9;24907:17;24900:47;24964:131;25090:4;24964:131;:::i;:::-;24956:139;;24683:419;;;:::o

Swarm Source

ipfs://1bf66ac8800154653dba27b3aea440f0891a5db03939ecd57cc1c1d629d4a70d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.