ETH Price: $2,444.55 (-1.01%)

Token

Not Another Shitty Alien (NASAINU)
 

Overview

Max Total Supply

1,000,000,000 NASAINU

Holders

61

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
9,494,427.968158053 NASAINU

Value
$0.00
0xae91e36820a82220a6fe28555962e4a63053ec61
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:
NasaInu

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-08
*/

// SPDX-License-Identifier: MIT

/* 

███╗░░██╗░█████╗░░██████╗░█████╗░  ██╗███╗░░██╗██╗░░░██╗
████╗░██║██╔══██╗██╔════╝██╔══██╗  ██║████╗░██║██║░░░██║
██╔██╗██║███████║╚█████╗░███████║  ██║██╔██╗██║██║░░░██║
██║╚████║██╔══██║░╚═══██╗██╔══██║  ██║██║╚████║██║░░░██║
██║░╚███║██║░░██║██████╔╝██║░░██║  ██║██║░╚███║╚██████╔╝
╚═╝░░╚══╝╚═╝░░╚═╝╚═════╝░╚═╝░░╚═╝  ╚═╝╚═╝░░╚══╝░╚═════╝░

Join us if you are one of the shitty people.
https://t.me/nasaerc20
https://twitter.com/nasaerc20

*/

pragma solidity 0.8.16;

interface IFactoryV2 {
    event PairCreated(address indexed token0, address indexed token1, address lpPair, uint);
    function getPair(address tokenA, address tokenB) external view returns (address lpPair);
    function createPair(address tokenA, address tokenB) external returns (address lpPair);
}

interface IV2Pair {
    function factory() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function sync() external;
}

interface IRouter01 {
    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 addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function swapExactETHForTokens(
        uint amountOutMin, 
        address[] calldata path, 
        address to, uint deadline
    ) external payable returns (uint[] memory amounts);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IRouter02 is IRouter01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
}

/**
 * @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.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /** @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");

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

    /**
     * @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");

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

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

    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");

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract NasaInu is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Not Another Shitty Alien";
    string private _symbol = "NASAINU";
    uint8 private _decimals = 9;
    uint256 private _supply = 1000000000;
    uint256 public taxForLiquidity = 1;
    uint256 public taxForMilitary = 4;
    uint256 public maxTxAmount = 10000000 * 10 ** _decimals;
    uint256 public maxWalletAmount = 10000000 * 10** _decimals;
    address public militaryFund = 0x4C6eA9E49Bd83E72D5497dc03E1B8F899a74de54;
    // TOKENOMICS END ============================================================>

    IRouter02 public dexRouter;
    address public lpPair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 500000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 200000 * 10**_decimals;
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    modifier withdrawerAccount() {
        require(msg.sender == militaryFund);
        _;
    }

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

        if(block.chainid == 1) {
            dexRouter = IRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        } else if(block.chainid == 5) {
            dexRouter = IRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        }else if(block.chainid == 56) {
            dexRouter = IRouter02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
        } else {
            revert();
        }

        lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(), address(this));

        _isExcludedFromFee[address(dexRouter)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[militaryFund] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == lpPair || to == lpPair) && !inSwapAndLiquify) {
            if (from != lpPair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(militaryFund).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == lpPair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * taxForMilitary) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), tokenAmount);

        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(dexRouter), tokenAmount);

        dexRouter.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function setMilitaryFund(address newWallet) public onlyOwner returns (bool) {
        militaryFund = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMilitary(uint256 _taxForLiquidity, uint256 _taxForMilitary) public onlyOwner returns (bool) {
        require((_taxForLiquidity +_taxForMilitary) <= 25, "ERC20: total tax must not be greater than 25");
        taxForLiquidity = _taxForLiquidity;
        taxForMilitary = _taxForMilitary;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount) public onlyOwner returns (bool) {
        maxTxAmount = _maxTxAmount;
        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner returns (bool) {
        maxWalletAmount = _maxWalletAmount;
        return true;
    }

    function excludedFromFee(address _address) public onlyOwner {
        _isExcludedFromFee[_address] = true;
    }

    function withdraw() public withdrawerAccount {
        uint256 contractBalance = address(this).balance;
        payable(msg.sender).transfer(contractBalance);
    }

    receive() external payable {}
}

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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMilitary","type":"uint256"}],"name":"changeTaxForLiquidityAndMilitary","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"militaryFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMilitaryFund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMilitary","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280601881526020017f4e6f7420416e6f746865722053686974747920416c69656e0000000000000000815250600690816200004a919062000c91565b506040518060400160405280600781526020017f4e415341494e55000000000000000000000000000000000000000000000000008152506007908162000091919062000c91565b506009600860006101000a81548160ff021916908360ff160217905550633b9aca006009556001600a556004600b55600860009054906101000a900460ff16600a620000de919062000f08565b62989680620000ee919062000f59565b600c55600860009054906101000a900460ff16600a6200010f919062000f08565b629896806200011f919062000f59565b600d55734c6ea9e49bd83e72d5497dc03e1b8f899a74de54600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601155600860009054906101000a900460ff16600a6200019a919062000f08565b6207a120620001aa919062000f59565b601355600860009054906101000a900460ff16600a620001cb919062000f08565b62030d40620001db919062000f59565b601455348015620001eb57600080fd5b5060068054620001fb9062000a80565b80601f0160208091040260200160405190810160405280929190818152602001828054620002299062000a80565b80156200027a5780601f106200024e576101008083540402835291602001916200027a565b820191906000526020600020905b8154815290600101906020018083116200025c57829003601f168201915b5050505050600780546200028e9062000a80565b80601f0160208091040260200160405190810160405280929190818152602001828054620002bc9062000a80565b80156200030d5780601f10620002e1576101008083540402835291602001916200030d565b820191906000526020600020905b815481529060010190602001808311620002ef57829003601f168201915b5050505050816003908162000323919062000c91565b50806004908162000335919062000c91565b505050620003586200034c6200080460201b60201c565b6200080c60201b60201c565b6200039633600860009054906101000a900460ff16600a6200037b919062000f08565b6009546200038a919062000f59565b620008d260201b60201c565b60014603620003fa57737a250d5630b4cf539739df2c5dacb4c659f2488d600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c9565b600546036200045e57737a250d5630b4cf539739df2c5dacb4c659f2488d600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c8565b60384603620004c2577310ed43c718714eb63d5aa57b78b54704e256024e600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c7565b600080fd5b5b5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000537573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200055d919062001024565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200060c919062001024565b306040518363ffffffff1660e01b81526004016200062c92919062001067565b6020604051808303816000875af11580156200064c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000672919062001024565b601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160126000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062001180565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000944576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093b90620010f5565b60405180910390fd5b806002600082825462000958919062001117565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a0b919062001163565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9957607f821691505b60208210810362000aaf5762000aae62000a51565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ada565b62000b25868362000ada565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b7262000b6c62000b668462000b3d565b62000b47565b62000b3d565b9050919050565b6000819050919050565b62000b8e8362000b51565b62000ba662000b9d8262000b79565b84845462000ae7565b825550505050565b600090565b62000bbd62000bae565b62000bca81848462000b83565b505050565b5b8181101562000bf25762000be660008262000bb3565b60018101905062000bd0565b5050565b601f82111562000c415762000c0b8162000ab5565b62000c168462000aca565b8101602085101562000c26578190505b62000c3e62000c358562000aca565b83018262000bcf565b50505b505050565b600082821c905092915050565b600062000c666000198460080262000c46565b1980831691505092915050565b600062000c81838362000c53565b9150826002028217905092915050565b62000c9c8262000a17565b67ffffffffffffffff81111562000cb85762000cb762000a22565b5b62000cc4825462000a80565b62000cd182828562000bf6565b600060209050601f83116001811462000d09576000841562000cf4578287015190505b62000d00858262000c73565b86555062000d70565b601f19841662000d198662000ab5565b60005b8281101562000d435784890151825560018201915060208501945060208101905062000d1c565b8683101562000d63578489015162000d5f601f89168262000c53565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000e065780860481111562000dde5762000ddd62000d78565b5b600185161562000dee5780820291505b808102905062000dfe8562000da7565b945062000dbe565b94509492505050565b60008262000e21576001905062000ef4565b8162000e31576000905062000ef4565b816001811462000e4a576002811462000e555762000e8b565b600191505062000ef4565b60ff84111562000e6a5762000e6962000d78565b5b8360020a91508482111562000e845762000e8362000d78565b5b5062000ef4565b5060208310610133831016604e8410600b841016171562000ec55782820a90508381111562000ebf5762000ebe62000d78565b5b62000ef4565b62000ed4848484600162000db4565b9250905081840481111562000eee5762000eed62000d78565b5b81810290505b9392505050565b600060ff82169050919050565b600062000f158262000b3d565b915062000f228362000efb565b925062000f517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e0f565b905092915050565b600062000f668262000b3d565b915062000f738362000b3d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000faf5762000fae62000d78565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fec8262000fbf565b9050919050565b62000ffe8162000fdf565b81146200100a57600080fd5b50565b6000815190506200101e8162000ff3565b92915050565b6000602082840312156200103d576200103c62000fba565b5b60006200104d848285016200100d565b91505092915050565b620010618162000fdf565b82525050565b60006040820190506200107e600083018562001056565b6200108d602083018462001056565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010dd601f8362001094565b9150620010ea82620010a5565b602082019050919050565b600060208201905081810360008301526200111081620010ce565b9050919050565b6000620011248262000b3d565b9150620011318362000b3d565b92508282019050808211156200114c576200114b62000d78565b5b92915050565b6200115d8162000b3d565b82525050565b60006020820190506200117a600083018462001152565b92915050565b612d0080620011906000396000f3fe6080604052600436106101a05760003560e01c806377fc3cae116100ec578063a457c2d71161008a578063ce9c2d1011610064578063ce9c2d1014610613578063dd62ed3e1461063e578063f2fde38b1461067b578063f345bd85146106a4576101a7565b8063a457c2d71461056e578063a9059cbb146105ab578063aa4bde28146105e8576101a7565b80638c0b5e22116100c65780638c0b5e22146104b05780638da5cb5b146104db578063959dad541461050657806395d89b4114610543576101a7565b806377fc3cae1461040d57806381bfdcca1461044a57806385ecafd714610487576101a7565b806338a52c0a11610159578063452ed4f111610133578063452ed4f114610351578063677daa571461037c57806370a08231146103b9578063715018a6146103f6576101a7565b806338a52c0a146102d257806339509351146102fd5780633ccfd60b1461033a576101a7565b806306fdde03146101ac5780630758d924146101d7578063095ea7b31461020257806318160ddd1461023f57806323b872dd1461026a578063313ce567146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106cf565b6040516101ce9190611dcb565b60405180910390f35b3480156101e357600080fd5b506101ec610761565b6040516101f99190611e6c565b60405180910390f35b34801561020e57600080fd5b5061022960048036038101906102249190611f00565b610787565b6040516102369190611f5b565b60405180910390f35b34801561024b57600080fd5b506102546107aa565b6040516102619190611f85565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611fa0565b6107b4565b60405161029e9190611f5b565b60405180910390f35b3480156102b357600080fd5b506102bc6107e3565b6040516102c9919061200f565b60405180910390f35b3480156102de57600080fd5b506102e76107ec565b6040516102f49190611f85565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190611f00565b6107f2565b6040516103319190611f5b565b60405180910390f35b34801561034657600080fd5b5061034f610829565b005b34801561035d57600080fd5b506103666108d2565b6040516103739190612039565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190612054565b6108f8565b6040516103b09190611f5b565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190612081565b610912565b6040516103ed9190611f85565b60405180910390f35b34801561040257600080fd5b5061040b61095a565b005b34801561041957600080fd5b50610434600480360381019061042f9190612081565b61096e565b6040516104419190611f5b565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612054565b6109c2565b60405161047e9190611f5b565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612081565b6109dc565b005b3480156104bc57600080fd5b506104c5610a3f565b6040516104d29190611f85565b60405180910390f35b3480156104e757600080fd5b506104f0610a45565b6040516104fd9190612039565b60405180910390f35b34801561051257600080fd5b5061052d600480360381019061052891906120ae565b610a6f565b60405161053a9190611f5b565b60405180910390f35b34801561054f57600080fd5b50610558610ae0565b6040516105659190611dcb565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190611f00565b610b72565b6040516105a29190611f5b565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190611f00565b610be9565b6040516105df9190611f5b565b60405180910390f35b3480156105f457600080fd5b506105fd610c0c565b60405161060a9190611f85565b60405180910390f35b34801561061f57600080fd5b50610628610c12565b6040516106359190612039565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906120ee565b610c38565b6040516106729190611f85565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612081565b610cbf565b005b3480156106b057600080fd5b506106b9610d42565b6040516106c69190611f85565b60405180910390f35b6060600380546106de9061215d565b80601f016020809104026020016040519081016040528092919081815260200182805461070a9061215d565b80156107575780601f1061072c57610100808354040283529160200191610757565b820191906000526020600020905b81548152906001019060200180831161073a57829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610792610d48565b905061079f818585610d50565b600191505092915050565b6000600254905090565b6000806107bf610d48565b90506107cc858285610f19565b6107d7858585610fa5565b60019150509392505050565b60006009905090565b600b5481565b6000806107fd610d48565b905061081e81858561080f8589610c38565b61081991906121bd565b610d50565b600191505092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461088357600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156108ce573d6000803e3d6000fd5b5050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610902611535565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610962611535565b61096c60006115b3565b565b6000610978611535565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60006109cc611535565b81600d8190555060019050919050565b6109e4611535565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610a79611535565b60198284610a8791906121bd565b1115610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90612263565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b606060048054610aef9061215d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1b9061215d565b8015610b685780601f10610b3d57610100808354040283529160200191610b68565b820191906000526020600020905b815481529060010190602001808311610b4b57829003601f168201915b5050505050905090565b600080610b7d610d48565b90506000610b8b8286610c38565b905083811015610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc7906122f5565b60405180910390fd5b610bdd8286868403610d50565b60019250505092915050565b600080610bf4610d48565b9050610c01818585610fa5565b600191505092915050565b600d5481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cc7611535565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90612387565b60405180910390fd5b610d3f816115b3565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690612419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e25906124ab565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f0c9190611f85565b60405180910390a3505050565b6000610f258484610c38565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f9f5781811015610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612517565b60405180910390fd5b610f9e8484848403610d50565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b906125a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a9061263b565b60405180910390fd5b8061108d84610912565b10156110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906126cd565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111775750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156111905750601560009054906101000a900460ff16155b1561152457601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146112e95760006011546111f830610912565b61120291906126ed565b9050601354811061121957611218601354611679565b5b601454601154106112e75761122f60145461173a565b6014546011600082825461124391906126ed565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc9061276d565b60405180910390fd5b505b505b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061138c5750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561139957819050611513565b600c548211156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d5906127ff565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361148c57600d5461143f84610912565b8361144a91906121bd565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612891565b60405180910390fd5b5b60006064600b548461149e91906128b1565b6114a8919061293a565b905060006064600a54856114bc91906128b1565b6114c6919061293a565b905080826114d491906121bd565b846114df91906126ed565b925081601160008282546114f391906121bd565b925050819055506115108630838561150b91906121bd565b6119c0565b50505b61151e8484836119c0565b50611530565b61152f8383836119c0565b5b505050565b61153d610d48565b73ffffffffffffffffffffffffffffffffffffffff1661155b610a45565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a8906129b7565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601560006101000a81548160ff02191690831515021790555060006002826116a3919061293a565b9050600081836116b391906126ed565b905060004790506116c38361173a565b600081476116d191906126ed565b90506116dd8382611c20565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611710939291906129d7565b60405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b6001601560006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561177257611771612a0e565b5b6040519080825280602002602001820160405280156117a05781602001602082028036833780820191505090505b50905030816000815181106117b8576117b7612a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561185f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118839190612a81565b8160018151811061189757611896612a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506118fe30600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c4261194f91906121bd565b6040518663ffffffff1660e01b815260040161196f959493929190612ba7565b600060405180830381600087803b15801561198957600080fd5b505af115801561199d573d6000803e3d6000fd5b50505050506000601560006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a26906125a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a959061263b565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b906126cd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c129190611f85565b60405180910390a350505050565b6001601560006101000a81548160ff021916908315150217905550611c6830600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cb4610a45565b426040518863ffffffff1660e01b8152600401611cd696959493929190612c01565b60606040518083038185885af1158015611cf4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d199190612c77565b5050506000601560006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d75578082015181840152602081019050611d5a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d9d82611d3b565b611da78185611d46565b9350611db7818560208601611d57565b611dc081611d81565b840191505092915050565b60006020820190508181036000830152611de58184611d92565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611e32611e2d611e2884611ded565b611e0d565b611ded565b9050919050565b6000611e4482611e17565b9050919050565b6000611e5682611e39565b9050919050565b611e6681611e4b565b82525050565b6000602082019050611e816000830184611e5d565b92915050565b600080fd5b6000611e9782611ded565b9050919050565b611ea781611e8c565b8114611eb257600080fd5b50565b600081359050611ec481611e9e565b92915050565b6000819050919050565b611edd81611eca565b8114611ee857600080fd5b50565b600081359050611efa81611ed4565b92915050565b60008060408385031215611f1757611f16611e87565b5b6000611f2585828601611eb5565b9250506020611f3685828601611eeb565b9150509250929050565b60008115159050919050565b611f5581611f40565b82525050565b6000602082019050611f706000830184611f4c565b92915050565b611f7f81611eca565b82525050565b6000602082019050611f9a6000830184611f76565b92915050565b600080600060608486031215611fb957611fb8611e87565b5b6000611fc786828701611eb5565b9350506020611fd886828701611eb5565b9250506040611fe986828701611eeb565b9150509250925092565b600060ff82169050919050565b61200981611ff3565b82525050565b60006020820190506120246000830184612000565b92915050565b61203381611e8c565b82525050565b600060208201905061204e600083018461202a565b92915050565b60006020828403121561206a57612069611e87565b5b600061207884828501611eeb565b91505092915050565b60006020828403121561209757612096611e87565b5b60006120a584828501611eb5565b91505092915050565b600080604083850312156120c5576120c4611e87565b5b60006120d385828601611eeb565b92505060206120e485828601611eeb565b9150509250929050565b6000806040838503121561210557612104611e87565b5b600061211385828601611eb5565b925050602061212485828601611eb5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061217557607f821691505b6020821081036121885761218761212e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121c882611eca565b91506121d383611eca565b92508282019050808211156121eb576121ea61218e565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2032350000000000000000000000000000000000000000602082015250565b600061224d602c83611d46565b9150612258826121f1565b604082019050919050565b6000602082019050818103600083015261227c81612240565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122df602583611d46565b91506122ea82612283565b604082019050919050565b6000602082019050818103600083015261230e816122d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612371602683611d46565b915061237c82612315565b604082019050919050565b600060208201905081810360008301526123a081612364565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612403602483611d46565b915061240e826123a7565b604082019050919050565b60006020820190508181036000830152612432816123f6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612495602283611d46565b91506124a082612439565b604082019050919050565b600060208201905081810360008301526124c481612488565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612501601d83611d46565b915061250c826124cb565b602082019050919050565b60006020820190508181036000830152612530816124f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612593602583611d46565b915061259e82612537565b604082019050919050565b600060208201905081810360008301526125c281612586565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612625602383611d46565b9150612630826125c9565b604082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126b7602683611d46565b91506126c28261265b565b604082019050919050565b600060208201905081810360008301526126e6816126aa565b9050919050565b60006126f882611eca565b915061270383611eca565b925082820390508181111561271b5761271a61218e565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612757601283611d46565b915061276282612721565b602082019050919050565b600060208201905081810360008301526127868161274a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006127e9603983611d46565b91506127f48261278d565b604082019050919050565b60006020820190508181036000830152612818816127dc565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061287b603683611d46565b91506128868261281f565b604082019050919050565b600060208201905081810360008301526128aa8161286e565b9050919050565b60006128bc82611eca565b91506128c783611eca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612900576128ff61218e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061294582611eca565b915061295083611eca565b9250826129605761295f61290b565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129a1602083611d46565b91506129ac8261296b565b602082019050919050565b600060208201905081810360008301526129d081612994565b9050919050565b60006060820190506129ec6000830186611f76565b6129f96020830185611f76565b612a066040830184611f76565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612a7b81611e9e565b92915050565b600060208284031215612a9757612a96611e87565b5b6000612aa584828501612a6c565b91505092915050565b6000819050919050565b6000612ad3612ace612ac984612aae565b611e0d565b611eca565b9050919050565b612ae381612ab8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b1e81611e8c565b82525050565b6000612b308383612b15565b60208301905092915050565b6000602082019050919050565b6000612b5482612ae9565b612b5e8185612af4565b9350612b6983612b05565b8060005b83811015612b9a578151612b818882612b24565b9750612b8c83612b3c565b925050600181019050612b6d565b5085935050505092915050565b600060a082019050612bbc6000830188611f76565b612bc96020830187612ada565b8181036040830152612bdb8186612b49565b9050612bea606083018561202a565b612bf76080830184611f76565b9695505050505050565b600060c082019050612c16600083018961202a565b612c236020830188611f76565b612c306040830187612ada565b612c3d6060830186612ada565b612c4a608083018561202a565b612c5760a0830184611f76565b979650505050505050565b600081519050612c7181611ed4565b92915050565b600080600060608486031215612c9057612c8f611e87565b5b6000612c9e86828701612c62565b9350506020612caf86828701612c62565b9250506040612cc086828701612c62565b915050925092509256fea2646970667358221220f5245e6304bb97ff9a161e7f3984caf1308789ecad3f3d29c9b46c968ad0baa864736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806377fc3cae116100ec578063a457c2d71161008a578063ce9c2d1011610064578063ce9c2d1014610613578063dd62ed3e1461063e578063f2fde38b1461067b578063f345bd85146106a4576101a7565b8063a457c2d71461056e578063a9059cbb146105ab578063aa4bde28146105e8576101a7565b80638c0b5e22116100c65780638c0b5e22146104b05780638da5cb5b146104db578063959dad541461050657806395d89b4114610543576101a7565b806377fc3cae1461040d57806381bfdcca1461044a57806385ecafd714610487576101a7565b806338a52c0a11610159578063452ed4f111610133578063452ed4f114610351578063677daa571461037c57806370a08231146103b9578063715018a6146103f6576101a7565b806338a52c0a146102d257806339509351146102fd5780633ccfd60b1461033a576101a7565b806306fdde03146101ac5780630758d924146101d7578063095ea7b31461020257806318160ddd1461023f57806323b872dd1461026a578063313ce567146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106cf565b6040516101ce9190611dcb565b60405180910390f35b3480156101e357600080fd5b506101ec610761565b6040516101f99190611e6c565b60405180910390f35b34801561020e57600080fd5b5061022960048036038101906102249190611f00565b610787565b6040516102369190611f5b565b60405180910390f35b34801561024b57600080fd5b506102546107aa565b6040516102619190611f85565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611fa0565b6107b4565b60405161029e9190611f5b565b60405180910390f35b3480156102b357600080fd5b506102bc6107e3565b6040516102c9919061200f565b60405180910390f35b3480156102de57600080fd5b506102e76107ec565b6040516102f49190611f85565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190611f00565b6107f2565b6040516103319190611f5b565b60405180910390f35b34801561034657600080fd5b5061034f610829565b005b34801561035d57600080fd5b506103666108d2565b6040516103739190612039565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190612054565b6108f8565b6040516103b09190611f5b565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190612081565b610912565b6040516103ed9190611f85565b60405180910390f35b34801561040257600080fd5b5061040b61095a565b005b34801561041957600080fd5b50610434600480360381019061042f9190612081565b61096e565b6040516104419190611f5b565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612054565b6109c2565b60405161047e9190611f5b565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612081565b6109dc565b005b3480156104bc57600080fd5b506104c5610a3f565b6040516104d29190611f85565b60405180910390f35b3480156104e757600080fd5b506104f0610a45565b6040516104fd9190612039565b60405180910390f35b34801561051257600080fd5b5061052d600480360381019061052891906120ae565b610a6f565b60405161053a9190611f5b565b60405180910390f35b34801561054f57600080fd5b50610558610ae0565b6040516105659190611dcb565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190611f00565b610b72565b6040516105a29190611f5b565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190611f00565b610be9565b6040516105df9190611f5b565b60405180910390f35b3480156105f457600080fd5b506105fd610c0c565b60405161060a9190611f85565b60405180910390f35b34801561061f57600080fd5b50610628610c12565b6040516106359190612039565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906120ee565b610c38565b6040516106729190611f85565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d9190612081565b610cbf565b005b3480156106b057600080fd5b506106b9610d42565b6040516106c69190611f85565b60405180910390f35b6060600380546106de9061215d565b80601f016020809104026020016040519081016040528092919081815260200182805461070a9061215d565b80156107575780601f1061072c57610100808354040283529160200191610757565b820191906000526020600020905b81548152906001019060200180831161073a57829003601f168201915b5050505050905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610792610d48565b905061079f818585610d50565b600191505092915050565b6000600254905090565b6000806107bf610d48565b90506107cc858285610f19565b6107d7858585610fa5565b60019150509392505050565b60006009905090565b600b5481565b6000806107fd610d48565b905061081e81858561080f8589610c38565b61081991906121bd565b610d50565b600191505092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461088357600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156108ce573d6000803e3d6000fd5b5050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610902611535565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610962611535565b61096c60006115b3565b565b6000610978611535565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60006109cc611535565b81600d8190555060019050919050565b6109e4611535565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610a79611535565b60198284610a8791906121bd565b1115610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90612263565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b606060048054610aef9061215d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1b9061215d565b8015610b685780601f10610b3d57610100808354040283529160200191610b68565b820191906000526020600020905b815481529060010190602001808311610b4b57829003601f168201915b5050505050905090565b600080610b7d610d48565b90506000610b8b8286610c38565b905083811015610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc7906122f5565b60405180910390fd5b610bdd8286868403610d50565b60019250505092915050565b600080610bf4610d48565b9050610c01818585610fa5565b600191505092915050565b600d5481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cc7611535565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90612387565b60405180910390fd5b610d3f816115b3565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690612419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e25906124ab565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f0c9190611f85565b60405180910390a3505050565b6000610f258484610c38565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f9f5781811015610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612517565b60405180910390fd5b610f9e8484848403610d50565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b906125a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a9061263b565b60405180910390fd5b8061108d84610912565b10156110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906126cd565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111775750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156111905750601560009054906101000a900460ff16155b1561152457601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146112e95760006011546111f830610912565b61120291906126ed565b9050601354811061121957611218601354611679565b5b601454601154106112e75761122f60145461173a565b6014546011600082825461124391906126ed565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc9061276d565b60405180910390fd5b505b505b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061138c5750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561139957819050611513565b600c548211156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d5906127ff565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361148c57600d5461143f84610912565b8361144a91906121bd565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612891565b60405180910390fd5b5b60006064600b548461149e91906128b1565b6114a8919061293a565b905060006064600a54856114bc91906128b1565b6114c6919061293a565b905080826114d491906121bd565b846114df91906126ed565b925081601160008282546114f391906121bd565b925050819055506115108630838561150b91906121bd565b6119c0565b50505b61151e8484836119c0565b50611530565b61152f8383836119c0565b5b505050565b61153d610d48565b73ffffffffffffffffffffffffffffffffffffffff1661155b610a45565b73ffffffffffffffffffffffffffffffffffffffff16146115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a8906129b7565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601560006101000a81548160ff02191690831515021790555060006002826116a3919061293a565b9050600081836116b391906126ed565b905060004790506116c38361173a565b600081476116d191906126ed565b90506116dd8382611c20565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611710939291906129d7565b60405180910390a1505050506000601560006101000a81548160ff02191690831515021790555050565b6001601560006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561177257611771612a0e565b5b6040519080825280602002602001820160405280156117a05781602001602082028036833780820191505090505b50905030816000815181106117b8576117b7612a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561185f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118839190612a81565b8160018151811061189757611896612a3d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506118fe30600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c4261194f91906121bd565b6040518663ffffffff1660e01b815260040161196f959493929190612ba7565b600060405180830381600087803b15801561198957600080fd5b505af115801561199d573d6000803e3d6000fd5b50505050506000601560006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a26906125a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a959061263b565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b906126cd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c129190611f85565b60405180910390a350505050565b6001601560006101000a81548160ff021916908315150217905550611c6830600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611cb4610a45565b426040518863ffffffff1660e01b8152600401611cd696959493929190612c01565b60606040518083038185885af1158015611cf4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d199190612c77565b5050506000601560006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d75578082015181840152602081019050611d5a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d9d82611d3b565b611da78185611d46565b9350611db7818560208601611d57565b611dc081611d81565b840191505092915050565b60006020820190508181036000830152611de58184611d92565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611e32611e2d611e2884611ded565b611e0d565b611ded565b9050919050565b6000611e4482611e17565b9050919050565b6000611e5682611e39565b9050919050565b611e6681611e4b565b82525050565b6000602082019050611e816000830184611e5d565b92915050565b600080fd5b6000611e9782611ded565b9050919050565b611ea781611e8c565b8114611eb257600080fd5b50565b600081359050611ec481611e9e565b92915050565b6000819050919050565b611edd81611eca565b8114611ee857600080fd5b50565b600081359050611efa81611ed4565b92915050565b60008060408385031215611f1757611f16611e87565b5b6000611f2585828601611eb5565b9250506020611f3685828601611eeb565b9150509250929050565b60008115159050919050565b611f5581611f40565b82525050565b6000602082019050611f706000830184611f4c565b92915050565b611f7f81611eca565b82525050565b6000602082019050611f9a6000830184611f76565b92915050565b600080600060608486031215611fb957611fb8611e87565b5b6000611fc786828701611eb5565b9350506020611fd886828701611eb5565b9250506040611fe986828701611eeb565b9150509250925092565b600060ff82169050919050565b61200981611ff3565b82525050565b60006020820190506120246000830184612000565b92915050565b61203381611e8c565b82525050565b600060208201905061204e600083018461202a565b92915050565b60006020828403121561206a57612069611e87565b5b600061207884828501611eeb565b91505092915050565b60006020828403121561209757612096611e87565b5b60006120a584828501611eb5565b91505092915050565b600080604083850312156120c5576120c4611e87565b5b60006120d385828601611eeb565b92505060206120e485828601611eeb565b9150509250929050565b6000806040838503121561210557612104611e87565b5b600061211385828601611eb5565b925050602061212485828601611eb5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061217557607f821691505b6020821081036121885761218761212e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121c882611eca565b91506121d383611eca565b92508282019050808211156121eb576121ea61218e565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2032350000000000000000000000000000000000000000602082015250565b600061224d602c83611d46565b9150612258826121f1565b604082019050919050565b6000602082019050818103600083015261227c81612240565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122df602583611d46565b91506122ea82612283565b604082019050919050565b6000602082019050818103600083015261230e816122d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612371602683611d46565b915061237c82612315565b604082019050919050565b600060208201905081810360008301526123a081612364565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612403602483611d46565b915061240e826123a7565b604082019050919050565b60006020820190508181036000830152612432816123f6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612495602283611d46565b91506124a082612439565b604082019050919050565b600060208201905081810360008301526124c481612488565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612501601d83611d46565b915061250c826124cb565b602082019050919050565b60006020820190508181036000830152612530816124f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612593602583611d46565b915061259e82612537565b604082019050919050565b600060208201905081810360008301526125c281612586565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612625602383611d46565b9150612630826125c9565b604082019050919050565b6000602082019050818103600083015261265481612618565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126b7602683611d46565b91506126c28261265b565b604082019050919050565b600060208201905081810360008301526126e6816126aa565b9050919050565b60006126f882611eca565b915061270383611eca565b925082820390508181111561271b5761271a61218e565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612757601283611d46565b915061276282612721565b602082019050919050565b600060208201905081810360008301526127868161274a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006127e9603983611d46565b91506127f48261278d565b604082019050919050565b60006020820190508181036000830152612818816127dc565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061287b603683611d46565b91506128868261281f565b604082019050919050565b600060208201905081810360008301526128aa8161286e565b9050919050565b60006128bc82611eca565b91506128c783611eca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612900576128ff61218e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061294582611eca565b915061295083611eca565b9250826129605761295f61290b565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129a1602083611d46565b91506129ac8261296b565b602082019050919050565b600060208201905081810360008301526129d081612994565b9050919050565b60006060820190506129ec6000830186611f76565b6129f96020830185611f76565b612a066040830184611f76565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612a7b81611e9e565b92915050565b600060208284031215612a9757612a96611e87565b5b6000612aa584828501612a6c565b91505092915050565b6000819050919050565b6000612ad3612ace612ac984612aae565b611e0d565b611eca565b9050919050565b612ae381612ab8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612b1e81611e8c565b82525050565b6000612b308383612b15565b60208301905092915050565b6000602082019050919050565b6000612b5482612ae9565b612b5e8185612af4565b9350612b6983612b05565b8060005b83811015612b9a578151612b818882612b24565b9750612b8c83612b3c565b925050600181019050612b6d565b5085935050505092915050565b600060a082019050612bbc6000830188611f76565b612bc96020830187612ada565b8181036040830152612bdb8186612b49565b9050612bea606083018561202a565b612bf76080830184611f76565b9695505050505050565b600060c082019050612c16600083018961202a565b612c236020830188611f76565b612c306040830187612ada565b612c3d6060830186612ada565b612c4a608083018561202a565b612c5760a0830184611f76565b979650505050505050565b600081519050612c7181611ed4565b92915050565b600080600060608486031215612c9057612c8f611e87565b5b6000612c9e86828701612c62565b9350506020612caf86828701612c62565b9250506040612cc086828701612c62565b915050925092509256fea2646970667358221220f5245e6304bb97ff9a161e7f3984caf1308789ecad3f3d29c9b46c968ad0baa864736f6c63430008100033

Deployed Bytecode Sourcemap

22504:7586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12223:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23179:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14497:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13361:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15321:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13204:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22846:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17037:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29883:167;;;;;;;;;;;;;:::i;:::-;;23212:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29433:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12388:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9482:103;;;;;;;;;;;;;:::i;:::-;;28922:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29589:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29761:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22886:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8834:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29071:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12047:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16121:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13941:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22948:58;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23013:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13534:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9740:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22805:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12223:102;12279:13;12312:5;12305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12223:102;:::o;23179:26::-;;;;;;;;;;;;;:::o;14497:244::-;14618:4;14640:13;14656:12;:10;:12::i;:::-;14640:28;;14679:32;14688:5;14695:7;14704:6;14679:8;:32::i;:::-;14729:4;14722:11;;;14497:244;;;;:::o;13361:110::-;13424:7;13451:12;;13444:19;;13361:110;:::o;15321:297::-;15454:4;15471:15;15489:12;:10;:12::i;:::-;15471:30;;15512:38;15528:4;15534:7;15543:6;15512:15;:38::i;:::-;15561:27;15571:4;15577:2;15581:6;15561:9;:27::i;:::-;15606:4;15599:11;;;15321:297;;;;;:::o;13204:92::-;13262:5;13287:1;13280:8;;13204:92;:::o;22846:33::-;;;;:::o;17037:272::-;17154:4;17176:13;17192:12;:10;:12::i;:::-;17176:28;;17215:64;17224:5;17231:7;17268:10;17240:25;17250:5;17257:7;17240:9;:25::i;:::-;:38;;;;:::i;:::-;17215:8;:64::i;:::-;17297:4;17290:11;;;17037:272;;;;:::o;29883:167::-;23842:12;;;;;;;;;;;23828:26;;:10;:26;;;23820:35;;;;;;29939:23:::1;29965:21;29939:47;;30005:10;29997:28;;:45;30026:15;29997:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;29928:122;29883:167::o:0;23212:21::-;;;;;;;;;;;;;:::o;29433:148::-;29508:4;8720:13;:11;:13::i;:::-;29539:12:::1;29525:11;:26;;;;29569:4;29562:11;;29433:148:::0;;;:::o;12388:177::-;12507:7;12539:9;:18;12549:7;12539:18;;;;;;;;;;;;;;;;12532:25;;12388:177;;;:::o;9482:103::-;8720:13;:11;:13::i;:::-;9547:30:::1;9574:1;9547:18;:30::i;:::-;9482:103::o:0;28922:141::-;28992:4;8720:13;:11;:13::i;:::-;29024:9:::1;29009:12;;:24;;;;;;;;;;;;;;;;;;29051:4;29044:11;;28922:141:::0;;;:::o;29589:164::-;29672:4;8720:13;:11;:13::i;:::-;29707:16:::1;29689:15;:34;;;;29741:4;29734:11;;29589:164:::0;;;:::o;29761:114::-;8720:13;:11;:13::i;:::-;29863:4:::1;29832:18;:28;29851:8;29832:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;29761:114:::0;:::o;22886:55::-;;;;:::o;8834:87::-;8880:7;8907:6;;;;;;;;;;;8900:13;;8834:87;:::o;29071:354::-;29190:4;8720:13;:11;:13::i;:::-;29254:2:::1;29234:15;29216:16;:33;;;;:::i;:::-;29215:41;;29207:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;29334:16;29316:15;:34;;;;29378:15;29361:14;:32;;;;29413:4;29406:11;;29071:354:::0;;;;:::o;12047:106::-;12105:13;12138:7;12131:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12047:106;:::o;16121:507::-;16243:4;16265:13;16281:12;:10;:12::i;:::-;16265:28;;16304:24;16331:25;16341:5;16348:7;16331:9;:25::i;:::-;16304:52;;16409:15;16389:16;:35;;16367:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;16525:60;16534:5;16541:7;16569:15;16550:16;:34;16525:8;:60::i;:::-;16616:4;16609:11;;;;16121:507;;;;:::o;13941:236::-;14058:4;14080:13;14096:12;:10;:12::i;:::-;14080:28;;14119;14129:5;14136:2;14140:6;14119:9;:28::i;:::-;14165:4;14158:11;;;13941:236;;;;:::o;22948:58::-;;;;:::o;23013:72::-;;;;;;;;;;;;;:::o;13534:201::-;13668:7;13700:11;:18;13712:5;13700:18;;;;;;;;;;;;;;;:27;13719:7;13700:27;;;;;;;;;;;;;;;;13693:34;;13534:201;;;;:::o;9740:238::-;8720:13;:11;:13::i;:::-;9863:1:::1;9843:22;;:8;:22;;::::0;9821:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9942:28;9961:8;9942:18;:28::i;:::-;9740:238:::0;:::o;22805:34::-;;;;:::o;7627:98::-;7680:7;7707:10;7700:17;;7627:98;:::o;19344:380::-;19497:1;19480:19;;:5;:19;;;19472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19578:1;19559:21;;:7;:21;;;19551:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19662:6;19632:11;:18;19644:5;19632:18;;;;;;;;;;;;;;;:27;19651:7;19632:27;;;;;;;;;;;;;;;:36;;;;19700:7;19684:32;;19693:5;19684:32;;;19709:6;19684:32;;;;;;:::i;:::-;;;;;;;;19344:380;;;:::o;20015:502::-;20150:24;20177:25;20187:5;20194:7;20177:9;:25::i;:::-;20150:52;;20237:17;20217:16;:37;20213:297;;20317:6;20297:16;:26;;20271:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;20432:51;20441:5;20448:7;20476:6;20457:16;:25;20432:8;:51::i;:::-;20213:297;20139:378;20015:502;;;:::o;25435:2117::-;25549:1;25533:18;;:4;:18;;;25525:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25626:1;25612:16;;:2;:16;;;25604:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25706:6;25687:15;25697:4;25687:9;:15::i;:::-;:25;;25679:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25781:6;;;;;;;;;;;25773:14;;:4;:14;;;:30;;;;25797:6;;;;;;;;;;;25791:12;;:2;:12;;;25773:30;25772:53;;;;;25809:16;;;;;;;;;;;25808:17;25772:53;25768:1777;;;25854:6;;;;;;;;;;;25846:14;;:4;:14;;;25842:676;;25881:32;25943:18;;25916:24;25934:4;25916:9;:24::i;:::-;:45;;;;:::i;:::-;25881:80;;26012:30;;25984:24;:58;25980:154;;26067:47;26083:30;;26067:15;:47::i;:::-;25980:154;26180:24;;26157:18;;26156:48;26152:351;;26229:43;26247:24;;26229:17;:43::i;:::-;26317:24;;26295:18;;:46;;;;;;;:::i;:::-;;;;;;;;26364:9;26384:12;;;;;;;;;;;26376:26;;:49;26403:21;26376:49;;;;;;;;;;;;;;;;;;;;;;;26364:61;;26456:4;26448:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;26206:297;26152:351;25862:656;25842:676;26534:22;26575:18;:24;26594:4;26575:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;26603:18;:22;26622:2;26603:22;;;;;;;;;;;;;;;;;;;;;;;;;26575:50;26571:831;;;26663:6;26646:23;;26571:831;;;26742:11;;26732:6;:21;;26724:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;26845:6;;;;;;;;;;;26837:14;;:4;:14;;;26834:171;;26911:15;;26893:13;26903:2;26893:9;:13::i;:::-;26884:6;:22;;;;:::i;:::-;26883:43;;26875:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26834:171;27025:22;27079:3;27061:14;;27052:6;:23;;;;:::i;:::-;27051:31;;;;:::i;:::-;27025:58;;27102:22;27157:3;27138:15;;27129:6;:24;;;;:::i;:::-;27128:32;;;;:::i;:::-;27102:59;;27224:14;27207;:31;;;;:::i;:::-;27197:6;:42;;;;:::i;:::-;27180:59;;27280:14;27258:18;;:36;;;;;;;:::i;:::-;;;;;;;;27315:71;27331:4;27345;27370:14;27353;:31;;;;:::i;:::-;27315:15;:71::i;:::-;26705:697;;26571:831;27416:41;27432:4;27438:2;27442:14;27416:15;:41::i;:::-;25827:1642;25768:1777;;;27500:33;27516:4;27522:2;27526:6;27500:15;:33::i;:::-;25768:1777;25435:2117;;;:::o;8999:132::-;9074:12;:10;:12::i;:::-;9063:23;;:7;:5;:7::i;:::-;:23;;;9055:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8999:132::o;10138:191::-;10212:16;10231:6;;;;;;;;;;;10212:25;;10257:8;10248:6;;:17;;;;;;;;;;;;;;;;;;10312:8;10281:40;;10302:8;10281:40;;;;;;;;;;;;10201:128;10138:191;:::o;27560:474::-;23713:4;23694:16;;:23;;;;;;;;;;;;;;;;;;27646:12:::1;27685:1;27662:20;:24;;;;:::i;:::-;27646:41;;27698:17;27742:4;27719:20;:27;;;;:::i;:::-;27698:49;;27760:22;27785:21;27760:46;;27819:23;27837:4;27819:17;:23::i;:::-;27855:18;27901:14;27877:21;:38;;;;:::i;:::-;27855:61;;27929:36;27943:9;27954:10;27929:13;:36::i;:::-;27983:43;27998:4;28004:10;28016:9;27983:43;;;;;;;;:::i;:::-;;;;;;;;27635:399;;;;23759:5:::0;23740:16;;:24;;;;;;;;;;;;;;;;;;27560:474;:::o;28042:478::-;23713:4;23694:16;;:23;;;;;;;;;;;;;;;;;;28121:21:::1;28159:1;28145:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28121:40;;28190:4;28172;28177:1;28172:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;28216:9;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28206:4;28211:1;28206:7;;;;;;;;:::i;:::-;;;;;;;:26;;;;;;;;;::::0;::::1;28245:56;28262:4;28277:9;;;;;;;;;;;28289:11;28245:8;:56::i;:::-;28314:9;;;;;;;;;;;:60;;;28389:11;28415:1;28431:4;28458;28497:3;28479:15;:21;;;;:::i;:::-;28314:198;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;28110:410;23759:5:::0;23740:16;;:24;;;;;;;;;;;;;;;;;;28042:478;:::o;20525:776::-;20672:1;20656:18;;:4;:18;;;20648:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20749:1;20735:16;;:2;:16;;;20727:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20804:19;20826:9;:15;20836:4;20826:15;;;;;;;;;;;;;;;;20804:37;;20889:6;20874:11;:21;;20852:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;21029:6;21015:11;:20;20997:9;:15;21007:4;20997:15;;;;;;;;;;;;;;;:38;;;;21232:6;21215:9;:13;21225:2;21215:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;21282:2;21267:26;;21276:4;21267:26;;;21286:6;21267:26;;;;;;:::i;:::-;;;;;;;;20637:664;20525:776;;;:::o;28528:386::-;23713:4;23694:16;;:23;;;;;;;;;;;;;;;;;;28645:56:::1;28662:4;28677:9;;;;;;;;;;;28689:11;28645:8;:56::i;:::-;28714:9;;;;;;;;;;;:25;;;28747:9;28780:4;28800:11;28826:1;28842::::0;28858:7:::1;:5;:7::i;:::-;28880:15;28714:192;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;23759:5:::0;23740:16;;:24;;;;;;;;;;;;;;;;;;28528:386;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:126::-;1386:7;1426:42;1419:5;1415:54;1404:65;;1349:126;;;:::o;1481:60::-;1509:3;1530:5;1523:12;;1481:60;;;:::o;1547:142::-;1597:9;1630:53;1648:34;1657:24;1675:5;1657:24;:::i;:::-;1648:34;:::i;:::-;1630:53;:::i;:::-;1617:66;;1547:142;;;:::o;1695:126::-;1745:9;1778:37;1809:5;1778:37;:::i;:::-;1765:50;;1695:126;;;:::o;1827:143::-;1894:9;1927:37;1958:5;1927:37;:::i;:::-;1914:50;;1827:143;;;:::o;1976:165::-;2080:54;2128:5;2080:54;:::i;:::-;2075:3;2068:67;1976:165;;:::o;2147:256::-;2257:4;2295:2;2284:9;2280:18;2272:26;;2308:88;2393:1;2382:9;2378:17;2369:6;2308:88;:::i;:::-;2147:256;;;;:::o;2490:117::-;2599:1;2596;2589:12;2736:96;2773:7;2802:24;2820:5;2802:24;:::i;:::-;2791:35;;2736:96;;;:::o;2838:122::-;2911:24;2929:5;2911:24;:::i;:::-;2904:5;2901:35;2891:63;;2950:1;2947;2940:12;2891:63;2838:122;:::o;2966:139::-;3012:5;3050:6;3037:20;3028:29;;3066:33;3093:5;3066:33;:::i;:::-;2966:139;;;;:::o;3111:77::-;3148:7;3177:5;3166:16;;3111:77;;;:::o;3194:122::-;3267:24;3285:5;3267:24;:::i;:::-;3260:5;3257:35;3247:63;;3306:1;3303;3296:12;3247:63;3194:122;:::o;3322:139::-;3368:5;3406:6;3393:20;3384:29;;3422:33;3449:5;3422:33;:::i;:::-;3322:139;;;;:::o;3467:474::-;3535:6;3543;3592:2;3580:9;3571:7;3567:23;3563:32;3560:119;;;3598:79;;:::i;:::-;3560:119;3718:1;3743:53;3788:7;3779:6;3768:9;3764:22;3743:53;:::i;:::-;3733:63;;3689:117;3845:2;3871:53;3916:7;3907:6;3896:9;3892:22;3871:53;:::i;:::-;3861:63;;3816:118;3467:474;;;;;:::o;3947:90::-;3981:7;4024:5;4017:13;4010:21;3999:32;;3947:90;;;:::o;4043:109::-;4124:21;4139:5;4124:21;:::i;:::-;4119:3;4112:34;4043:109;;:::o;4158:210::-;4245:4;4283:2;4272:9;4268:18;4260:26;;4296:65;4358:1;4347:9;4343:17;4334:6;4296:65;:::i;:::-;4158:210;;;;:::o;4374:118::-;4461:24;4479:5;4461:24;:::i;:::-;4456:3;4449:37;4374:118;;:::o;4498:222::-;4591:4;4629:2;4618:9;4614:18;4606:26;;4642:71;4710:1;4699:9;4695:17;4686:6;4642:71;:::i;:::-;4498:222;;;;:::o;4726:619::-;4803:6;4811;4819;4868:2;4856:9;4847:7;4843:23;4839:32;4836:119;;;4874:79;;:::i;:::-;4836:119;4994:1;5019:53;5064:7;5055:6;5044:9;5040:22;5019:53;:::i;:::-;5009:63;;4965:117;5121:2;5147:53;5192:7;5183:6;5172:9;5168:22;5147:53;:::i;:::-;5137:63;;5092:118;5249:2;5275:53;5320:7;5311:6;5300:9;5296:22;5275:53;:::i;:::-;5265:63;;5220:118;4726:619;;;;;:::o;5351:86::-;5386:7;5426:4;5419:5;5415:16;5404:27;;5351:86;;;:::o;5443:112::-;5526:22;5542:5;5526:22;:::i;:::-;5521:3;5514:35;5443:112;;:::o;5561:214::-;5650:4;5688:2;5677:9;5673:18;5665:26;;5701:67;5765:1;5754:9;5750:17;5741:6;5701:67;:::i;:::-;5561:214;;;;:::o;5781:118::-;5868:24;5886:5;5868:24;:::i;:::-;5863:3;5856:37;5781:118;;:::o;5905:222::-;5998:4;6036:2;6025:9;6021:18;6013:26;;6049:71;6117:1;6106:9;6102:17;6093:6;6049:71;:::i;:::-;5905:222;;;;:::o;6133:329::-;6192:6;6241:2;6229:9;6220:7;6216:23;6212:32;6209:119;;;6247:79;;:::i;:::-;6209:119;6367:1;6392:53;6437:7;6428:6;6417:9;6413:22;6392:53;:::i;:::-;6382:63;;6338:117;6133:329;;;;:::o;6468:::-;6527:6;6576:2;6564:9;6555:7;6551:23;6547:32;6544:119;;;6582:79;;:::i;:::-;6544:119;6702:1;6727:53;6772:7;6763:6;6752:9;6748:22;6727:53;:::i;:::-;6717:63;;6673:117;6468:329;;;;:::o;6803:474::-;6871:6;6879;6928:2;6916:9;6907:7;6903:23;6899:32;6896:119;;;6934:79;;:::i;:::-;6896:119;7054:1;7079:53;7124:7;7115:6;7104:9;7100:22;7079:53;:::i;:::-;7069:63;;7025:117;7181:2;7207:53;7252:7;7243:6;7232:9;7228:22;7207:53;:::i;:::-;7197:63;;7152:118;6803:474;;;;;:::o;7283:::-;7351:6;7359;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:53;7604:7;7595:6;7584:9;7580:22;7559:53;:::i;:::-;7549:63;;7505:117;7661:2;7687:53;7732:7;7723:6;7712:9;7708:22;7687:53;:::i;:::-;7677:63;;7632:118;7283:474;;;;;:::o;7763:180::-;7811:77;7808:1;7801:88;7908:4;7905:1;7898:15;7932:4;7929:1;7922:15;7949:320;7993:6;8030:1;8024:4;8020:12;8010:22;;8077:1;8071:4;8067:12;8098:18;8088:81;;8154:4;8146:6;8142:17;8132:27;;8088:81;8216:2;8208:6;8205:14;8185:18;8182:38;8179:84;;8235:18;;:::i;:::-;8179:84;8000:269;7949:320;;;:::o;8275:180::-;8323:77;8320:1;8313:88;8420:4;8417:1;8410:15;8444:4;8441:1;8434:15;8461:191;8501:3;8520:20;8538:1;8520:20;:::i;:::-;8515:25;;8554:20;8572:1;8554:20;:::i;:::-;8549:25;;8597:1;8594;8590:9;8583:16;;8618:3;8615:1;8612:10;8609:36;;;8625:18;;:::i;:::-;8609:36;8461:191;;;;:::o;8658:231::-;8798:34;8794:1;8786:6;8782:14;8775:58;8867:14;8862:2;8854:6;8850:15;8843:39;8658:231;:::o;8895:366::-;9037:3;9058:67;9122:2;9117:3;9058:67;:::i;:::-;9051:74;;9134:93;9223:3;9134:93;:::i;:::-;9252:2;9247:3;9243:12;9236:19;;8895:366;;;:::o;9267:419::-;9433:4;9471:2;9460:9;9456:18;9448:26;;9520:9;9514:4;9510:20;9506:1;9495:9;9491:17;9484:47;9548:131;9674:4;9548:131;:::i;:::-;9540:139;;9267:419;;;:::o;9692:224::-;9832:34;9828:1;9820:6;9816:14;9809:58;9901:7;9896:2;9888:6;9884:15;9877:32;9692:224;:::o;9922:366::-;10064:3;10085:67;10149:2;10144:3;10085:67;:::i;:::-;10078:74;;10161:93;10250:3;10161:93;:::i;:::-;10279:2;10274:3;10270:12;10263:19;;9922:366;;;:::o;10294:419::-;10460:4;10498:2;10487:9;10483:18;10475:26;;10547:9;10541:4;10537:20;10533:1;10522:9;10518:17;10511:47;10575:131;10701:4;10575:131;:::i;:::-;10567:139;;10294:419;;;:::o;10719:225::-;10859:34;10855:1;10847:6;10843:14;10836:58;10928:8;10923:2;10915:6;10911:15;10904:33;10719:225;:::o;10950:366::-;11092:3;11113:67;11177:2;11172:3;11113:67;:::i;:::-;11106:74;;11189:93;11278:3;11189:93;:::i;:::-;11307:2;11302:3;11298:12;11291:19;;10950:366;;;:::o;11322:419::-;11488:4;11526:2;11515:9;11511:18;11503:26;;11575:9;11569:4;11565:20;11561:1;11550:9;11546:17;11539:47;11603:131;11729:4;11603:131;:::i;:::-;11595:139;;11322:419;;;:::o;11747:223::-;11887:34;11883:1;11875:6;11871:14;11864:58;11956:6;11951:2;11943:6;11939:15;11932:31;11747:223;:::o;11976:366::-;12118:3;12139:67;12203:2;12198:3;12139:67;:::i;:::-;12132:74;;12215:93;12304:3;12215:93;:::i;:::-;12333:2;12328:3;12324:12;12317:19;;11976:366;;;:::o;12348:419::-;12514:4;12552:2;12541:9;12537:18;12529:26;;12601:9;12595:4;12591:20;12587:1;12576:9;12572:17;12565:47;12629:131;12755:4;12629:131;:::i;:::-;12621:139;;12348:419;;;:::o;12773:221::-;12913:34;12909:1;12901:6;12897:14;12890:58;12982:4;12977:2;12969:6;12965:15;12958:29;12773:221;:::o;13000:366::-;13142:3;13163:67;13227:2;13222:3;13163:67;:::i;:::-;13156:74;;13239:93;13328:3;13239:93;:::i;:::-;13357:2;13352:3;13348:12;13341:19;;13000:366;;;:::o;13372:419::-;13538:4;13576:2;13565:9;13561:18;13553:26;;13625:9;13619:4;13615:20;13611:1;13600:9;13596:17;13589:47;13653:131;13779:4;13653:131;:::i;:::-;13645:139;;13372:419;;;:::o;13797:179::-;13937:31;13933:1;13925:6;13921:14;13914:55;13797:179;:::o;13982:366::-;14124:3;14145:67;14209:2;14204:3;14145:67;:::i;:::-;14138:74;;14221:93;14310:3;14221:93;:::i;:::-;14339:2;14334:3;14330:12;14323:19;;13982:366;;;:::o;14354:419::-;14520:4;14558:2;14547:9;14543:18;14535:26;;14607:9;14601:4;14597:20;14593:1;14582:9;14578:17;14571:47;14635:131;14761:4;14635:131;:::i;:::-;14627:139;;14354:419;;;:::o;14779:224::-;14919:34;14915:1;14907:6;14903:14;14896:58;14988:7;14983:2;14975:6;14971:15;14964:32;14779:224;:::o;15009:366::-;15151:3;15172:67;15236:2;15231:3;15172:67;:::i;:::-;15165:74;;15248:93;15337:3;15248:93;:::i;:::-;15366:2;15361:3;15357:12;15350:19;;15009:366;;;:::o;15381:419::-;15547:4;15585:2;15574:9;15570:18;15562:26;;15634:9;15628:4;15624:20;15620:1;15609:9;15605:17;15598:47;15662:131;15788:4;15662:131;:::i;:::-;15654:139;;15381:419;;;:::o;15806:222::-;15946:34;15942:1;15934:6;15930:14;15923:58;16015:5;16010:2;16002:6;15998:15;15991:30;15806:222;:::o;16034:366::-;16176:3;16197:67;16261:2;16256:3;16197:67;:::i;:::-;16190:74;;16273:93;16362:3;16273:93;:::i;:::-;16391:2;16386:3;16382:12;16375:19;;16034:366;;;:::o;16406:419::-;16572:4;16610:2;16599:9;16595:18;16587:26;;16659:9;16653:4;16649:20;16645:1;16634:9;16630:17;16623:47;16687:131;16813:4;16687:131;:::i;:::-;16679:139;;16406:419;;;:::o;16831:225::-;16971:34;16967:1;16959:6;16955:14;16948:58;17040:8;17035:2;17027:6;17023:15;17016:33;16831:225;:::o;17062:366::-;17204:3;17225:67;17289:2;17284:3;17225:67;:::i;:::-;17218:74;;17301:93;17390:3;17301:93;:::i;:::-;17419:2;17414:3;17410:12;17403:19;;17062:366;;;:::o;17434:419::-;17600:4;17638:2;17627:9;17623:18;17615:26;;17687:9;17681:4;17677:20;17673:1;17662:9;17658:17;17651:47;17715:131;17841:4;17715:131;:::i;:::-;17707:139;;17434:419;;;:::o;17859:194::-;17899:4;17919:20;17937:1;17919:20;:::i;:::-;17914:25;;17953:20;17971:1;17953:20;:::i;:::-;17948:25;;17997:1;17994;17990:9;17982:17;;18021:1;18015:4;18012:11;18009:37;;;18026:18;;:::i;:::-;18009:37;17859:194;;;;:::o;18059:168::-;18199:20;18195:1;18187:6;18183:14;18176:44;18059:168;:::o;18233:366::-;18375:3;18396:67;18460:2;18455:3;18396:67;:::i;:::-;18389:74;;18472:93;18561:3;18472:93;:::i;:::-;18590:2;18585:3;18581:12;18574:19;;18233:366;;;:::o;18605:419::-;18771:4;18809:2;18798:9;18794:18;18786:26;;18858:9;18852:4;18848:20;18844:1;18833:9;18829:17;18822:47;18886:131;19012:4;18886:131;:::i;:::-;18878:139;;18605:419;;;:::o;19030:244::-;19170:34;19166:1;19158:6;19154:14;19147:58;19239:27;19234:2;19226:6;19222:15;19215:52;19030:244;:::o;19280:366::-;19422:3;19443:67;19507:2;19502:3;19443:67;:::i;:::-;19436:74;;19519:93;19608:3;19519:93;:::i;:::-;19637:2;19632:3;19628:12;19621:19;;19280:366;;;:::o;19652:419::-;19818:4;19856:2;19845:9;19841:18;19833:26;;19905:9;19899:4;19895:20;19891:1;19880:9;19876:17;19869:47;19933:131;20059:4;19933:131;:::i;:::-;19925:139;;19652:419;;;:::o;20077:241::-;20217:34;20213:1;20205:6;20201:14;20194:58;20286:24;20281:2;20273:6;20269:15;20262:49;20077:241;:::o;20324:366::-;20466:3;20487:67;20551:2;20546:3;20487:67;:::i;:::-;20480:74;;20563:93;20652:3;20563:93;:::i;:::-;20681:2;20676:3;20672:12;20665:19;;20324:366;;;:::o;20696:419::-;20862:4;20900:2;20889:9;20885:18;20877:26;;20949:9;20943:4;20939:20;20935:1;20924:9;20920:17;20913:47;20977:131;21103:4;20977:131;:::i;:::-;20969:139;;20696:419;;;:::o;21121:348::-;21161:7;21184:20;21202:1;21184:20;:::i;:::-;21179:25;;21218:20;21236:1;21218:20;:::i;:::-;21213:25;;21406:1;21338:66;21334:74;21331:1;21328:81;21323:1;21316:9;21309:17;21305:105;21302:131;;;21413:18;;:::i;:::-;21302:131;21461:1;21458;21454:9;21443:20;;21121:348;;;;:::o;21475:180::-;21523:77;21520:1;21513:88;21620:4;21617:1;21610:15;21644:4;21641:1;21634:15;21661:185;21701:1;21718:20;21736:1;21718:20;:::i;:::-;21713:25;;21752:20;21770:1;21752:20;:::i;:::-;21747:25;;21791:1;21781:35;;21796:18;;:::i;:::-;21781:35;21838:1;21835;21831:9;21826:14;;21661:185;;;;:::o;21852:182::-;21992:34;21988:1;21980:6;21976:14;21969:58;21852:182;:::o;22040:366::-;22182:3;22203:67;22267:2;22262:3;22203:67;:::i;:::-;22196:74;;22279:93;22368:3;22279:93;:::i;:::-;22397:2;22392:3;22388:12;22381:19;;22040:366;;;:::o;22412:419::-;22578:4;22616:2;22605:9;22601:18;22593:26;;22665:9;22659:4;22655:20;22651:1;22640:9;22636:17;22629:47;22693:131;22819:4;22693:131;:::i;:::-;22685:139;;22412:419;;;:::o;22837:442::-;22986:4;23024:2;23013:9;23009:18;23001:26;;23037:71;23105:1;23094:9;23090:17;23081:6;23037:71;:::i;:::-;23118:72;23186:2;23175:9;23171:18;23162:6;23118:72;:::i;:::-;23200;23268:2;23257:9;23253:18;23244:6;23200:72;:::i;:::-;22837:442;;;;;;:::o;23285:180::-;23333:77;23330:1;23323:88;23430:4;23427:1;23420:15;23454:4;23451:1;23444:15;23471:180;23519:77;23516:1;23509:88;23616:4;23613:1;23606:15;23640:4;23637:1;23630:15;23657:143;23714:5;23745:6;23739:13;23730:22;;23761:33;23788:5;23761:33;:::i;:::-;23657:143;;;;:::o;23806:351::-;23876:6;23925:2;23913:9;23904:7;23900:23;23896:32;23893:119;;;23931:79;;:::i;:::-;23893:119;24051:1;24076:64;24132:7;24123:6;24112:9;24108:22;24076:64;:::i;:::-;24066:74;;24022:128;23806:351;;;;:::o;24163:85::-;24208:7;24237:5;24226:16;;24163:85;;;:::o;24254:158::-;24312:9;24345:61;24363:42;24372:32;24398:5;24372:32;:::i;:::-;24363:42;:::i;:::-;24345:61;:::i;:::-;24332:74;;24254:158;;;:::o;24418:147::-;24513:45;24552:5;24513:45;:::i;:::-;24508:3;24501:58;24418:147;;:::o;24571:114::-;24638:6;24672:5;24666:12;24656:22;;24571:114;;;:::o;24691:184::-;24790:11;24824:6;24819:3;24812:19;24864:4;24859:3;24855:14;24840:29;;24691:184;;;;:::o;24881:132::-;24948:4;24971:3;24963:11;;25001:4;24996:3;24992:14;24984:22;;24881:132;;;:::o;25019:108::-;25096:24;25114:5;25096:24;:::i;:::-;25091:3;25084:37;25019:108;;:::o;25133:179::-;25202:10;25223:46;25265:3;25257:6;25223:46;:::i;:::-;25301:4;25296:3;25292:14;25278:28;;25133:179;;;;:::o;25318:113::-;25388:4;25420;25415:3;25411:14;25403:22;;25318:113;;;:::o;25467:732::-;25586:3;25615:54;25663:5;25615:54;:::i;:::-;25685:86;25764:6;25759:3;25685:86;:::i;:::-;25678:93;;25795:56;25845:5;25795:56;:::i;:::-;25874:7;25905:1;25890:284;25915:6;25912:1;25909:13;25890:284;;;25991:6;25985:13;26018:63;26077:3;26062:13;26018:63;:::i;:::-;26011:70;;26104:60;26157:6;26104:60;:::i;:::-;26094:70;;25950:224;25937:1;25934;25930:9;25925:14;;25890:284;;;25894:14;26190:3;26183:10;;25591:608;;;25467:732;;;;:::o;26205:831::-;26468:4;26506:3;26495:9;26491:19;26483:27;;26520:71;26588:1;26577:9;26573:17;26564:6;26520:71;:::i;:::-;26601:80;26677:2;26666:9;26662:18;26653:6;26601:80;:::i;:::-;26728:9;26722:4;26718:20;26713:2;26702:9;26698:18;26691:48;26756:108;26859:4;26850:6;26756:108;:::i;:::-;26748:116;;26874:72;26942:2;26931:9;26927:18;26918:6;26874:72;:::i;:::-;26956:73;27024:3;27013:9;27009:19;27000:6;26956:73;:::i;:::-;26205:831;;;;;;;;:::o;27042:807::-;27291:4;27329:3;27318:9;27314:19;27306:27;;27343:71;27411:1;27400:9;27396:17;27387:6;27343:71;:::i;:::-;27424:72;27492:2;27481:9;27477:18;27468:6;27424:72;:::i;:::-;27506:80;27582:2;27571:9;27567:18;27558:6;27506:80;:::i;:::-;27596;27672:2;27661:9;27657:18;27648:6;27596:80;:::i;:::-;27686:73;27754:3;27743:9;27739:19;27730:6;27686:73;:::i;:::-;27769;27837:3;27826:9;27822:19;27813:6;27769:73;:::i;:::-;27042:807;;;;;;;;;:::o;27855:143::-;27912:5;27943:6;27937:13;27928:22;;27959:33;27986:5;27959:33;:::i;:::-;27855:143;;;;:::o;28004:663::-;28092:6;28100;28108;28157:2;28145:9;28136:7;28132:23;28128:32;28125:119;;;28163:79;;:::i;:::-;28125:119;28283:1;28308:64;28364:7;28355:6;28344:9;28340:22;28308:64;:::i;:::-;28298:74;;28254:128;28421:2;28447:64;28503:7;28494:6;28483:9;28479:22;28447:64;:::i;:::-;28437:74;;28392:129;28560:2;28586:64;28642:7;28633:6;28622:9;28618:22;28586:64;:::i;:::-;28576:74;;28531:129;28004:663;;;;;:::o

Swarm Source

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