ETH Price: $3,256.77 (+2.24%)
Gas: 1 Gwei

Token

StellaryAI (stelAI)
 

Overview

Max Total Supply

1,000,000,000 stelAI

Holders

400 ( -3.196%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
241,808.804064594 stelAI

Value
$0.00
0x44a29dad364281885a6b75fcee4662c8e9959bee
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:
StellaryAI

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 2024-03-10
*/

/**
 *         ## ##   #### ##  ### ###  ####     ####       ##     ### ##   ##  ##     ##       ####   
 *        ##   ##  # ## ##   ##  ##   ##       ##         ##     ##  ##  ##  ##      ##       ##    
 *        ####       ##      ##       ##       ##       ## ##    ##  ##  ##  ##    ## ##      ##    
 *         #####     ##      ## ##    ##       ##       ##  ##   ## ##    ## ##    ##  ##     ##    
 *            ###    ##      ##       ##       ##       ## ###   ## ##     ##      ## ###     ##    
 *        ##   ##    ##      ##  ##   ##  ##   ##  ##   ##  ##   ##  ##    ##      ##  ##     ##    
 *         ## ##    ####    ### ###  ### ###  ### ###  ###  ##  #### ##    ##     ###  ##    ####                   
 * 
 * StellaryAI : The Aggregator of AI Creativity | Every Thought, Every Sound, Every Vision - Endlessly Created
 * 
 * Twitter: twitter.com/StellaryAI
 * Homepage: https://stellaryai.com
 * APP: https://app.stellaryai.com
 * 
 * Total Supply: 1 Billion Tokens
 * 10% Team Vesting
 * 20% MC Program/Marketing
 * 70% Liquidity Pool
 *   
 * 4% Buy Tax | 4% Sell Tax
 *
 * Set slippage to 4-5% : 1% to LP, 3% tax for Marketing & Development Costs.
 * 
 * MAX WALLET - 10 Million
 * Single MAX Transaction - 10 Million


*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

/**
 * @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 StellaryAI is ERC20, Ownable {
    string private _name = "StellaryAI";
    string private _symbol = "stelAI";
    uint8 private _decimals = 9;
    uint256 private _supply = 1000000000;
    uint256 public taxForLiquidity = 20; //sniper protection, to be lowered to 1% after launch
    uint256 public taxForMarketing = 20; //sniper protection, to be lowered to 3% after launch
    uint256 public maxTxAmount = 10000001 * 10**_decimals;
    uint256 public maxWalletAmount = 10000001 * 10**_decimals;
    address public marketingWallet = 0x008597D4Af900e4BD5dEd7fFe82d3A24b43E3E87;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    uint256 public _marketingReserves = 0;
    mapping(address => bool) public _isExcludedFromFee;
    uint256 public numTokensSellToAddToLiquidity = 200000 * 10**_decimals;
    uint256 public numTokensSellToAddToETH = 100000 * 10**_decimals;

    function postLaunch() external onlyOwner {
        taxForLiquidity = 1;
        taxForMarketing = 3;
        maxTxAmount = 10000001 * 10**_decimals;
        maxWalletAmount = 10000001 * 10**_decimals;
    }

    event ExcludedFromFeeUpdated(address _address, bool _status);
    event PairUpdated(address _address);


    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;

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

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

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //eth mainnet
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = true;
    }

    function updatePair(address _pair) external onlyOwner {
        require(_pair != DEAD, "LP Pair cannot be the Dead wallet, or 0!");
        require(_pair != address(0), "LP Pair cannot be the Dead wallet, or 0!");
        uniswapV2Pair = _pair;
        emit PairUpdated(_pair);
    }

    /**
     * @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 == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= numTokensSellToAddToETH) {
                    _swapTokensForEth(numTokensSellToAddToETH);
                    _marketingReserves -= numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).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 == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 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 excludeFromFee(address _address, bool _status) external onlyOwner {
        _isExcludedFromFee[_address] = _status;
        emit ExcludedFromFeeUpdated(_address, _status);
    }

    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] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

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

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

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        require(newWallet != DEAD, "LP Pair cannot be the Dead wallet, or 0!");
        require(newWallet != address(0), "LP Pair cannot be the Dead wallet, or 0!");
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 10, "ERC20: total tax must not be greater than 10%");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function changeSwapThresholds(uint256 _numTokensSellToAddToLiquidity, uint256 _numTokensSellToAddToETH)
        public
        onlyOwner
        returns (bool)
    {
        require(_numTokensSellToAddToLiquidity < _supply / 98, "Cannot liquidate more than 2% of the supply at once!");
        require(_numTokensSellToAddToETH < _supply / 98, "Cannot liquidate more than 2% of the supply at once!");
        numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity * 10**_decimals;
        numTokensSellToAddToETH = _numTokensSellToAddToETH * 10**_decimals;

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

    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":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"ExcludedFromFeeUpdated","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":"address","name":"_address","type":"address"}],"name":"PairUpdated","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":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"_numTokensSellToAddToLiquidity","type":"uint256"},{"internalType":"uint256","name":"_numTokensSellToAddToETH","type":"uint256"}],"name":"changeSwapThresholds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFee","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":"marketingWallet","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"postLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526040518060400160405280600a81526020017f5374656c6c617279414900000000000000000000000000000000000000000000815250600690816200004a919062000b8a565b506040518060400160405280600681526020017f7374656c414900000000000000000000000000000000000000000000000000008152506007908162000091919062000b8a565b506009600860006101000a81548160ff021916908360ff160217905550633b9aca006009556014600a556014600b55600860009054906101000a900460ff16600a620000de919062000e01565b62989681620000ee919062000e52565b600c55600860009054906101000a900460ff16600a6200010f919062000e01565b629896816200011f919062000e52565b600d55728597d4af900e4bd5ded7ffe82d3a24b43e3e87600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601055600860009054906101000a900460ff16600a620001dc919062000e01565b62030d40620001ec919062000e52565b601255600860009054906101000a900460ff16600a6200020d919062000e01565b620186a06200021d919062000e52565b6013553480156200022d57600080fd5b50600680546200023d9062000979565b80601f01602080910402602001604051908101604052809291908181526020018280546200026b9062000979565b8015620002bc5780601f106200029057610100808354040283529160200191620002bc565b820191906000526020600020905b8154815290600101906020018083116200029e57829003601f168201915b505050505060078054620002d09062000979565b80601f0160208091040260200160405190810160405280929190818152602001828054620002fe9062000979565b80156200034f5780601f1062000323576101008083540402835291602001916200034f565b820191906000526020600020905b8154815290600101906020018083116200033157829003601f168201915b5050505050816003908162000365919062000b8a565b50806004908162000377919062000b8a565b5050506200039a6200038e620006fd60201b60201c565b6200070560201b60201c565b620003d833600860009054906101000a900460ff16600a620003bd919062000e01565b600954620003cc919062000e52565b620007cb60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200043d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000463919062000f1d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004f1919062000f1d565b6040518363ffffffff1660e01b81526004016200051092919062000f60565b6020604051808303816000875af115801562000530573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000556919062000f1d565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016011600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001079565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200083d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008349062000fee565b60405180910390fd5b806002600082825462000851919062001010565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200090491906200105c565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200099257607f821691505b602082108103620009a857620009a76200094a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009d3565b62000a1e8683620009d3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a6b62000a6562000a5f8462000a36565b62000a40565b62000a36565b9050919050565b6000819050919050565b62000a878362000a4a565b62000a9f62000a968262000a72565b848454620009e0565b825550505050565b600090565b62000ab662000aa7565b62000ac381848462000a7c565b505050565b5b8181101562000aeb5762000adf60008262000aac565b60018101905062000ac9565b5050565b601f82111562000b3a5762000b0481620009ae565b62000b0f84620009c3565b8101602085101562000b1f578190505b62000b3762000b2e85620009c3565b83018262000ac8565b50505b505050565b600082821c905092915050565b600062000b5f6000198460080262000b3f565b1980831691505092915050565b600062000b7a838362000b4c565b9150826002028217905092915050565b62000b958262000910565b67ffffffffffffffff81111562000bb15762000bb06200091b565b5b62000bbd825462000979565b62000bca82828562000aef565b600060209050601f83116001811462000c02576000841562000bed578287015190505b62000bf9858262000b6c565b86555062000c69565b601f19841662000c1286620009ae565b60005b8281101562000c3c5784890151825560018201915060208501945060208101905062000c15565b8683101562000c5c578489015162000c58601f89168262000b4c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cff5780860481111562000cd75762000cd662000c71565b5b600185161562000ce75780820291505b808102905062000cf78562000ca0565b945062000cb7565b94509492505050565b60008262000d1a576001905062000ded565b8162000d2a576000905062000ded565b816001811462000d43576002811462000d4e5762000d84565b600191505062000ded565b60ff84111562000d635762000d6262000c71565b5b8360020a91508482111562000d7d5762000d7c62000c71565b5b5062000ded565b5060208310610133831016604e8410600b841016171562000dbe5782820a90508381111562000db85762000db762000c71565b5b62000ded565b62000dcd848484600162000cad565b9250905081840481111562000de75762000de662000c71565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e0e8262000a36565b915062000e1b8362000df4565b925062000e4a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d08565b905092915050565b600062000e5f8262000a36565b915062000e6c8362000a36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ea85762000ea762000c71565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ee58262000eb8565b9050919050565b62000ef78162000ed8565b811462000f0357600080fd5b50565b60008151905062000f178162000eec565b92915050565b60006020828403121562000f365762000f3562000eb3565b5b600062000f468482850162000f06565b91505092915050565b62000f5a8162000ed8565b82525050565b600060408201905062000f77600083018562000f4f565b62000f86602083018462000f4f565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fd6601f8362000f8d565b915062000fe38262000f9e565b602082019050919050565b60006020820190508181036000830152620010098162000fc7565b9050919050565b60006200101d8262000a36565b91506200102a8362000a36565b925082820190508082111562001045576200104462000c71565b5b92915050565b620010568162000a36565b82525050565b60006020820190506200107360008301846200104b565b92915050565b6080516135ce620010b86000396000818161095801528181611d8a01528181611e6b01528181611e92015281816121c201526121e901526135ce6000f3fe6080604052600436106101fd5760003560e01c806381bfdcca1161010d578063ad16a0cf116100a0578063d12a76881161006f578063d12a768814610796578063dd62ed3e146107c1578063df8408fe146107fe578063f2fde38b14610827578063f345bd851461085057610204565b8063ad16a0cf146106c6578063af8af690146106f1578063bb85c6d11461072e578063c0fdea571461076b57610204565b8063a3996f7b116100dc578063a3996f7b1461060a578063a457c2d714610621578063a9059cbb1461065e578063aa4bde281461069b57610204565b806381bfdcca1461054c5780638c0b5e22146105895780638da5cb5b146105b457806395d89b41146105df57610204565b8063313ce56711610190578063677daa571161015f578063677daa571461045357806370a0823114610490578063715018a6146104cd57806375f0a874146104e4578063768dc7101461050f57610204565b8063313ce5671461039557806339509351146103c057806349bd5a5e146103fd578063527ffabd1461042857610204565b806318160ddd116101cc57806318160ddd146102c75780631b56bbf9146102f257806323b872dd1461031b57806330b63d801461035857610204565b806303fd2a451461020957806306fdde0314610234578063095ea7b31461025f5780631694505e1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e61087b565b60405161022b9190612313565b60405180910390f35b34801561024057600080fd5b506102496108a1565b60405161025691906123be565b60405180910390f35b34801561026b57600080fd5b5061028660048036038101906102819190612447565b610933565b60405161029391906124a2565b60405180910390f35b3480156102a857600080fd5b506102b1610956565b6040516102be919061251c565b60405180910390f35b3480156102d357600080fd5b506102dc61097a565b6040516102e99190612546565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612561565b610984565b005b34801561032757600080fd5b50610342600480360381019061033d919061258e565b610b06565b60405161034f91906124a2565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906125e1565b610b35565b60405161038c91906124a2565b60405180910390f35b3480156103a157600080fd5b506103aa610c43565b6040516103b7919061263d565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612447565b610c4c565b6040516103f491906124a2565b60405180910390f35b34801561040957600080fd5b50610412610c83565b60405161041f9190612313565b60405180910390f35b34801561043457600080fd5b5061043d610ca9565b60405161044a9190612546565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612658565b610caf565b60405161048791906124a2565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612561565b610cc9565b6040516104c49190612546565b60405180910390f35b3480156104d957600080fd5b506104e2610d11565b005b3480156104f057600080fd5b506104f9610d25565b6040516105069190612313565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190612561565b610d4b565b60405161054391906124a2565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612658565b610d6b565b60405161058091906124a2565b60405180910390f35b34801561059557600080fd5b5061059e610d85565b6040516105ab9190612546565b60405180910390f35b3480156105c057600080fd5b506105c9610d8b565b6040516105d69190612313565b60405180910390f35b3480156105eb57600080fd5b506105f4610db5565b60405161060191906123be565b60405180910390f35b34801561061657600080fd5b5061061f610e47565b005b34801561062d57600080fd5b5061064860048036038101906106439190612447565b610ec1565b60405161065591906124a2565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612447565b610f38565b60405161069291906124a2565b60405180910390f35b3480156106a757600080fd5b506106b0610f5b565b6040516106bd9190612546565b60405180910390f35b3480156106d257600080fd5b506106db610f61565b6040516106e89190612546565b60405180910390f35b3480156106fd57600080fd5b50610718600480360381019061071391906125e1565b610f67565b60405161072591906124a2565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190612561565b610fd8565b60405161076291906124a2565b60405180910390f35b34801561077757600080fd5b5061078061112b565b60405161078d9190612546565b60405180910390f35b3480156107a257600080fd5b506107ab611131565b6040516107b89190612546565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190612685565b611137565b6040516107f59190612546565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906126f1565b6111be565b005b34801561083357600080fd5b5061084e60048036038101906108499190612561565b61125a565b005b34801561085c57600080fd5b506108656112dd565b6040516108729190612546565b60405180910390f35b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546108b090612760565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612760565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b60008061093e6112e3565b905061094b8185856112eb565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b61098c6114b4565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390612803565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612803565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1d288f7aba265e8b154b112bbb631ceca5df5fe93a750b2fe042fd1cc826647f81604051610afb9190612313565b60405180910390a150565b600080610b116112e3565b9050610b1e858285611532565b610b298585856115be565b60019150509392505050565b6000610b3f6114b4565b6062600954610b4e9190612881565b8310610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690612924565b60405180910390fd5b6062600954610b9e9190612881565b8210610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612924565b60405180910390fd5b600860009054906101000a900460ff16600a610bfb9190612a77565b83610c069190612ac2565b601281905550600860009054906101000a900460ff16600a610c289190612a77565b82610c339190612ac2565b6013819055506001905092915050565b60006009905090565b600080610c576112e3565b9050610c78818585610c698589611137565b610c739190612b1c565b6112eb565b600191505092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000610cb96114b4565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d196114b4565b610d236000611b4c565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60116020528060005260406000206000915054906101000a900460ff1681565b6000610d756114b4565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dc490612760565b80601f0160208091040260200160405190810160405280929190818152602001828054610df090612760565b8015610e3d5780601f10610e1257610100808354040283529160200191610e3d565b820191906000526020600020905b815481529060010190602001808311610e2057829003601f168201915b5050505050905090565b610e4f6114b4565b6001600a819055506003600b81905550600860009054906101000a900460ff16600a610e7b9190612a77565b62989681610e899190612ac2565b600c81905550600860009054906101000a900460ff16600a610eab9190612a77565b62989681610eb99190612ac2565b600d81905550565b600080610ecc6112e3565b90506000610eda8286611137565b905083811015610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612bc2565b60405180910390fd5b610f2c82868684036112eb565b60019250505092915050565b600080610f436112e3565b9050610f508185856115be565b600191505092915050565b600d5481565b60135481565b6000610f716114b4565b600a8284610f7f9190612b1c565b1115610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790612c54565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610fe26114b4565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990612803565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890612803565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111c66114b4565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f318c131114339c004fff0a22fcdbbc0566bb2a7cd3aa1660e636ec5a66784ff2828260405161124e929190612c74565b60405180910390a15050565b6112626114b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c890612d0f565b60405180910390fd5b6112da81611b4c565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190612da1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090612e33565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114a79190612546565b60405180910390a3505050565b6114bc6112e3565b73ffffffffffffffffffffffffffffffffffffffff166114da610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790612e9f565b60405180910390fd5b565b600061153e8484611137565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115b857818110156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190612f0b565b60405180910390fd5b6115b784848484036112eb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490612f9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361169c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116939061302f565b60405180910390fd5b806116a684610cc9565b10156116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de906130c1565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117905750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156117a7575060148054906101000a900460ff16155b15611b3b57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461190057600060105461180f30610cc9565b61181991906130e1565b905060125481106118305761182f601254611c12565b5b601354601054106118fe57611846601354611cd1565b6013546010600082825461185a91906130e1565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390613161565b60405180910390fd5b505b505b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119a35750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119b057819050611b2a565b600c548211156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906131f3565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611aa357600d54611a5684610cc9565b83611a619190612b1c565b1115611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613285565b60405180910390fd5b5b60006064600b5484611ab59190612ac2565b611abf9190612881565b905060006064600a5485611ad39190612ac2565b611add9190612881565b90508082611aeb9190612b1c565b84611af691906130e1565b92508160106000828254611b0a9190612b1c565b92505081905550611b2786308385611b229190612b1c565b611f42565b50505b611b35848483611f42565b50611b47565b611b46838383611f42565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60016014806101000a81548160ff0219169083151502179055506000600282611c3b9190612881565b905060008183611c4b91906130e1565b90506000479050611c5b83611cd1565b60008147611c6991906130e1565b9050611c7583826121a2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611ca8939291906132a5565b60405180910390a15050505060006014806101000a81548160ff02191690831515021790555050565b60016014806101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d0857611d076132dc565b5b604051908082528060200260200182016040528015611d365781602001602082028036833780820191505090505b5090503081600081518110611d4e57611d4d61330b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e17919061334f565b81600181518110611e2b57611e2a61330b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e90307f0000000000000000000000000000000000000000000000000000000000000000846112eb565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611ef2959493929190613475565b600060405180830381600087803b158015611f0c57600080fd5b505af1158015611f20573d6000803e3d6000fd5b505050505060006014806101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa890612f9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612020576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120179061302f565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d906130c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121949190612546565b60405180910390a350505050565b60016014806101000a81548160ff0219169083151502179055506121e7307f0000000000000000000000000000000000000000000000000000000000000000846112eb565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161226e969594939291906134cf565b60606040518083038185885af115801561228c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122b19190613545565b50505060006014806101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122fd826122d2565b9050919050565b61230d816122f2565b82525050565b60006020820190506123286000830184612304565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561236857808201518184015260208101905061234d565b60008484015250505050565b6000601f19601f8301169050919050565b60006123908261232e565b61239a8185612339565b93506123aa81856020860161234a565b6123b381612374565b840191505092915050565b600060208201905081810360008301526123d88184612385565b905092915050565b600080fd5b6123ee816122f2565b81146123f957600080fd5b50565b60008135905061240b816123e5565b92915050565b6000819050919050565b61242481612411565b811461242f57600080fd5b50565b6000813590506124418161241b565b92915050565b6000806040838503121561245e5761245d6123e0565b5b600061246c858286016123fc565b925050602061247d85828601612432565b9150509250929050565b60008115159050919050565b61249c81612487565b82525050565b60006020820190506124b76000830184612493565b92915050565b6000819050919050565b60006124e26124dd6124d8846122d2565b6124bd565b6122d2565b9050919050565b60006124f4826124c7565b9050919050565b6000612506826124e9565b9050919050565b612516816124fb565b82525050565b6000602082019050612531600083018461250d565b92915050565b61254081612411565b82525050565b600060208201905061255b6000830184612537565b92915050565b600060208284031215612577576125766123e0565b5b6000612585848285016123fc565b91505092915050565b6000806000606084860312156125a7576125a66123e0565b5b60006125b5868287016123fc565b93505060206125c6868287016123fc565b92505060406125d786828701612432565b9150509250925092565b600080604083850312156125f8576125f76123e0565b5b600061260685828601612432565b925050602061261785828601612432565b9150509250929050565b600060ff82169050919050565b61263781612621565b82525050565b6000602082019050612652600083018461262e565b92915050565b60006020828403121561266e5761266d6123e0565b5b600061267c84828501612432565b91505092915050565b6000806040838503121561269c5761269b6123e0565b5b60006126aa858286016123fc565b92505060206126bb858286016123fc565b9150509250929050565b6126ce81612487565b81146126d957600080fd5b50565b6000813590506126eb816126c5565b92915050565b60008060408385031215612708576127076123e0565b5b6000612716858286016123fc565b9250506020612727858286016126dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061277857607f821691505b60208210810361278b5761278a612731565b5b50919050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f742c206f72203021000000000000000000000000000000000000000000000000602082015250565b60006127ed602883612339565b91506127f882612791565b604082019050919050565b6000602082019050818103600083015261281c816127e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061288c82612411565b915061289783612411565b9250826128a7576128a6612823565b5b828204905092915050565b7f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f6660008201527f2074686520737570706c79206174206f6e636521000000000000000000000000602082015250565b600061290e603483612339565b9150612919826128b2565b604082019050919050565b6000602082019050818103600083015261293d81612901565b9050919050565b60008160011c9050919050565b6000808291508390505b600185111561299b5780860481111561297757612976612852565b5b60018516156129865780820291505b808102905061299485612944565b945061295b565b94509492505050565b6000826129b45760019050612a70565b816129c25760009050612a70565b81600181146129d857600281146129e257612a11565b6001915050612a70565b60ff8411156129f4576129f3612852565b5b8360020a915084821115612a0b57612a0a612852565b5b50612a70565b5060208310610133831016604e8410600b8410161715612a465782820a905083811115612a4157612a40612852565b5b612a70565b612a538484846001612951565b92509050818404811115612a6a57612a69612852565b5b81810290505b9392505050565b6000612a8282612411565b9150612a8d83612621565b9250612aba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846129a4565b905092915050565b6000612acd82612411565b9150612ad883612411565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b1157612b10612852565b5b828202905092915050565b6000612b2782612411565b9150612b3283612411565b9250828201905080821115612b4a57612b49612852565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612bac602583612339565b9150612bb782612b50565b604082019050919050565b60006020820190508181036000830152612bdb81612b9f565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031302500000000000000000000000000000000000000602082015250565b6000612c3e602d83612339565b9150612c4982612be2565b604082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b6000604082019050612c896000830185612304565b612c966020830184612493565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cf9602683612339565b9150612d0482612c9d565b604082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d8b602483612339565b9150612d9682612d2f565b604082019050919050565b60006020820190508181036000830152612dba81612d7e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e1d602283612339565b9150612e2882612dc1565b604082019050919050565b60006020820190508181036000830152612e4c81612e10565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e89602083612339565b9150612e9482612e53565b602082019050919050565b60006020820190508181036000830152612eb881612e7c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ef5601d83612339565b9150612f0082612ebf565b602082019050919050565b60006020820190508181036000830152612f2481612ee8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f87602583612339565b9150612f9282612f2b565b604082019050919050565b60006020820190508181036000830152612fb681612f7a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613019602383612339565b915061302482612fbd565b604082019050919050565b600060208201905081810360008301526130488161300c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130ab602683612339565b91506130b68261304f565b604082019050919050565b600060208201905081810360008301526130da8161309e565b9050919050565b60006130ec82612411565b91506130f783612411565b925082820390508181111561310f5761310e612852565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061314b601283612339565b915061315682613115565b602082019050919050565b6000602082019050818103600083015261317a8161313e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006131dd603983612339565b91506131e882613181565b604082019050919050565b6000602082019050818103600083015261320c816131d0565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061326f603683612339565b915061327a82613213565b604082019050919050565b6000602082019050818103600083015261329e81613262565b9050919050565b60006060820190506132ba6000830186612537565b6132c76020830185612537565b6132d46040830184612537565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613349816123e5565b92915050565b600060208284031215613365576133646123e0565b5b60006133738482850161333a565b91505092915050565b6000819050919050565b60006133a161339c6133978461337c565b6124bd565b612411565b9050919050565b6133b181613386565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133ec816122f2565b82525050565b60006133fe83836133e3565b60208301905092915050565b6000602082019050919050565b6000613422826133b7565b61342c81856133c2565b9350613437836133d3565b8060005b8381101561346857815161344f88826133f2565b975061345a8361340a565b92505060018101905061343b565b5085935050505092915050565b600060a08201905061348a6000830188612537565b61349760208301876133a8565b81810360408301526134a98186613417565b90506134b86060830185612304565b6134c56080830184612537565b9695505050505050565b600060c0820190506134e46000830189612304565b6134f16020830188612537565b6134fe60408301876133a8565b61350b60608301866133a8565b6135186080830185612304565b61352560a0830184612537565b979650505050505050565b60008151905061353f8161241b565b92915050565b60008060006060848603121561355e5761355d6123e0565b5b600061356c86828701613530565b935050602061357d86828701613530565b925050604061358e86828701613530565b915050925092509256fea2646970667358221220b950b7f4449024af2d6a2b996772b5048cf257a1895acb0e55c69a991aa7c8d264736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c806381bfdcca1161010d578063ad16a0cf116100a0578063d12a76881161006f578063d12a768814610796578063dd62ed3e146107c1578063df8408fe146107fe578063f2fde38b14610827578063f345bd851461085057610204565b8063ad16a0cf146106c6578063af8af690146106f1578063bb85c6d11461072e578063c0fdea571461076b57610204565b8063a3996f7b116100dc578063a3996f7b1461060a578063a457c2d714610621578063a9059cbb1461065e578063aa4bde281461069b57610204565b806381bfdcca1461054c5780638c0b5e22146105895780638da5cb5b146105b457806395d89b41146105df57610204565b8063313ce56711610190578063677daa571161015f578063677daa571461045357806370a0823114610490578063715018a6146104cd57806375f0a874146104e4578063768dc7101461050f57610204565b8063313ce5671461039557806339509351146103c057806349bd5a5e146103fd578063527ffabd1461042857610204565b806318160ddd116101cc57806318160ddd146102c75780631b56bbf9146102f257806323b872dd1461031b57806330b63d801461035857610204565b806303fd2a451461020957806306fdde0314610234578063095ea7b31461025f5780631694505e1461029c57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e61087b565b60405161022b9190612313565b60405180910390f35b34801561024057600080fd5b506102496108a1565b60405161025691906123be565b60405180910390f35b34801561026b57600080fd5b5061028660048036038101906102819190612447565b610933565b60405161029391906124a2565b60405180910390f35b3480156102a857600080fd5b506102b1610956565b6040516102be919061251c565b60405180910390f35b3480156102d357600080fd5b506102dc61097a565b6040516102e99190612546565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612561565b610984565b005b34801561032757600080fd5b50610342600480360381019061033d919061258e565b610b06565b60405161034f91906124a2565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906125e1565b610b35565b60405161038c91906124a2565b60405180910390f35b3480156103a157600080fd5b506103aa610c43565b6040516103b7919061263d565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612447565b610c4c565b6040516103f491906124a2565b60405180910390f35b34801561040957600080fd5b50610412610c83565b60405161041f9190612313565b60405180910390f35b34801561043457600080fd5b5061043d610ca9565b60405161044a9190612546565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612658565b610caf565b60405161048791906124a2565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612561565b610cc9565b6040516104c49190612546565b60405180910390f35b3480156104d957600080fd5b506104e2610d11565b005b3480156104f057600080fd5b506104f9610d25565b6040516105069190612313565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190612561565b610d4b565b60405161054391906124a2565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612658565b610d6b565b60405161058091906124a2565b60405180910390f35b34801561059557600080fd5b5061059e610d85565b6040516105ab9190612546565b60405180910390f35b3480156105c057600080fd5b506105c9610d8b565b6040516105d69190612313565b60405180910390f35b3480156105eb57600080fd5b506105f4610db5565b60405161060191906123be565b60405180910390f35b34801561061657600080fd5b5061061f610e47565b005b34801561062d57600080fd5b5061064860048036038101906106439190612447565b610ec1565b60405161065591906124a2565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612447565b610f38565b60405161069291906124a2565b60405180910390f35b3480156106a757600080fd5b506106b0610f5b565b6040516106bd9190612546565b60405180910390f35b3480156106d257600080fd5b506106db610f61565b6040516106e89190612546565b60405180910390f35b3480156106fd57600080fd5b50610718600480360381019061071391906125e1565b610f67565b60405161072591906124a2565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190612561565b610fd8565b60405161076291906124a2565b60405180910390f35b34801561077757600080fd5b5061078061112b565b60405161078d9190612546565b60405180910390f35b3480156107a257600080fd5b506107ab611131565b6040516107b89190612546565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190612685565b611137565b6040516107f59190612546565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906126f1565b6111be565b005b34801561083357600080fd5b5061084e60048036038101906108499190612561565b61125a565b005b34801561085c57600080fd5b506108656112dd565b6040516108729190612546565b60405180910390f35b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546108b090612760565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612760565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b60008061093e6112e3565b905061094b8185856112eb565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61098c6114b4565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390612803565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290612803565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1d288f7aba265e8b154b112bbb631ceca5df5fe93a750b2fe042fd1cc826647f81604051610afb9190612313565b60405180910390a150565b600080610b116112e3565b9050610b1e858285611532565b610b298585856115be565b60019150509392505050565b6000610b3f6114b4565b6062600954610b4e9190612881565b8310610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690612924565b60405180910390fd5b6062600954610b9e9190612881565b8210610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612924565b60405180910390fd5b600860009054906101000a900460ff16600a610bfb9190612a77565b83610c069190612ac2565b601281905550600860009054906101000a900460ff16600a610c289190612a77565b82610c339190612ac2565b6013819055506001905092915050565b60006009905090565b600080610c576112e3565b9050610c78818585610c698589611137565b610c739190612b1c565b6112eb565b600191505092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000610cb96114b4565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d196114b4565b610d236000611b4c565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60116020528060005260406000206000915054906101000a900460ff1681565b6000610d756114b4565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dc490612760565b80601f0160208091040260200160405190810160405280929190818152602001828054610df090612760565b8015610e3d5780601f10610e1257610100808354040283529160200191610e3d565b820191906000526020600020905b815481529060010190602001808311610e2057829003601f168201915b5050505050905090565b610e4f6114b4565b6001600a819055506003600b81905550600860009054906101000a900460ff16600a610e7b9190612a77565b62989681610e899190612ac2565b600c81905550600860009054906101000a900460ff16600a610eab9190612a77565b62989681610eb99190612ac2565b600d81905550565b600080610ecc6112e3565b90506000610eda8286611137565b905083811015610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612bc2565b60405180910390fd5b610f2c82868684036112eb565b60019250505092915050565b600080610f436112e3565b9050610f508185856115be565b600191505092915050565b600d5481565b60135481565b6000610f716114b4565b600a8284610f7f9190612b1c565b1115610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790612c54565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610fe26114b4565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990612803565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890612803565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60105481565b60125481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111c66114b4565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f318c131114339c004fff0a22fcdbbc0566bb2a7cd3aa1660e636ec5a66784ff2828260405161124e929190612c74565b60405180910390a15050565b6112626114b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c890612d0f565b60405180910390fd5b6112da81611b4c565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190612da1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090612e33565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114a79190612546565b60405180910390a3505050565b6114bc6112e3565b73ffffffffffffffffffffffffffffffffffffffff166114da610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790612e9f565b60405180910390fd5b565b600061153e8484611137565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115b857818110156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190612f0b565b60405180910390fd5b6115b784848484036112eb565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490612f9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361169c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116939061302f565b60405180910390fd5b806116a684610cc9565b10156116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de906130c1565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117905750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156117a7575060148054906101000a900460ff16155b15611b3b57601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461190057600060105461180f30610cc9565b61181991906130e1565b905060125481106118305761182f601254611c12565b5b601354601054106118fe57611846601354611cd1565b6013546010600082825461185a91906130e1565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390613161565b60405180910390fd5b505b505b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119a35750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119b057819050611b2a565b600c548211156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec906131f3565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611aa357600d54611a5684610cc9565b83611a619190612b1c565b1115611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613285565b60405180910390fd5b5b60006064600b5484611ab59190612ac2565b611abf9190612881565b905060006064600a5485611ad39190612ac2565b611add9190612881565b90508082611aeb9190612b1c565b84611af691906130e1565b92508160106000828254611b0a9190612b1c565b92505081905550611b2786308385611b229190612b1c565b611f42565b50505b611b35848483611f42565b50611b47565b611b46838383611f42565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60016014806101000a81548160ff0219169083151502179055506000600282611c3b9190612881565b905060008183611c4b91906130e1565b90506000479050611c5b83611cd1565b60008147611c6991906130e1565b9050611c7583826121a2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611ca8939291906132a5565b60405180910390a15050505060006014806101000a81548160ff02191690831515021790555050565b60016014806101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d0857611d076132dc565b5b604051908082528060200260200182016040528015611d365781602001602082028036833780820191505090505b5090503081600081518110611d4e57611d4d61330b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e17919061334f565b81600181518110611e2b57611e2a61330b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112eb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611ef2959493929190613475565b600060405180830381600087803b158015611f0c57600080fd5b505af1158015611f20573d6000803e3d6000fd5b505050505060006014806101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa890612f9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612020576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120179061302f565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d906130c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121949190612546565b60405180910390a350505050565b60016014806101000a81548160ff0219169083151502179055506121e7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112eb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161226e969594939291906134cf565b60606040518083038185885af115801561228c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906122b19190613545565b50505060006014806101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122fd826122d2565b9050919050565b61230d816122f2565b82525050565b60006020820190506123286000830184612304565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561236857808201518184015260208101905061234d565b60008484015250505050565b6000601f19601f8301169050919050565b60006123908261232e565b61239a8185612339565b93506123aa81856020860161234a565b6123b381612374565b840191505092915050565b600060208201905081810360008301526123d88184612385565b905092915050565b600080fd5b6123ee816122f2565b81146123f957600080fd5b50565b60008135905061240b816123e5565b92915050565b6000819050919050565b61242481612411565b811461242f57600080fd5b50565b6000813590506124418161241b565b92915050565b6000806040838503121561245e5761245d6123e0565b5b600061246c858286016123fc565b925050602061247d85828601612432565b9150509250929050565b60008115159050919050565b61249c81612487565b82525050565b60006020820190506124b76000830184612493565b92915050565b6000819050919050565b60006124e26124dd6124d8846122d2565b6124bd565b6122d2565b9050919050565b60006124f4826124c7565b9050919050565b6000612506826124e9565b9050919050565b612516816124fb565b82525050565b6000602082019050612531600083018461250d565b92915050565b61254081612411565b82525050565b600060208201905061255b6000830184612537565b92915050565b600060208284031215612577576125766123e0565b5b6000612585848285016123fc565b91505092915050565b6000806000606084860312156125a7576125a66123e0565b5b60006125b5868287016123fc565b93505060206125c6868287016123fc565b92505060406125d786828701612432565b9150509250925092565b600080604083850312156125f8576125f76123e0565b5b600061260685828601612432565b925050602061261785828601612432565b9150509250929050565b600060ff82169050919050565b61263781612621565b82525050565b6000602082019050612652600083018461262e565b92915050565b60006020828403121561266e5761266d6123e0565b5b600061267c84828501612432565b91505092915050565b6000806040838503121561269c5761269b6123e0565b5b60006126aa858286016123fc565b92505060206126bb858286016123fc565b9150509250929050565b6126ce81612487565b81146126d957600080fd5b50565b6000813590506126eb816126c5565b92915050565b60008060408385031215612708576127076123e0565b5b6000612716858286016123fc565b9250506020612727858286016126dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061277857607f821691505b60208210810361278b5761278a612731565b5b50919050565b7f4c5020506169722063616e6e6f742062652074686520446561642077616c6c6560008201527f742c206f72203021000000000000000000000000000000000000000000000000602082015250565b60006127ed602883612339565b91506127f882612791565b604082019050919050565b6000602082019050818103600083015261281c816127e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061288c82612411565b915061289783612411565b9250826128a7576128a6612823565b5b828204905092915050565b7f43616e6e6f74206c6971756964617465206d6f7265207468616e203225206f6660008201527f2074686520737570706c79206174206f6e636521000000000000000000000000602082015250565b600061290e603483612339565b9150612919826128b2565b604082019050919050565b6000602082019050818103600083015261293d81612901565b9050919050565b60008160011c9050919050565b6000808291508390505b600185111561299b5780860481111561297757612976612852565b5b60018516156129865780820291505b808102905061299485612944565b945061295b565b94509492505050565b6000826129b45760019050612a70565b816129c25760009050612a70565b81600181146129d857600281146129e257612a11565b6001915050612a70565b60ff8411156129f4576129f3612852565b5b8360020a915084821115612a0b57612a0a612852565b5b50612a70565b5060208310610133831016604e8410600b8410161715612a465782820a905083811115612a4157612a40612852565b5b612a70565b612a538484846001612951565b92509050818404811115612a6a57612a69612852565b5b81810290505b9392505050565b6000612a8282612411565b9150612a8d83612621565b9250612aba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846129a4565b905092915050565b6000612acd82612411565b9150612ad883612411565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b1157612b10612852565b5b828202905092915050565b6000612b2782612411565b9150612b3283612411565b9250828201905080821115612b4a57612b49612852565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612bac602583612339565b9150612bb782612b50565b604082019050919050565b60006020820190508181036000830152612bdb81612b9f565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031302500000000000000000000000000000000000000602082015250565b6000612c3e602d83612339565b9150612c4982612be2565b604082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b6000604082019050612c896000830185612304565b612c966020830184612493565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cf9602683612339565b9150612d0482612c9d565b604082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d8b602483612339565b9150612d9682612d2f565b604082019050919050565b60006020820190508181036000830152612dba81612d7e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e1d602283612339565b9150612e2882612dc1565b604082019050919050565b60006020820190508181036000830152612e4c81612e10565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e89602083612339565b9150612e9482612e53565b602082019050919050565b60006020820190508181036000830152612eb881612e7c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ef5601d83612339565b9150612f0082612ebf565b602082019050919050565b60006020820190508181036000830152612f2481612ee8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f87602583612339565b9150612f9282612f2b565b604082019050919050565b60006020820190508181036000830152612fb681612f7a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613019602383612339565b915061302482612fbd565b604082019050919050565b600060208201905081810360008301526130488161300c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130ab602683612339565b91506130b68261304f565b604082019050919050565b600060208201905081810360008301526130da8161309e565b9050919050565b60006130ec82612411565b91506130f783612411565b925082820390508181111561310f5761310e612852565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061314b601283612339565b915061315682613115565b602082019050919050565b6000602082019050818103600083015261317a8161313e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006131dd603983612339565b91506131e882613181565b604082019050919050565b6000602082019050818103600083015261320c816131d0565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061326f603683612339565b915061327a82613213565b604082019050919050565b6000602082019050818103600083015261329e81613262565b9050919050565b60006060820190506132ba6000830186612537565b6132c76020830185612537565b6132d46040830184612537565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613349816123e5565b92915050565b600060208284031215613365576133646123e0565b5b60006133738482850161333a565b91505092915050565b6000819050919050565b60006133a161339c6133978461337c565b6124bd565b612411565b9050919050565b6133b181613386565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133ec816122f2565b82525050565b60006133fe83836133e3565b60208301905092915050565b6000602082019050919050565b6000613422826133b7565b61342c81856133c2565b9350613437836133d3565b8060005b8381101561346857815161344f88826133f2565b975061345a8361340a565b92505060018101905061343b565b5085935050505092915050565b600060a08201905061348a6000830188612537565b61349760208301876133a8565b81810360408301526134a98186613417565b90506134b86060830185612304565b6134c56080830184612537565b9695505050505050565b600060c0820190506134e46000830189612304565b6134f16020830188612537565b6134fe60408301876133a8565b61350b60608301866133a8565b6135186080830185612304565b61352560a0830184612537565b979650505050505050565b60008151905061353f8161241b565b92915050565b60008060006060848603121561355e5761355d6123e0565b5b600061356c86828701613530565b935050602061357d86828701613530565b925050604061358e86828701613530565b915050925092509256fea2646970667358221220b950b7f4449024af2d6a2b996772b5048cf257a1895acb0e55c69a991aa7c8d264736f6c63430008100033

Deployed Bytecode Sourcemap

29426:8821:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30028:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19144:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21418:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30680:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20282:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31945:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22242:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37209:602;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20125:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23958:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30738:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29726:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37819:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19309:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16403:103;;;;;;;;;;;;;:::i;:::-;;29946:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30143:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38009:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29822:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15755:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18968:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30348:211;;;;;;;;;;;;;:::i;:::-;;23042:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20862:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29882:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30276:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36810:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36452:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30099:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30200:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20455:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34863:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16661:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29630:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30028:64;;;;;;;;;;;;;:::o;19144:102::-;19200:13;19233:5;19226:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19144:102;:::o;21418:244::-;21539:4;21561:13;21577:12;:10;:12::i;:::-;21561:28;;21600:32;21609:5;21616:7;21625:6;21600:8;:32::i;:::-;21650:4;21643:11;;;21418:244;;;;:::o;30680:51::-;;;:::o;20282:110::-;20345:7;20372:12;;20365:19;;20282:110;:::o;31945:288::-;15641:13;:11;:13::i;:::-;32027:4:::1;;;;;;;;;;;32018:13;;:5;:13;;::::0;32010:66:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;32112:1;32095:19;;:5;:19;;::::0;32087:72:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;32186:5;32170:13;;:21;;;;;;;;;;;;;;;;;;32207:18;32219:5;32207:18;;;;;;:::i;:::-;;;;;;;;31945:288:::0;:::o;22242:297::-;22375:4;22392:15;22410:12;:10;:12::i;:::-;22392:30;;22433:38;22449:4;22455:7;22464:6;22433:15;:38::i;:::-;22482:27;22492:4;22498:2;22502:6;22482:9;:27::i;:::-;22527:4;22520:11;;;22242:297;;;;;:::o;37209:602::-;37366:4;15641:13;:11;:13::i;:::-;37439:2:::1;37429:7;;:12;;;;:::i;:::-;37396:30;:45;37388:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;37554:2;37544:7;;:12;;;;:::i;:::-;37517:24;:39;37509:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;37693:9;;;;;;;;;;;37689:2;:13;;;;:::i;:::-;37656:30;:46;;;;:::i;:::-;37624:29;:78;;;;37770:9;;;;;;;;;;;37766:2;:13;;;;:::i;:::-;37739:24;:40;;;;:::i;:::-;37713:23;:66;;;;37799:4;37792:11;;37209:602:::0;;;;:::o;20125:92::-;20183:5;20208:1;20201:8;;20125:92;:::o;23958:272::-;24075:4;24097:13;24113:12;:10;:12::i;:::-;24097:28;;24136:64;24145:5;24152:7;24189:10;24161:25;24171:5;24178:7;24161:9;:25::i;:::-;:38;;;;:::i;:::-;24136:8;:64::i;:::-;24218:4;24211:11;;;23958:272;;;;:::o;30738:28::-;;;;;;;;;;;;;:::o;29726:35::-;;;;:::o;37819:182::-;37921:4;15641:13;:11;:13::i;:::-;37957:12:::1;37943:11;:26;;;;37989:4;37982:11;;37819:182:::0;;;:::o;19309:177::-;19428:7;19460:9;:18;19470:7;19460:18;;;;;;;;;;;;;;;;19453:25;;19309:177;;;:::o;16403:103::-;15641:13;:11;:13::i;:::-;16468:30:::1;16495:1;16468:18;:30::i;:::-;16403:103::o:0;29946:75::-;;;;;;;;;;;;;:::o;30143:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;38009:198::-;38119:4;15641:13;:11;:13::i;:::-;38159:16:::1;38141:15;:34;;;;38195:4;38188:11;;38009:198:::0;;;:::o;29822:53::-;;;;:::o;15755:87::-;15801:7;15828:6;;;;;;;;;;;15821:13;;15755:87;:::o;18968:106::-;19026:13;19059:7;19052:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18968:106;:::o;30348:211::-;15641:13;:11;:13::i;:::-;30418:1:::1;30400:15;:19;;;;30448:1;30430:15;:19;;;;30489:9;;;;;;;;;;;30485:2;:13;;;;:::i;:::-;30474:8;:24;;;;:::i;:::-;30460:11;:38;;;;30542:9;;;;;;;;;;;30538:2;:13;;;;:::i;:::-;30527:8;:24;;;;:::i;:::-;30509:15;:42;;;;30348:211::o:0;23042:507::-;23164:4;23186:13;23202:12;:10;:12::i;:::-;23186:28;;23225:24;23252:25;23262:5;23269:7;23252:9;:25::i;:::-;23225:52;;23330:15;23310:16;:35;;23288:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;23446:60;23455:5;23462:7;23490:15;23471:16;:34;23446:8;:60::i;:::-;23537:4;23530:11;;;;23042:507;;;;:::o;20862:236::-;20979:4;21001:13;21017:12;:10;:12::i;:::-;21001:28;;21040;21050:5;21057:2;21061:6;21040:9;:28::i;:::-;21086:4;21079:11;;;20862:236;;;;:::o;29882:57::-;;;;:::o;30276:63::-;;;;:::o;36810:391::-;36958:4;15641:13;:11;:13::i;:::-;37027:2:::1;37006:16;36989;:33;;;;:::i;:::-;36988:41;;36980:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;37108:16;37090:15;:34;;;;37153:16;37135:15;:34;;;;37189:4;37182:11;;36810:391:::0;;;;:::o;36452:350::-;36555:4;15641:13;:11;:13::i;:::-;36598:4:::1;;;;;;;;;;;36585:17;;:9;:17;;::::0;36577:70:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36687:1;36666:23;;:9;:23;;::::0;36658:76:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36763:9;36745:15;;:27;;;;;;;;;;;;;;;;;;36790:4;36783:11;;36452:350:::0;;;:::o;30099:37::-;;;;:::o;30200:69::-;;;;:::o;20455:201::-;20589:7;20621:11;:18;20633:5;20621:18;;;;;;;;;;;;;;;:27;20640:7;20621:27;;;;;;;;;;;;;;;;20614:34;;20455:201;;;;:::o;34863:189::-;15641:13;:11;:13::i;:::-;34980:7:::1;34949:18;:28;34968:8;34949:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;35003:41;35026:8;35036:7;35003:41;;;;;;;:::i;:::-;;;;;;;;34863:189:::0;;:::o;16661:238::-;15641:13;:11;:13::i;:::-;16784:1:::1;16764:22;;:8;:22;;::::0;16742:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16863:28;16882:8;16863:18;:28::i;:::-;16661:238:::0;:::o;29630:35::-;;;;:::o;14548:98::-;14601:7;14628:10;14621:17;;14548:98;:::o;26265:380::-;26418:1;26401:19;;:5;:19;;;26393:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26499:1;26480:21;;:7;:21;;;26472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26583:6;26553:11;:18;26565:5;26553:18;;;;;;;;;;;;;;;:27;26572:7;26553:27;;;;;;;;;;;;;;;:36;;;;26621:7;26605:32;;26614:5;26605:32;;;26630:6;26605:32;;;;;;:::i;:::-;;;;;;;;26265:380;;;:::o;15920:132::-;15995:12;:10;:12::i;:::-;15984:23;;:7;:5;:7::i;:::-;:23;;;15976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15920:132::o;26936:502::-;27071:24;27098:25;27108:5;27115:7;27098:9;:25::i;:::-;27071:52;;27158:17;27138:16;:37;27134:297;;27238:6;27218:16;:26;;27192:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27353:51;27362:5;27369:7;27397:6;27378:16;:25;27353:8;:51::i;:::-;27134:297;27060:378;26936:502;;;:::o;32711:2144::-;32825:1;32809:18;;:4;:18;;;32801:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32902:1;32888:16;;:2;:16;;;32880:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32982:6;32963:15;32973:4;32963:9;:15::i;:::-;:25;;32955:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;33057:13;;;;;;;;;;;33049:21;;:4;:21;;;:44;;;;33080:13;;;;;;;;;;;33074:19;;:2;:19;;;33049:44;33048:67;;;;;33099:16;;;;;;;;;;33098:17;33048:67;33044:1804;;;33144:13;;;;;;;;;;;33136:21;;:4;:21;;;33132:681;;33178:32;33240:18;;33213:24;33231:4;33213:9;:24::i;:::-;:45;;;;:::i;:::-;33178:80;;33309:29;;33281:24;:57;33277:152;;33363:46;33379:29;;33363:15;:46::i;:::-;33277:152;33475:23;;33452:18;;33451:47;33447:351;;33523:42;33541:23;;33523:17;:42::i;:::-;33610:23;;33588:18;;:45;;;;;;;:::i;:::-;;;;;;;;33656:9;33676:15;;;;;;;;;;;33668:29;;:52;33698:21;33668:52;;;;;;;;;;;;;;;;;;;;;;;33656:64;;33751:4;33743:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;33500:298;33447:351;33159:654;33132:681;33829:22;33870:18;:24;33889:4;33870:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;33898:18;:22;33917:2;33898:22;;;;;;;;;;;;;;;;;;;;;;;;;33870:50;33866:839;;;33958:6;33941:23;;33866:839;;;34037:11;;34027:6;:21;;34019:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;34140:13;;;;;;;;;;;34132:21;;:4;:21;;;34129:178;;34213:15;;34195:13;34205:2;34195:9;:13::i;:::-;34186:6;:22;;;;:::i;:::-;34185:43;;34177:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34129:178;34327:22;34382:3;34363:15;;34354:6;:24;;;;:::i;:::-;34353:32;;;;:::i;:::-;34327:59;;34405:22;34460:3;34441:15;;34432:6;:24;;;;:::i;:::-;34431:32;;;;:::i;:::-;34405:59;;34527:14;34510;:31;;;;:::i;:::-;34500:6;:42;;;;:::i;:::-;34483:59;;34583:14;34561:18;;:36;;;;;;;:::i;:::-;;;;;;;;34618:71;34634:4;34648;34673:14;34656;:31;;;;:::i;:::-;34618:15;:71::i;:::-;34000:705;;33866:839;34719:41;34735:4;34741:2;34745:14;34719:15;:41::i;:::-;33117:1655;33044:1804;;;34803:33;34819:4;34825:2;34829:6;34803:15;:33::i;:::-;33044:1804;32711:2144;;;:::o;17059:191::-;17133:16;17152:6;;;;;;;;;;;17133:25;;17178:8;17169:6;;:17;;;;;;;;;;;;;;;;;;17233:8;17202:40;;17223:8;17202:40;;;;;;;;;;;;17122:128;17059:191;:::o;35060:474::-;30997:4;30978:16;;:23;;;;;;;;;;;;;;;;;;35146:12:::1;35185:1;35162:20;:24;;;;:::i;:::-;35146:41;;35198:17;35242:4;35219:20;:27;;;;:::i;:::-;35198:49;;35260:22;35285:21;35260:46;;35319:23;35337:4;35319:17;:23::i;:::-;35355:18;35401:14;35377:21;:38;;;;:::i;:::-;35355:61;;35429:36;35443:9;35454:10;35429:13;:36::i;:::-;35483:43;35498:4;35504:10;35516:9;35483:43;;;;;;;;:::i;:::-;;;;;;;;35135:399;;;;31043:5:::0;31024:16;;:24;;;;;;;;;;;;;;;;;;35060:474;:::o;35542:488::-;30997:4;30978:16;;:23;;;;;;;;;;;;;;;;;;35621:21:::1;35659:1;35645:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35621:40;;35690:4;35672;35677:1;35672:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;35716:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35706:4;35711:1;35706:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;35751:62;35768:4;35783:15;35801:11;35751:8;:62::i;:::-;35826:15;:66;;;35907:11;35933:1;35949:4;35976;35996:15;35826:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;35610:420;31043:5:::0;31024:16;;:24;;;;;;;;;;;;;;;;;;35542:488;:::o;27446:776::-;27593:1;27577:18;;:4;:18;;;27569:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27670:1;27656:16;;:2;:16;;;27648:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27725:19;27747:9;:15;27757:4;27747:15;;;;;;;;;;;;;;;;27725:37;;27810:6;27795:11;:21;;27773:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;27950:6;27936:11;:20;27918:9;:15;27928:4;27918:15;;;;;;;;;;;;;;;:38;;;;28153:6;28136:9;:13;28146:2;28136:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;28203:2;28188:26;;28197:4;28188:26;;;28207:6;28188:26;;;;;;:::i;:::-;;;;;;;;27558:664;27446:776;;;:::o;36038:406::-;30997:4;30978:16;;:23;;;;;;;;;;;;;;;;;;36155:62:::1;36172:4;36187:15;36205:11;36155:8;:62::i;:::-;36230:15;:31;;;36269:9;36302:4;36322:11;36348:1;36364::::0;36380:15:::1;;;;;;;;;;;36410;36230:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31043:5:::0;31024:16;;:24;;;;;;;;;;;;;;;;;;36038:406;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:152::-;4220:9;4253:37;4284:5;4253:37;:::i;:::-;4240:50;;4144:152;;;:::o;4302:183::-;4415:63;4472:5;4415:63;:::i;:::-;4410:3;4403:76;4302:183;;:::o;4491:274::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:97;4755:1;4744:9;4740:17;4731:6;4661:97;:::i;:::-;4491:274;;;;:::o;4771:118::-;4858:24;4876:5;4858:24;:::i;:::-;4853:3;4846:37;4771:118;;:::o;4895:222::-;4988:4;5026:2;5015:9;5011:18;5003:26;;5039:71;5107:1;5096:9;5092:17;5083:6;5039:71;:::i;:::-;4895:222;;;;:::o;5123:329::-;5182:6;5231:2;5219:9;5210:7;5206:23;5202:32;5199:119;;;5237:79;;:::i;:::-;5199:119;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5123:329;;;;:::o;5458:619::-;5535:6;5543;5551;5600:2;5588:9;5579:7;5575:23;5571:32;5568:119;;;5606:79;;:::i;:::-;5568:119;5726:1;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5697:117;5853:2;5879:53;5924:7;5915:6;5904:9;5900:22;5879:53;:::i;:::-;5869:63;;5824:118;5981:2;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5952:118;5458:619;;;;;:::o;6083:474::-;6151:6;6159;6208:2;6196:9;6187:7;6183:23;6179:32;6176:119;;;6214:79;;:::i;:::-;6176:119;6334:1;6359:53;6404:7;6395:6;6384:9;6380:22;6359:53;:::i;:::-;6349:63;;6305:117;6461:2;6487:53;6532:7;6523:6;6512:9;6508:22;6487:53;:::i;:::-;6477:63;;6432:118;6083:474;;;;;:::o;6563:86::-;6598:7;6638:4;6631:5;6627:16;6616:27;;6563:86;;;:::o;6655:112::-;6738:22;6754:5;6738:22;:::i;:::-;6733:3;6726:35;6655:112;;:::o;6773:214::-;6862:4;6900:2;6889:9;6885:18;6877:26;;6913:67;6977:1;6966:9;6962:17;6953:6;6913:67;:::i;:::-;6773:214;;;;:::o;6993:329::-;7052:6;7101:2;7089:9;7080:7;7076:23;7072:32;7069:119;;;7107:79;;:::i;:::-;7069:119;7227:1;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7198:117;6993:329;;;;:::o;7328:474::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:116::-;7878:21;7893:5;7878:21;:::i;:::-;7871:5;7868:32;7858:60;;7914:1;7911;7904:12;7858:60;7808:116;:::o;7930:133::-;7973:5;8011:6;7998:20;7989:29;;8027:30;8051:5;8027:30;:::i;:::-;7930:133;;;;:::o;8069:468::-;8134:6;8142;8191:2;8179:9;8170:7;8166:23;8162:32;8159:119;;;8197:79;;:::i;:::-;8159:119;8317:1;8342:53;8387:7;8378:6;8367:9;8363:22;8342:53;:::i;:::-;8332:63;;8288:117;8444:2;8470:50;8512:7;8503:6;8492:9;8488:22;8470:50;:::i;:::-;8460:60;;8415:115;8069:468;;;;;:::o;8543:180::-;8591:77;8588:1;8581:88;8688:4;8685:1;8678:15;8712:4;8709:1;8702:15;8729:320;8773:6;8810:1;8804:4;8800:12;8790:22;;8857:1;8851:4;8847:12;8878:18;8868:81;;8934:4;8926:6;8922:17;8912:27;;8868:81;8996:2;8988:6;8985:14;8965:18;8962:38;8959:84;;9015:18;;:::i;:::-;8959:84;8780:269;8729:320;;;:::o;9055:227::-;9195:34;9191:1;9183:6;9179:14;9172:58;9264:10;9259:2;9251:6;9247:15;9240:35;9055:227;:::o;9288:366::-;9430:3;9451:67;9515:2;9510:3;9451:67;:::i;:::-;9444:74;;9527:93;9616:3;9527:93;:::i;:::-;9645:2;9640:3;9636:12;9629:19;;9288:366;;;:::o;9660:419::-;9826:4;9864:2;9853:9;9849:18;9841:26;;9913:9;9907:4;9903:20;9899:1;9888:9;9884:17;9877:47;9941:131;10067:4;9941:131;:::i;:::-;9933:139;;9660:419;;;:::o;10085:180::-;10133:77;10130:1;10123:88;10230:4;10227:1;10220:15;10254:4;10251:1;10244:15;10271:180;10319:77;10316:1;10309:88;10416:4;10413:1;10406:15;10440:4;10437:1;10430:15;10457:185;10497:1;10514:20;10532:1;10514:20;:::i;:::-;10509:25;;10548:20;10566:1;10548:20;:::i;:::-;10543:25;;10587:1;10577:35;;10592:18;;:::i;:::-;10577:35;10634:1;10631;10627:9;10622:14;;10457:185;;;;:::o;10648:239::-;10788:34;10784:1;10776:6;10772:14;10765:58;10857:22;10852:2;10844:6;10840:15;10833:47;10648:239;:::o;10893:366::-;11035:3;11056:67;11120:2;11115:3;11056:67;:::i;:::-;11049:74;;11132:93;11221:3;11132:93;:::i;:::-;11250:2;11245:3;11241:12;11234:19;;10893:366;;;:::o;11265:419::-;11431:4;11469:2;11458:9;11454:18;11446:26;;11518:9;11512:4;11508:20;11504:1;11493:9;11489:17;11482:47;11546:131;11672:4;11546:131;:::i;:::-;11538:139;;11265:419;;;:::o;11690:102::-;11732:8;11779:5;11776:1;11772:13;11751:34;;11690:102;;;:::o;11798:848::-;11859:5;11866:4;11890:6;11881:15;;11914:5;11905:14;;11928:712;11949:1;11939:8;11936:15;11928:712;;;12044:4;12039:3;12035:14;12029:4;12026:24;12023:50;;;12053:18;;:::i;:::-;12023:50;12103:1;12093:8;12089:16;12086:451;;;12518:4;12511:5;12507:16;12498:25;;12086:451;12568:4;12562;12558:15;12550:23;;12598:32;12621:8;12598:32;:::i;:::-;12586:44;;11928:712;;;11798:848;;;;;;;:::o;12652:1073::-;12706:5;12897:8;12887:40;;12918:1;12909:10;;12920:5;;12887:40;12946:4;12936:36;;12963:1;12954:10;;12965:5;;12936:36;13032:4;13080:1;13075:27;;;;13116:1;13111:191;;;;13025:277;;13075:27;13093:1;13084:10;;13095:5;;;13111:191;13156:3;13146:8;13143:17;13140:43;;;13163:18;;:::i;:::-;13140:43;13212:8;13209:1;13205:16;13196:25;;13247:3;13240:5;13237:14;13234:40;;;13254:18;;:::i;:::-;13234:40;13287:5;;;13025:277;;13411:2;13401:8;13398:16;13392:3;13386:4;13383:13;13379:36;13361:2;13351:8;13348:16;13343:2;13337:4;13334:12;13330:35;13314:111;13311:246;;;13467:8;13461:4;13457:19;13448:28;;13502:3;13495:5;13492:14;13489:40;;;13509:18;;:::i;:::-;13489:40;13542:5;;13311:246;13582:42;13620:3;13610:8;13604:4;13601:1;13582:42;:::i;:::-;13567:57;;;;13656:4;13651:3;13647:14;13640:5;13637:25;13634:51;;;13665:18;;:::i;:::-;13634:51;13714:4;13707:5;13703:16;13694:25;;12652:1073;;;;;;:::o;13731:281::-;13789:5;13813:23;13831:4;13813:23;:::i;:::-;13805:31;;13857:25;13873:8;13857:25;:::i;:::-;13845:37;;13901:104;13938:66;13928:8;13922:4;13901:104;:::i;:::-;13892:113;;13731:281;;;;:::o;14018:348::-;14058:7;14081:20;14099:1;14081:20;:::i;:::-;14076:25;;14115:20;14133:1;14115:20;:::i;:::-;14110:25;;14303:1;14235:66;14231:74;14228:1;14225:81;14220:1;14213:9;14206:17;14202:105;14199:131;;;14310:18;;:::i;:::-;14199:131;14358:1;14355;14351:9;14340:20;;14018:348;;;;:::o;14372:191::-;14412:3;14431:20;14449:1;14431:20;:::i;:::-;14426:25;;14465:20;14483:1;14465:20;:::i;:::-;14460:25;;14508:1;14505;14501:9;14494:16;;14529:3;14526:1;14523:10;14520:36;;;14536:18;;:::i;:::-;14520:36;14372:191;;;;:::o;14569:224::-;14709:34;14705:1;14697:6;14693:14;14686:58;14778:7;14773:2;14765:6;14761:15;14754:32;14569:224;:::o;14799:366::-;14941:3;14962:67;15026:2;15021:3;14962:67;:::i;:::-;14955:74;;15038:93;15127:3;15038:93;:::i;:::-;15156:2;15151:3;15147:12;15140:19;;14799:366;;;:::o;15171:419::-;15337:4;15375:2;15364:9;15360:18;15352:26;;15424:9;15418:4;15414:20;15410:1;15399:9;15395:17;15388:47;15452:131;15578:4;15452:131;:::i;:::-;15444:139;;15171:419;;;:::o;15596:232::-;15736:34;15732:1;15724:6;15720:14;15713:58;15805:15;15800:2;15792:6;15788:15;15781:40;15596:232;:::o;15834:366::-;15976:3;15997:67;16061:2;16056:3;15997:67;:::i;:::-;15990:74;;16073:93;16162:3;16073:93;:::i;:::-;16191:2;16186:3;16182:12;16175:19;;15834:366;;;:::o;16206:419::-;16372:4;16410:2;16399:9;16395:18;16387:26;;16459:9;16453:4;16449:20;16445:1;16434:9;16430:17;16423:47;16487:131;16613:4;16487:131;:::i;:::-;16479:139;;16206:419;;;:::o;16631:320::-;16746:4;16784:2;16773:9;16769:18;16761:26;;16797:71;16865:1;16854:9;16850:17;16841:6;16797:71;:::i;:::-;16878:66;16940:2;16929:9;16925:18;16916:6;16878:66;:::i;:::-;16631:320;;;;;:::o;16957:225::-;17097:34;17093:1;17085:6;17081:14;17074:58;17166:8;17161:2;17153:6;17149:15;17142:33;16957:225;:::o;17188:366::-;17330:3;17351:67;17415:2;17410:3;17351:67;:::i;:::-;17344:74;;17427:93;17516:3;17427:93;:::i;:::-;17545:2;17540:3;17536:12;17529:19;;17188:366;;;:::o;17560:419::-;17726:4;17764:2;17753:9;17749:18;17741:26;;17813:9;17807:4;17803:20;17799:1;17788:9;17784:17;17777:47;17841:131;17967:4;17841:131;:::i;:::-;17833:139;;17560:419;;;:::o;17985:223::-;18125:34;18121:1;18113:6;18109:14;18102:58;18194:6;18189:2;18181:6;18177:15;18170:31;17985:223;:::o;18214:366::-;18356:3;18377:67;18441:2;18436:3;18377:67;:::i;:::-;18370:74;;18453:93;18542:3;18453:93;:::i;:::-;18571:2;18566:3;18562:12;18555:19;;18214:366;;;:::o;18586:419::-;18752:4;18790:2;18779:9;18775:18;18767:26;;18839:9;18833:4;18829:20;18825:1;18814:9;18810:17;18803:47;18867:131;18993:4;18867:131;:::i;:::-;18859:139;;18586:419;;;:::o;19011:221::-;19151:34;19147:1;19139:6;19135:14;19128:58;19220:4;19215:2;19207:6;19203:15;19196:29;19011:221;:::o;19238:366::-;19380:3;19401:67;19465:2;19460:3;19401:67;:::i;:::-;19394:74;;19477:93;19566:3;19477:93;:::i;:::-;19595:2;19590:3;19586:12;19579:19;;19238:366;;;:::o;19610:419::-;19776:4;19814:2;19803:9;19799:18;19791:26;;19863:9;19857:4;19853:20;19849:1;19838:9;19834:17;19827:47;19891:131;20017:4;19891:131;:::i;:::-;19883:139;;19610:419;;;:::o;20035:182::-;20175:34;20171:1;20163:6;20159:14;20152:58;20035:182;:::o;20223:366::-;20365:3;20386:67;20450:2;20445:3;20386:67;:::i;:::-;20379:74;;20462:93;20551:3;20462:93;:::i;:::-;20580:2;20575:3;20571:12;20564:19;;20223:366;;;:::o;20595:419::-;20761:4;20799:2;20788:9;20784:18;20776:26;;20848:9;20842:4;20838:20;20834:1;20823:9;20819:17;20812:47;20876:131;21002:4;20876:131;:::i;:::-;20868:139;;20595:419;;;:::o;21020:179::-;21160:31;21156:1;21148:6;21144:14;21137:55;21020:179;:::o;21205:366::-;21347:3;21368:67;21432:2;21427:3;21368:67;:::i;:::-;21361:74;;21444:93;21533:3;21444:93;:::i;:::-;21562:2;21557:3;21553:12;21546:19;;21205:366;;;:::o;21577:419::-;21743:4;21781:2;21770:9;21766:18;21758:26;;21830:9;21824:4;21820:20;21816:1;21805:9;21801:17;21794:47;21858:131;21984:4;21858:131;:::i;:::-;21850:139;;21577:419;;;:::o;22002:224::-;22142:34;22138:1;22130:6;22126:14;22119:58;22211:7;22206:2;22198:6;22194:15;22187:32;22002:224;:::o;22232:366::-;22374:3;22395:67;22459:2;22454:3;22395:67;:::i;:::-;22388:74;;22471:93;22560:3;22471:93;:::i;:::-;22589:2;22584:3;22580:12;22573:19;;22232:366;;;:::o;22604:419::-;22770:4;22808:2;22797:9;22793:18;22785:26;;22857:9;22851:4;22847:20;22843:1;22832:9;22828:17;22821:47;22885:131;23011:4;22885:131;:::i;:::-;22877:139;;22604:419;;;:::o;23029:222::-;23169:34;23165:1;23157:6;23153:14;23146:58;23238:5;23233:2;23225:6;23221:15;23214:30;23029:222;:::o;23257:366::-;23399:3;23420:67;23484:2;23479:3;23420:67;:::i;:::-;23413:74;;23496:93;23585:3;23496:93;:::i;:::-;23614:2;23609:3;23605:12;23598:19;;23257:366;;;:::o;23629:419::-;23795:4;23833:2;23822:9;23818:18;23810:26;;23882:9;23876:4;23872:20;23868:1;23857:9;23853:17;23846:47;23910:131;24036:4;23910:131;:::i;:::-;23902:139;;23629:419;;;:::o;24054:225::-;24194:34;24190:1;24182:6;24178:14;24171:58;24263:8;24258:2;24250:6;24246:15;24239:33;24054:225;:::o;24285:366::-;24427:3;24448:67;24512:2;24507:3;24448:67;:::i;:::-;24441:74;;24524:93;24613:3;24524:93;:::i;:::-;24642:2;24637:3;24633:12;24626:19;;24285:366;;;:::o;24657:419::-;24823:4;24861:2;24850:9;24846:18;24838:26;;24910:9;24904:4;24900:20;24896:1;24885:9;24881:17;24874:47;24938:131;25064:4;24938:131;:::i;:::-;24930:139;;24657:419;;;:::o;25082:194::-;25122:4;25142:20;25160:1;25142:20;:::i;:::-;25137:25;;25176:20;25194:1;25176:20;:::i;:::-;25171:25;;25220:1;25217;25213:9;25205:17;;25244:1;25238:4;25235:11;25232:37;;;25249:18;;:::i;:::-;25232:37;25082:194;;;;:::o;25282:168::-;25422:20;25418:1;25410:6;25406:14;25399:44;25282:168;:::o;25456:366::-;25598:3;25619:67;25683:2;25678:3;25619:67;:::i;:::-;25612:74;;25695:93;25784:3;25695:93;:::i;:::-;25813:2;25808:3;25804:12;25797:19;;25456:366;;;:::o;25828:419::-;25994:4;26032:2;26021:9;26017:18;26009:26;;26081:9;26075:4;26071:20;26067:1;26056:9;26052:17;26045:47;26109:131;26235:4;26109:131;:::i;:::-;26101:139;;25828:419;;;:::o;26253:244::-;26393:34;26389:1;26381:6;26377:14;26370:58;26462:27;26457:2;26449:6;26445:15;26438:52;26253:244;:::o;26503:366::-;26645:3;26666:67;26730:2;26725:3;26666:67;:::i;:::-;26659:74;;26742:93;26831:3;26742:93;:::i;:::-;26860:2;26855:3;26851:12;26844:19;;26503:366;;;:::o;26875:419::-;27041:4;27079:2;27068:9;27064:18;27056:26;;27128:9;27122:4;27118:20;27114:1;27103:9;27099:17;27092:47;27156:131;27282:4;27156:131;:::i;:::-;27148:139;;26875:419;;;:::o;27300:241::-;27440:34;27436:1;27428:6;27424:14;27417:58;27509:24;27504:2;27496:6;27492:15;27485:49;27300:241;:::o;27547:366::-;27689:3;27710:67;27774:2;27769:3;27710:67;:::i;:::-;27703:74;;27786:93;27875:3;27786:93;:::i;:::-;27904:2;27899:3;27895:12;27888:19;;27547:366;;;:::o;27919:419::-;28085:4;28123:2;28112:9;28108:18;28100:26;;28172:9;28166:4;28162:20;28158:1;28147:9;28143:17;28136:47;28200:131;28326:4;28200:131;:::i;:::-;28192:139;;27919:419;;;:::o;28344:442::-;28493:4;28531:2;28520:9;28516:18;28508:26;;28544:71;28612:1;28601:9;28597:17;28588:6;28544:71;:::i;:::-;28625:72;28693:2;28682:9;28678:18;28669:6;28625:72;:::i;:::-;28707;28775:2;28764:9;28760:18;28751:6;28707:72;:::i;:::-;28344:442;;;;;;:::o;28792:180::-;28840:77;28837:1;28830:88;28937:4;28934:1;28927:15;28961:4;28958:1;28951:15;28978:180;29026:77;29023:1;29016:88;29123:4;29120:1;29113:15;29147:4;29144:1;29137:15;29164:143;29221:5;29252:6;29246:13;29237:22;;29268:33;29295:5;29268:33;:::i;:::-;29164:143;;;;:::o;29313:351::-;29383:6;29432:2;29420:9;29411:7;29407:23;29403:32;29400:119;;;29438:79;;:::i;:::-;29400:119;29558:1;29583:64;29639:7;29630:6;29619:9;29615:22;29583:64;:::i;:::-;29573:74;;29529:128;29313:351;;;;:::o;29670:85::-;29715:7;29744:5;29733:16;;29670:85;;;:::o;29761:158::-;29819:9;29852:61;29870:42;29879:32;29905:5;29879:32;:::i;:::-;29870:42;:::i;:::-;29852:61;:::i;:::-;29839:74;;29761:158;;;:::o;29925:147::-;30020:45;30059:5;30020:45;:::i;:::-;30015:3;30008:58;29925:147;;:::o;30078:114::-;30145:6;30179:5;30173:12;30163:22;;30078:114;;;:::o;30198:184::-;30297:11;30331:6;30326:3;30319:19;30371:4;30366:3;30362:14;30347:29;;30198:184;;;;:::o;30388:132::-;30455:4;30478:3;30470:11;;30508:4;30503:3;30499:14;30491:22;;30388:132;;;:::o;30526:108::-;30603:24;30621:5;30603:24;:::i;:::-;30598:3;30591:37;30526:108;;:::o;30640:179::-;30709:10;30730:46;30772:3;30764:6;30730:46;:::i;:::-;30808:4;30803:3;30799:14;30785:28;;30640:179;;;;:::o;30825:113::-;30895:4;30927;30922:3;30918:14;30910:22;;30825:113;;;:::o;30974:732::-;31093:3;31122:54;31170:5;31122:54;:::i;:::-;31192:86;31271:6;31266:3;31192:86;:::i;:::-;31185:93;;31302:56;31352:5;31302:56;:::i;:::-;31381:7;31412:1;31397:284;31422:6;31419:1;31416:13;31397:284;;;31498:6;31492:13;31525:63;31584:3;31569:13;31525:63;:::i;:::-;31518:70;;31611:60;31664:6;31611:60;:::i;:::-;31601:70;;31457:224;31444:1;31441;31437:9;31432:14;;31397:284;;;31401:14;31697:3;31690:10;;31098:608;;;30974:732;;;;:::o;31712:831::-;31975:4;32013:3;32002:9;31998:19;31990:27;;32027:71;32095:1;32084:9;32080:17;32071:6;32027:71;:::i;:::-;32108:80;32184:2;32173:9;32169:18;32160:6;32108:80;:::i;:::-;32235:9;32229:4;32225:20;32220:2;32209:9;32205:18;32198:48;32263:108;32366:4;32357:6;32263:108;:::i;:::-;32255:116;;32381:72;32449:2;32438:9;32434:18;32425:6;32381:72;:::i;:::-;32463:73;32531:3;32520:9;32516:19;32507:6;32463:73;:::i;:::-;31712:831;;;;;;;;:::o;32549:807::-;32798:4;32836:3;32825:9;32821:19;32813:27;;32850:71;32918:1;32907:9;32903:17;32894:6;32850:71;:::i;:::-;32931:72;32999:2;32988:9;32984:18;32975:6;32931:72;:::i;:::-;33013:80;33089:2;33078:9;33074:18;33065:6;33013:80;:::i;:::-;33103;33179:2;33168:9;33164:18;33155:6;33103:80;:::i;:::-;33193:73;33261:3;33250:9;33246:19;33237:6;33193:73;:::i;:::-;33276;33344:3;33333:9;33329:19;33320:6;33276:73;:::i;:::-;32549:807;;;;;;;;;:::o;33362:143::-;33419:5;33450:6;33444:13;33435:22;;33466:33;33493:5;33466:33;:::i;:::-;33362:143;;;;:::o;33511:663::-;33599:6;33607;33615;33664:2;33652:9;33643:7;33639:23;33635:32;33632:119;;;33670:79;;:::i;:::-;33632:119;33790:1;33815:64;33871:7;33862:6;33851:9;33847:22;33815:64;:::i;:::-;33805:74;;33761:128;33928:2;33954:64;34010:7;34001:6;33990:9;33986:22;33954:64;:::i;:::-;33944:74;;33899:129;34067:2;34093:64;34149:7;34140:6;34129:9;34125:22;34093:64;:::i;:::-;34083:74;;34038:129;33511:663;;;;;:::o

Swarm Source

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