ETH Price: $3,963.35 (+2.22%)

Token

ERC-20: AFTERLIFE (GOST)
 

Overview

Max Total Supply

1,000,000,000 GOST

Holders

71

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,590,400 GOST

Value
$0.00
0x11C6d083E9B0748BE19bfCe21115Fe9F8DdD7fD9
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:
GOST

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 2023-02-28
*/

// https://t.me/AFTERLIFEGOST

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

    /**
     * @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(uint256 amount) internal virtual {
        _totalSupply -= amount;
        emit Transfer(address(this), 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);
    }
}

contract GOST is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "AFTERLIFE";
    string private _symbol = "GOST";
    uint8 private _decimals = 18;
    uint256 private _supply = 1000000000;

    uint256 private _buyTotalTax = 4;
    uint256 private _buyMarketingTax = 3;
    uint256 private _buyLiquidityTax = 1;
    uint256 private _buyVaultTax = 0;
    uint256 private _sellTotalTax = 4;
    uint256 private _sellMarketingTax = 3;
    uint256 private _sellLiquidityTax = 1;
    uint256 private _sellVaultTax = 0;
    uint256 private initialMarketingTax = 99;

    uint256 public maxTxAmount = (_supply / 100) * 10**_decimals;
    uint256 public maxWalletAmount = (_supply / 50) * 10**_decimals;
    address public marketingWallet =
        address(0x2eE5193669cb6d3b34418404C2C097E93752588D);
    address public vaultWallet =
        address(0x4C8C4f9022f07BA8B95907c1b80363d82dAf7740);
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private fBlock = 0;
    uint256 private _vaultReserves = 0;
    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _blackL;
    uint256 private _numTokensSellToAddToLiquidity = 1000000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 1000000 * 10**_decimals;
    bool inSwapAndLiquify;
    bool isTrading;
    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
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

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

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            balanceOf(from) >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        require(
            !_blackL[from] && !_blackL[to],
            "ERC20: transfer from blacklisted address"
        );
        
            if (
                (from == uniswapV2Pair || to == uniswapV2Pair) &&
                !inSwapAndLiquify
            ) {
                if (from != uniswapV2Pair) {
                    uint256 contractLiquidityBalance = balanceOf(
                        address(this)
                    ) -
                        _marketingReserves -
                        _vaultReserves;
                    if (
                        contractLiquidityBalance >=
                        _numTokensSellToAddToLiquidity
                    ) {
                        _swapAndLiquify(contractLiquidityBalance);
                    }
                    uint256 toSwap = balanceOf(address(this));
                    if (toSwap >= _numTokensSellToAddToETH) {
                        uint256 initialETHBalance = address(this).balance;
                        _swapTokensForEth(toSwap);
                        uint256 ethBalance = address(this).balance -
                            initialETHBalance;

                        uint256 ethForVault = (ethBalance * _vaultReserves) /
                            toSwap;
                        _vaultReserves = 0;
                        _marketingReserves = 0;
                        bool sent = payable(vaultWallet).send(ethForVault);
                        require(sent, "Failed to send ETH");
                        sent = payable(marketingWallet).send(
                            address(this).balance
                        );
                        require(sent, "Failed to send ETH");
                    }
                }
            }

        if (!(_isExcludedFromFee[from] || _isExcludedFromFee[to])) {
            require(isTrading,"Trading is not enable");
            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 fees = 0;

            if (fBlock > block.number) {
                fees = (amount * initialMarketingTax) / 100;
                _marketingReserves += fees;
            }
            else if (to == uniswapV2Pair && _sellTotalTax > 0) {
                fees = (amount * _sellTotalTax) / 100;
                _vaultReserves += (fees * _sellVaultTax) / _sellTotalTax;
                _marketingReserves +=
                    (fees * _sellMarketingTax) /
                    _sellTotalTax;
            }
            else if (from == uniswapV2Pair && _buyTotalTax > 0) {
                fees = (amount * _buyTotalTax) / 100;
                _vaultReserves += (fees * _buyVaultTax) / _buyTotalTax;
                _marketingReserves += (fees * _buyMarketingTax) / _buyTotalTax;
            }
            amount = amount - fees;
            super._transfer(from, address(this), fees);
        }

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

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

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

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

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

    function swapTrading() external onlyOwner {
        isTrading = true;
        fBlock = block.number + 2;
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeVaultWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeBuyTaxes(
        uint256 _taxForLiquidity,
        uint256 _taxForMarketing,
        uint256 _taxForVault
    ) public onlyOwner returns (bool) {
        require(
            (_taxForLiquidity + _taxForMarketing + _taxForVault) <= 100,
            "ERC20: total tax must not be greater than 10"
        );
        _buyTotalTax = _taxForLiquidity + _taxForMarketing + _taxForVault;
        _buyLiquidityTax = _taxForLiquidity;
        _buyMarketingTax = _taxForMarketing;
        _buyVaultTax = _taxForVault;
        return true;
    }

    function changeSellTaxes(
        uint256 _taxForLiquidity,
        uint256 _taxForMarketing,
        uint256 _taxForVault
    ) public onlyOwner returns (bool) {
        require(
            (_taxForLiquidity + _taxForMarketing + _taxForVault) <= 100,
            "ERC20: total tax must not be greater than 10"
        );
        _sellTotalTax = _taxForLiquidity + _taxForMarketing + _taxForVault;
        _sellLiquidityTax = _taxForLiquidity;
        _sellMarketingTax = _taxForMarketing;
        _sellVaultTax = _taxForVault;
        return true;
    }
    function updateInitialMarketingTax(uint256 newFee) external onlyOwner{
        initialMarketingTax = newFee;
    }
    function burn(uint256 amount) external onlyOwner {
        _burn(amount);
    }

    function addBlackList(address[] calldata accounts) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _blackL[accounts[i]] = true;
        }
    }

    function removeBlackList(address[] calldata accounts) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _blackL[accounts[i]] = false;
        }
    }

    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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxForVault","type":"uint256"}],"name":"changeBuyTaxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxForVault","type":"uint256"}],"name":"changeSellTaxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeVaultWallet","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":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"updateInitialMarketingTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vaultWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280600981526020017f41465445524c4946450000000000000000000000000000000000000000000000815250600690816200004a919062000c51565b506040518060400160405280600481526020017f474f5354000000000000000000000000000000000000000000000000000000008152506007908162000091919062000c51565b506012600860006101000a81548160ff021916908360ff160217905550633b9aca006009556004600a556003600b556001600c556000600d556004600e556003600f55600160105560006011556063601255600860009054906101000a900460ff16600a62000101919062000ec8565b606460095462000112919062000f48565b6200011e919062000f80565b601355600860009054906101000a900460ff16600a6200013f919062000ec8565b603260095462000150919062000f48565b6200015c919062000f80565b601455732ee5193669cb6d3b34418404c2c097e93752588d601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734c8c4f9022f07ba8b95907c1b80363d82daf7740601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060175560006018556000601955600860009054906101000a900460ff16600a62000236919062000ec8565b620f424062000246919062000f80565b601c55600860009054906101000a900460ff16600a62000267919062000ec8565b620f424062000277919062000f80565b601d553480156200028757600080fd5b5060068054620002979062000a40565b80601f0160208091040260200160405190810160405280929190818152602001828054620002c59062000a40565b8015620003165780601f10620002ea5761010080835404028352916020019162000316565b820191906000526020600020905b815481529060010190602001808311620002f857829003601f168201915b5050505050600780546200032a9062000a40565b80601f0160208091040260200160405190810160405280929190818152602001828054620003589062000a40565b8015620003a95780601f106200037d57610100808354040283529160200191620003a9565b820191906000526020600020905b8154815290600101906020018083116200038b57829003601f168201915b50505050508160039081620003bf919062000c51565b508060049081620003d1919062000c51565b505050620003f4620003e8620007c460201b60201c565b620007cc60201b60201c565b6200043233600860009054906101000a900460ff16600a62000417919062000ec8565b60095462000426919062000f80565b6200089260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000497573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004bd91906200104b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200054b91906200104b565b6040518363ffffffff1660e01b81526004016200056a9291906200108e565b6020604051808303816000875af11580156200058a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005b091906200104b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001601a600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601a6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601a6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050620011a7565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000904576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008fb906200111c565b60405180910390fd5b80600260008282546200091891906200113e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009cb91906200118a565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a5957607f821691505b60208210810362000a6f5762000a6e62000a11565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ad97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a9a565b62000ae5868362000a9a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b3262000b2c62000b268462000afd565b62000b07565b62000afd565b9050919050565b6000819050919050565b62000b4e8362000b11565b62000b6662000b5d8262000b39565b84845462000aa7565b825550505050565b600090565b62000b7d62000b6e565b62000b8a81848462000b43565b505050565b5b8181101562000bb25762000ba660008262000b73565b60018101905062000b90565b5050565b601f82111562000c015762000bcb8162000a75565b62000bd68462000a8a565b8101602085101562000be6578190505b62000bfe62000bf58562000a8a565b83018262000b8f565b50505b505050565b600082821c905092915050565b600062000c266000198460080262000c06565b1980831691505092915050565b600062000c41838362000c13565b9150826002028217905092915050565b62000c5c82620009d7565b67ffffffffffffffff81111562000c785762000c77620009e2565b5b62000c84825462000a40565b62000c9182828562000bb6565b600060209050601f83116001811462000cc9576000841562000cb4578287015190505b62000cc0858262000c33565b86555062000d30565b601f19841662000cd98662000a75565b60005b8281101562000d035784890151825560018201915060208501945060208101905062000cdc565b8683101562000d23578489015162000d1f601f89168262000c13565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000dc65780860481111562000d9e5762000d9d62000d38565b5b600185161562000dae5780820291505b808102905062000dbe8562000d67565b945062000d7e565b94509492505050565b60008262000de1576001905062000eb4565b8162000df1576000905062000eb4565b816001811462000e0a576002811462000e155762000e4b565b600191505062000eb4565b60ff84111562000e2a5762000e2962000d38565b5b8360020a91508482111562000e445762000e4362000d38565b5b5062000eb4565b5060208310610133831016604e8410600b841016171562000e855782820a90508381111562000e7f5762000e7e62000d38565b5b62000eb4565b62000e94848484600162000d74565b9250905081840481111562000eae5762000ead62000d38565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ed58262000afd565b915062000ee28362000ebb565b925062000f117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000dcf565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f558262000afd565b915062000f628362000afd565b92508262000f755762000f7462000f19565b5b828204905092915050565b600062000f8d8262000afd565b915062000f9a8362000afd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fd65762000fd562000d38565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010138262000fe6565b9050919050565b620010258162001006565b81146200103157600080fd5b50565b60008151905062001045816200101a565b92915050565b60006020828403121562001064576200106362000fe1565b5b6000620010748482850162001034565b91505092915050565b620010888162001006565b82525050565b6000604082019050620010a560008301856200107d565b620010b460208301846200107d565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001104601f83620010bb565b91506200111182620010cc565b602082019050919050565b600060208201905081810360008301526200113781620010f5565b9050919050565b60006200114b8262000afd565b9150620011588362000afd565b925082820190508082111562001173576200117262000d38565b5b92915050565b620011848162000afd565b82525050565b6000602082019050620011a1600083018462001179565b92915050565b60805160a0516136056200121a6000396000818161094f015281816114a0015281816114f501528181611563015281816118c7015281816119b90152611aa201526000818161088c01528181611ef301528181611fd401528181611ffb0152818161233a015261236101526136056000f3fe6080604052600436106101dc5760003560e01c806375f0a87411610102578063aa4bde2811610095578063d0d72e9411610064578063d0d72e9414610709578063d338faf314610746578063dd62ed3e1461076f578063f2fde38b146107ac576101e3565b8063aa4bde281461064d578063b9e418e714610678578063bb85c6d11461068f578063c6567835146106cc576101e3565b806395d89b41116100d157806395d89b411461057f5780639bf41135146105aa578063a457c2d7146105d3578063a9059cbb14610610576101e3565b806375f0a874146104c157806381bfdcca146104ec5780638c0b5e22146105295780638da5cb5b14610554576101e3565b806342966c681161017a578063677daa5711610149578063677daa57146103f357806369185d811461043057806370a082311461046d578063715018a6146104aa576101e3565b806342966c681461034b578063471e1c6b1461037457806349bd5a5e1461039d57806361f1c5ba146103c8576101e3565b806318160ddd116101b657806318160ddd1461027b57806323b872dd146102a6578063313ce567146102e3578063395093511461030e576101e3565b806306fdde03146101e8578063095ea7b3146102135780631694505e14610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6107d5565b60405161020a91906124c0565b60405180910390f35b34801561021f57600080fd5b5061023a60048036038101906102359190612580565b610867565b60405161024791906125db565b60405180910390f35b34801561025c57600080fd5b5061026561088a565b6040516102729190612655565b60405180910390f35b34801561028757600080fd5b506102906108ae565b60405161029d919061267f565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c8919061269a565b6108b8565b6040516102da91906125db565b60405180910390f35b3480156102ef57600080fd5b506102f86108e7565b6040516103059190612709565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612580565b6108f0565b60405161034291906125db565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612724565b610927565b005b34801561038057600080fd5b5061039b60048036038101906103969190612724565b61093b565b005b3480156103a957600080fd5b506103b261094d565b6040516103bf9190612760565b60405180910390f35b3480156103d457600080fd5b506103dd610971565b6040516103ea9190612760565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190612724565b610997565b60405161042791906125db565b60405180910390f35b34801561043c57600080fd5b506104576004803603810190610452919061277b565b6109b1565b60405161046491906125db565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906127ce565b610a52565b6040516104a1919061267f565b60405180910390f35b3480156104b657600080fd5b506104bf610a9a565b005b3480156104cd57600080fd5b506104d6610aae565b6040516104e39190612760565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190612724565b610ad4565b60405161052091906125db565b60405180910390f35b34801561053557600080fd5b5061053e610aee565b60405161054b919061267f565b60405180910390f35b34801561056057600080fd5b50610569610af4565b6040516105769190612760565b60405180910390f35b34801561058b57600080fd5b50610594610b1e565b6040516105a191906124c0565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612860565b610bb0565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612580565b610c5d565b60405161060791906125db565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612580565b610cd4565b60405161064491906125db565b60405180910390f35b34801561065957600080fd5b50610662610cf7565b60405161066f919061267f565b60405180910390f35b34801561068457600080fd5b5061068d610cfd565b005b34801561069b57600080fd5b506106b660048036038101906106b191906127ce565b610d35565b6040516106c391906125db565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee91906127ce565b610d89565b60405161070091906125db565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061277b565b610ddd565b60405161073d91906125db565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190612860565b610e7e565b005b34801561077b57600080fd5b50610796600480360381019061079191906128ad565b610f2b565b6040516107a3919061267f565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906127ce565b610fb2565b005b6060600380546107e49061291c565b80601f01602080910402602001604051908101604052809291908181526020018280546108109061291c565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600080610872611035565b905061087f81858561103d565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806108c3611035565b90506108d0858285611206565b6108db858585611292565b60019150509392505050565b60006012905090565b6000806108fb611035565b905061091c81858561090d8589610f2b565b610917919061297c565b61103d565b600191505092915050565b61092f611bb2565b61093881611c30565b50565b610943611bb2565b8060128190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006109a1611bb2565b8160138190555060019050919050565b60006109bb611bb2565b60648284866109ca919061297c565b6109d4919061297c565b1115610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90612a22565b60405180910390fd5b818385610a22919061297c565b610a2c919061297c565b600e819055508360108190555082600f8190555081601181905550600190509392505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aa2611bb2565b610aac6000611cb2565b565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ade611bb2565b8160148190555060019050919050565b60135481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b2d9061291c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b599061291c565b8015610ba65780601f10610b7b57610100808354040283529160200191610ba6565b820191906000526020600020905b815481529060010190602001808311610b8957829003601f168201915b5050505050905090565b610bb8611bb2565b60005b82829050811015610c58576000601b6000858585818110610bdf57610bde612a42565b5b9050602002016020810190610bf491906127ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c5090612a71565b915050610bbb565b505050565b600080610c68611035565b90506000610c768286610f2b565b905083811015610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290612b2b565b60405180910390fd5b610cc8828686840361103d565b60019250505092915050565b600080610cdf611035565b9050610cec818585611292565b600191505092915050565b60145481565b610d05611bb2565b6001601e60016101000a81548160ff021916908315150217905550600243610d2d919061297c565b601781905550565b6000610d3f611bb2565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610d93611bb2565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610de7611bb2565b6064828486610df6919061297c565b610e00919061297c565b1115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890612a22565b60405180910390fd5b818385610e4e919061297c565b610e58919061297c565b600a8190555083600c8190555082600b8190555081600d81905550600190509392505050565b610e86611bb2565b60005b82829050811015610f26576001601b6000858585818110610ead57610eac612a42565b5b9050602002016020810190610ec291906127ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f1e90612a71565b915050610e89565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fba611bb2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090612bbd565b60405180910390fd5b61103281611cb2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390612c4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290612ce1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111f9919061267f565b60405180910390a3505050565b60006112128484610f2b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461128c578181101561127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590612d4d565b60405180910390fd5b61128b848484840361103d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890612ddf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790612e71565b60405180910390fd5b8061137a84610a52565b10156113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290612f03565b60405180910390fd5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561145f5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590612f95565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061154357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561155c5750601e60009054906101000a900460ff16155b1561178c577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461178b5760006018546019546115c530610a52565b6115cf9190612fb5565b6115d99190612fb5565b9050601c5481106115ee576115ed81611d78565b5b60006115f930610a52565b9050601d54811061178857600047905061161282611e39565b600081476116209190612fb5565b9050600083601854836116339190612fe9565b61163d9190613072565b9050600060188190555060006019819055506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050509050806116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906130ef565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906130ef565b60405180910390fd5b505050505b50505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061182d5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ba257601e60019054906101000a900460ff16611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061315b565b60405180910390fd5b6013548111156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906131ed565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119715760145461192483610a52565b8261192f919061297c565b1115611970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119679061327f565b60405180910390fd5b5b60004360175411156119b75760646012548361198d9190612fe9565b6119979190613072565b905080601960008282546119ab919061297c565b92505081905550611b87565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611a1457506000600e54115b15611aa0576064600e5483611a299190612fe9565b611a339190613072565b9050600e5460115482611a469190612fe9565b611a509190613072565b60186000828254611a61919061297c565b92505081905550600e54600f5482611a799190612fe9565b611a839190613072565b60196000828254611a94919061297c565b92505081905550611b86565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611afd57506000600a54115b15611b85576064600a5483611b129190612fe9565b611b1c9190613072565b9050600a54600d5482611b2f9190612fe9565b611b399190613072565b60186000828254611b4a919061297c565b92505081905550600a54600b5482611b629190612fe9565b611b6c9190613072565b60196000828254611b7d919061297c565b925050819055505b5b5b8082611b939190612fb5565b9150611ba08430836120b9565b505b611bad8383836120b9565b505050565b611bba611035565b73ffffffffffffffffffffffffffffffffffffffff16611bd8610af4565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c25906132eb565b60405180910390fd5b565b8060026000828254611c429190612fb5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ca7919061267f565b60405180910390a350565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601e60006101000a81548160ff0219169083151502179055506000600282611da29190613072565b905060008183611db29190612fb5565b90506000479050611dc283611e39565b60008147611dd09190612fb5565b9050611ddc8382612319565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611e0f9392919061330b565b60405180910390a1505050506000601e60006101000a81548160ff02191690831515021790555050565b6001601e60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611e7157611e70613342565b5b604051908082528060200260200182016040528015611e9f5781602001602082028036833780820191505090505b5090503081600081518110611eb757611eb6612a42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f809190613386565b81600181518110611f9457611f93612a42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff9307f00000000000000000000000000000000000000000000000000000000000000008461103d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42612048919061297c565b6040518663ffffffff1660e01b81526004016120689594939291906134ac565b600060405180830381600087803b15801561208257600080fd5b505af1158015612096573d6000803e3d6000fd5b50505050506000601e60006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90612ddf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e90612e71565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490612f03565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161230b919061267f565b60405180910390a350505050565b6001601e60006101000a81548160ff02191690831515021790555061235f307f00000000000000000000000000000000000000000000000000000000000000008461103d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806123a9610af4565b426040518863ffffffff1660e01b81526004016123cb96959493929190613506565b60606040518083038185885af11580156123e9573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061240e919061357c565b5050506000601e60006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246a57808201518184015260208101905061244f565b60008484015250505050565b6000601f19601f8301169050919050565b600061249282612430565b61249c818561243b565b93506124ac81856020860161244c565b6124b581612476565b840191505092915050565b600060208201905081810360008301526124da8184612487565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612517826124ec565b9050919050565b6125278161250c565b811461253257600080fd5b50565b6000813590506125448161251e565b92915050565b6000819050919050565b61255d8161254a565b811461256857600080fd5b50565b60008135905061257a81612554565b92915050565b60008060408385031215612597576125966124e2565b5b60006125a585828601612535565b92505060206125b68582860161256b565b9150509250929050565b60008115159050919050565b6125d5816125c0565b82525050565b60006020820190506125f060008301846125cc565b92915050565b6000819050919050565b600061261b612616612611846124ec565b6125f6565b6124ec565b9050919050565b600061262d82612600565b9050919050565b600061263f82612622565b9050919050565b61264f81612634565b82525050565b600060208201905061266a6000830184612646565b92915050565b6126798161254a565b82525050565b60006020820190506126946000830184612670565b92915050565b6000806000606084860312156126b3576126b26124e2565b5b60006126c186828701612535565b93505060206126d286828701612535565b92505060406126e38682870161256b565b9150509250925092565b600060ff82169050919050565b612703816126ed565b82525050565b600060208201905061271e60008301846126fa565b92915050565b60006020828403121561273a576127396124e2565b5b60006127488482850161256b565b91505092915050565b61275a8161250c565b82525050565b60006020820190506127756000830184612751565b92915050565b600080600060608486031215612794576127936124e2565b5b60006127a28682870161256b565b93505060206127b38682870161256b565b92505060406127c48682870161256b565b9150509250925092565b6000602082840312156127e4576127e36124e2565b5b60006127f284828501612535565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126128205761281f6127fb565b5b8235905067ffffffffffffffff81111561283d5761283c612800565b5b60208301915083602082028301111561285957612858612805565b5b9250929050565b60008060208385031215612877576128766124e2565b5b600083013567ffffffffffffffff811115612895576128946124e7565b5b6128a18582860161280a565b92509250509250929050565b600080604083850312156128c4576128c36124e2565b5b60006128d285828601612535565b92505060206128e385828601612535565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061293457607f821691505b602082108103612947576129466128ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129878261254a565b91506129928361254a565b92508282019050808211156129aa576129a961294d565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031300000000000000000000000000000000000000000602082015250565b6000612a0c602c8361243b565b9150612a17826129b0565b604082019050919050565b60006020820190508181036000830152612a3b816129ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612a7c8261254a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612aae57612aad61294d565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b1560258361243b565b9150612b2082612ab9565b604082019050919050565b60006020820190508181036000830152612b4481612b08565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ba760268361243b565b9150612bb282612b4b565b604082019050919050565b60006020820190508181036000830152612bd681612b9a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c3960248361243b565b9150612c4482612bdd565b604082019050919050565b60006020820190508181036000830152612c6881612c2c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ccb60228361243b565b9150612cd682612c6f565b604082019050919050565b60006020820190508181036000830152612cfa81612cbe565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d37601d8361243b565b9150612d4282612d01565b602082019050919050565b60006020820190508181036000830152612d6681612d2a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612dc960258361243b565b9150612dd482612d6d565b604082019050919050565b60006020820190508181036000830152612df881612dbc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e5b60238361243b565b9150612e6682612dff565b604082019050919050565b60006020820190508181036000830152612e8a81612e4e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612eed60268361243b565b9150612ef882612e91565b604082019050919050565b60006020820190508181036000830152612f1c81612ee0565b9050919050565b7f45524332303a207472616e736665722066726f6d20626c61636b6c697374656460008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612f7f60288361243b565b9150612f8a82612f23565b604082019050919050565b60006020820190508181036000830152612fae81612f72565b9050919050565b6000612fc08261254a565b9150612fcb8361254a565b9250828203905081811115612fe357612fe261294d565b5b92915050565b6000612ff48261254a565b9150612fff8361254a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130385761303761294d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061307d8261254a565b91506130888361254a565b92508261309857613097613043565b5b828204905092915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006130d960128361243b565b91506130e4826130a3565b602082019050919050565b60006020820190508181036000830152613108816130cc565b9050919050565b7f54726164696e67206973206e6f7420656e61626c650000000000000000000000600082015250565b600061314560158361243b565b91506131508261310f565b602082019050919050565b6000602082019050818103600083015261317481613138565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006131d760398361243b565b91506131e28261317b565b604082019050919050565b60006020820190508181036000830152613206816131ca565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061326960368361243b565b91506132748261320d565b604082019050919050565b600060208201905081810360008301526132988161325c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132d560208361243b565b91506132e08261329f565b602082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b60006060820190506133206000830186612670565b61332d6020830185612670565b61333a6040830184612670565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506133808161251e565b92915050565b60006020828403121561339c5761339b6124e2565b5b60006133aa84828501613371565b91505092915050565b6000819050919050565b60006133d86133d36133ce846133b3565b6125f6565b61254a565b9050919050565b6133e8816133bd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134238161250c565b82525050565b6000613435838361341a565b60208301905092915050565b6000602082019050919050565b6000613459826133ee565b61346381856133f9565b935061346e8361340a565b8060005b8381101561349f5781516134868882613429565b975061349183613441565b925050600181019050613472565b5085935050505092915050565b600060a0820190506134c16000830188612670565b6134ce60208301876133df565b81810360408301526134e0818661344e565b90506134ef6060830185612751565b6134fc6080830184612670565b9695505050505050565b600060c08201905061351b6000830189612751565b6135286020830188612670565b61353560408301876133df565b61354260608301866133df565b61354f6080830185612751565b61355c60a0830184612670565b979650505050505050565b60008151905061357681612554565b92915050565b600080600060608486031215613595576135946124e2565b5b60006135a386828701613567565b93505060206135b486828701613567565b92505060406135c586828701613567565b915050925092509256fea264697066735822122010aa8218a6e1611f6e5784ca67faed5d576f6b3355097da8644b2e639c3e5c1264736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c806375f0a87411610102578063aa4bde2811610095578063d0d72e9411610064578063d0d72e9414610709578063d338faf314610746578063dd62ed3e1461076f578063f2fde38b146107ac576101e3565b8063aa4bde281461064d578063b9e418e714610678578063bb85c6d11461068f578063c6567835146106cc576101e3565b806395d89b41116100d157806395d89b411461057f5780639bf41135146105aa578063a457c2d7146105d3578063a9059cbb14610610576101e3565b806375f0a874146104c157806381bfdcca146104ec5780638c0b5e22146105295780638da5cb5b14610554576101e3565b806342966c681161017a578063677daa5711610149578063677daa57146103f357806369185d811461043057806370a082311461046d578063715018a6146104aa576101e3565b806342966c681461034b578063471e1c6b1461037457806349bd5a5e1461039d57806361f1c5ba146103c8576101e3565b806318160ddd116101b657806318160ddd1461027b57806323b872dd146102a6578063313ce567146102e3578063395093511461030e576101e3565b806306fdde03146101e8578063095ea7b3146102135780631694505e14610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6107d5565b60405161020a91906124c0565b60405180910390f35b34801561021f57600080fd5b5061023a60048036038101906102359190612580565b610867565b60405161024791906125db565b60405180910390f35b34801561025c57600080fd5b5061026561088a565b6040516102729190612655565b60405180910390f35b34801561028757600080fd5b506102906108ae565b60405161029d919061267f565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c8919061269a565b6108b8565b6040516102da91906125db565b60405180910390f35b3480156102ef57600080fd5b506102f86108e7565b6040516103059190612709565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612580565b6108f0565b60405161034291906125db565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612724565b610927565b005b34801561038057600080fd5b5061039b60048036038101906103969190612724565b61093b565b005b3480156103a957600080fd5b506103b261094d565b6040516103bf9190612760565b60405180910390f35b3480156103d457600080fd5b506103dd610971565b6040516103ea9190612760565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190612724565b610997565b60405161042791906125db565b60405180910390f35b34801561043c57600080fd5b506104576004803603810190610452919061277b565b6109b1565b60405161046491906125db565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906127ce565b610a52565b6040516104a1919061267f565b60405180910390f35b3480156104b657600080fd5b506104bf610a9a565b005b3480156104cd57600080fd5b506104d6610aae565b6040516104e39190612760565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190612724565b610ad4565b60405161052091906125db565b60405180910390f35b34801561053557600080fd5b5061053e610aee565b60405161054b919061267f565b60405180910390f35b34801561056057600080fd5b50610569610af4565b6040516105769190612760565b60405180910390f35b34801561058b57600080fd5b50610594610b1e565b6040516105a191906124c0565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc9190612860565b610bb0565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612580565b610c5d565b60405161060791906125db565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612580565b610cd4565b60405161064491906125db565b60405180910390f35b34801561065957600080fd5b50610662610cf7565b60405161066f919061267f565b60405180910390f35b34801561068457600080fd5b5061068d610cfd565b005b34801561069b57600080fd5b506106b660048036038101906106b191906127ce565b610d35565b6040516106c391906125db565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee91906127ce565b610d89565b60405161070091906125db565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061277b565b610ddd565b60405161073d91906125db565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190612860565b610e7e565b005b34801561077b57600080fd5b50610796600480360381019061079191906128ad565b610f2b565b6040516107a3919061267f565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906127ce565b610fb2565b005b6060600380546107e49061291c565b80601f01602080910402602001604051908101604052809291908181526020018280546108109061291c565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600080610872611035565b905061087f81858561103d565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806108c3611035565b90506108d0858285611206565b6108db858585611292565b60019150509392505050565b60006012905090565b6000806108fb611035565b905061091c81858561090d8589610f2b565b610917919061297c565b61103d565b600191505092915050565b61092f611bb2565b61093881611c30565b50565b610943611bb2565b8060128190555050565b7f0000000000000000000000007a3bd3c2304aef4a70f1869f5dfe7503aec030a081565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006109a1611bb2565b8160138190555060019050919050565b60006109bb611bb2565b60648284866109ca919061297c565b6109d4919061297c565b1115610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90612a22565b60405180910390fd5b818385610a22919061297c565b610a2c919061297c565b600e819055508360108190555082600f8190555081601181905550600190509392505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aa2611bb2565b610aac6000611cb2565b565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610ade611bb2565b8160148190555060019050919050565b60135481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b2d9061291c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b599061291c565b8015610ba65780601f10610b7b57610100808354040283529160200191610ba6565b820191906000526020600020905b815481529060010190602001808311610b8957829003601f168201915b5050505050905090565b610bb8611bb2565b60005b82829050811015610c58576000601b6000858585818110610bdf57610bde612a42565b5b9050602002016020810190610bf491906127ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c5090612a71565b915050610bbb565b505050565b600080610c68611035565b90506000610c768286610f2b565b905083811015610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290612b2b565b60405180910390fd5b610cc8828686840361103d565b60019250505092915050565b600080610cdf611035565b9050610cec818585611292565b600191505092915050565b60145481565b610d05611bb2565b6001601e60016101000a81548160ff021916908315150217905550600243610d2d919061297c565b601781905550565b6000610d3f611bb2565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610d93611bb2565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610de7611bb2565b6064828486610df6919061297c565b610e00919061297c565b1115610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890612a22565b60405180910390fd5b818385610e4e919061297c565b610e58919061297c565b600a8190555083600c8190555082600b8190555081600d81905550600190509392505050565b610e86611bb2565b60005b82829050811015610f26576001601b6000858585818110610ead57610eac612a42565b5b9050602002016020810190610ec291906127ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f1e90612a71565b915050610e89565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610fba611bb2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090612bbd565b60405180910390fd5b61103281611cb2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390612c4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290612ce1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111f9919061267f565b60405180910390a3505050565b60006112128484610f2b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461128c578181101561127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590612d4d565b60405180910390fd5b61128b848484840361103d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890612ddf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790612e71565b60405180910390fd5b8061137a84610a52565b10156113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290612f03565b60405180910390fd5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561145f5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590612f95565b60405180910390fd5b7f0000000000000000000000007a3bd3c2304aef4a70f1869f5dfe7503aec030a073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061154357507f0000000000000000000000007a3bd3c2304aef4a70f1869f5dfe7503aec030a073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561155c5750601e60009054906101000a900460ff16155b1561178c577f0000000000000000000000007a3bd3c2304aef4a70f1869f5dfe7503aec030a073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461178b5760006018546019546115c530610a52565b6115cf9190612fb5565b6115d99190612fb5565b9050601c5481106115ee576115ed81611d78565b5b60006115f930610a52565b9050601d54811061178857600047905061161282611e39565b600081476116209190612fb5565b9050600083601854836116339190612fe9565b61163d9190613072565b9050600060188190555060006019819055506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050509050806116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e1906130ef565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906130ef565b60405180910390fd5b505050505b50505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061182d5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611ba257601e60019054906101000a900460ff16611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061315b565b60405180910390fd5b6013548111156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc906131ed565b60405180910390fd5b7f0000000000000000000000007a3bd3c2304aef4a70f1869f5dfe7503aec030a073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119715760145461192483610a52565b8261192f919061297c565b1115611970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119679061327f565b60405180910390fd5b5b60004360175411156119b75760646012548361198d9190612fe9565b6119979190613072565b905080601960008282546119ab919061297c565b92505081905550611b87565b7f0000000000000000000000007a3bd3c2304aef4a70f1869f5dfe7503aec030a073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611a1457506000600e54115b15611aa0576064600e5483611a299190612fe9565b611a339190613072565b9050600e5460115482611a469190612fe9565b611a509190613072565b60186000828254611a61919061297c565b92505081905550600e54600f5482611a799190612fe9565b611a839190613072565b60196000828254611a94919061297c565b92505081905550611b86565b7f0000000000000000000000007a3bd3c2304aef4a70f1869f5dfe7503aec030a073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611afd57506000600a54115b15611b85576064600a5483611b129190612fe9565b611b1c9190613072565b9050600a54600d5482611b2f9190612fe9565b611b399190613072565b60186000828254611b4a919061297c565b92505081905550600a54600b5482611b629190612fe9565b611b6c9190613072565b60196000828254611b7d919061297c565b925050819055505b5b5b8082611b939190612fb5565b9150611ba08430836120b9565b505b611bad8383836120b9565b505050565b611bba611035565b73ffffffffffffffffffffffffffffffffffffffff16611bd8610af4565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c25906132eb565b60405180910390fd5b565b8060026000828254611c429190612fb5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ca7919061267f565b60405180910390a350565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601e60006101000a81548160ff0219169083151502179055506000600282611da29190613072565b905060008183611db29190612fb5565b90506000479050611dc283611e39565b60008147611dd09190612fb5565b9050611ddc8382612319565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611e0f9392919061330b565b60405180910390a1505050506000601e60006101000a81548160ff02191690831515021790555050565b6001601e60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611e7157611e70613342565b5b604051908082528060200260200182016040528015611e9f5781602001602082028036833780820191505090505b5090503081600081518110611eb757611eb6612a42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f809190613386565b81600181518110611f9457611f93612a42565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461103d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42612048919061297c565b6040518663ffffffff1660e01b81526004016120689594939291906134ac565b600060405180830381600087803b15801561208257600080fd5b505af1158015612096573d6000803e3d6000fd5b50505050506000601e60006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90612ddf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e90612e71565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490612f03565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161230b919061267f565b60405180910390a350505050565b6001601e60006101000a81548160ff02191690831515021790555061235f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461103d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806123a9610af4565b426040518863ffffffff1660e01b81526004016123cb96959493929190613506565b60606040518083038185885af11580156123e9573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061240e919061357c565b5050506000601e60006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246a57808201518184015260208101905061244f565b60008484015250505050565b6000601f19601f8301169050919050565b600061249282612430565b61249c818561243b565b93506124ac81856020860161244c565b6124b581612476565b840191505092915050565b600060208201905081810360008301526124da8184612487565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612517826124ec565b9050919050565b6125278161250c565b811461253257600080fd5b50565b6000813590506125448161251e565b92915050565b6000819050919050565b61255d8161254a565b811461256857600080fd5b50565b60008135905061257a81612554565b92915050565b60008060408385031215612597576125966124e2565b5b60006125a585828601612535565b92505060206125b68582860161256b565b9150509250929050565b60008115159050919050565b6125d5816125c0565b82525050565b60006020820190506125f060008301846125cc565b92915050565b6000819050919050565b600061261b612616612611846124ec565b6125f6565b6124ec565b9050919050565b600061262d82612600565b9050919050565b600061263f82612622565b9050919050565b61264f81612634565b82525050565b600060208201905061266a6000830184612646565b92915050565b6126798161254a565b82525050565b60006020820190506126946000830184612670565b92915050565b6000806000606084860312156126b3576126b26124e2565b5b60006126c186828701612535565b93505060206126d286828701612535565b92505060406126e38682870161256b565b9150509250925092565b600060ff82169050919050565b612703816126ed565b82525050565b600060208201905061271e60008301846126fa565b92915050565b60006020828403121561273a576127396124e2565b5b60006127488482850161256b565b91505092915050565b61275a8161250c565b82525050565b60006020820190506127756000830184612751565b92915050565b600080600060608486031215612794576127936124e2565b5b60006127a28682870161256b565b93505060206127b38682870161256b565b92505060406127c48682870161256b565b9150509250925092565b6000602082840312156127e4576127e36124e2565b5b60006127f284828501612535565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126128205761281f6127fb565b5b8235905067ffffffffffffffff81111561283d5761283c612800565b5b60208301915083602082028301111561285957612858612805565b5b9250929050565b60008060208385031215612877576128766124e2565b5b600083013567ffffffffffffffff811115612895576128946124e7565b5b6128a18582860161280a565b92509250509250929050565b600080604083850312156128c4576128c36124e2565b5b60006128d285828601612535565b92505060206128e385828601612535565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061293457607f821691505b602082108103612947576129466128ed565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129878261254a565b91506129928361254a565b92508282019050808211156129aa576129a961294d565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031300000000000000000000000000000000000000000602082015250565b6000612a0c602c8361243b565b9150612a17826129b0565b604082019050919050565b60006020820190508181036000830152612a3b816129ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612a7c8261254a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612aae57612aad61294d565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b1560258361243b565b9150612b2082612ab9565b604082019050919050565b60006020820190508181036000830152612b4481612b08565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ba760268361243b565b9150612bb282612b4b565b604082019050919050565b60006020820190508181036000830152612bd681612b9a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c3960248361243b565b9150612c4482612bdd565b604082019050919050565b60006020820190508181036000830152612c6881612c2c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ccb60228361243b565b9150612cd682612c6f565b604082019050919050565b60006020820190508181036000830152612cfa81612cbe565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d37601d8361243b565b9150612d4282612d01565b602082019050919050565b60006020820190508181036000830152612d6681612d2a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612dc960258361243b565b9150612dd482612d6d565b604082019050919050565b60006020820190508181036000830152612df881612dbc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e5b60238361243b565b9150612e6682612dff565b604082019050919050565b60006020820190508181036000830152612e8a81612e4e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612eed60268361243b565b9150612ef882612e91565b604082019050919050565b60006020820190508181036000830152612f1c81612ee0565b9050919050565b7f45524332303a207472616e736665722066726f6d20626c61636b6c697374656460008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612f7f60288361243b565b9150612f8a82612f23565b604082019050919050565b60006020820190508181036000830152612fae81612f72565b9050919050565b6000612fc08261254a565b9150612fcb8361254a565b9250828203905081811115612fe357612fe261294d565b5b92915050565b6000612ff48261254a565b9150612fff8361254a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130385761303761294d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061307d8261254a565b91506130888361254a565b92508261309857613097613043565b5b828204905092915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006130d960128361243b565b91506130e4826130a3565b602082019050919050565b60006020820190508181036000830152613108816130cc565b9050919050565b7f54726164696e67206973206e6f7420656e61626c650000000000000000000000600082015250565b600061314560158361243b565b91506131508261310f565b602082019050919050565b6000602082019050818103600083015261317481613138565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006131d760398361243b565b91506131e28261317b565b604082019050919050565b60006020820190508181036000830152613206816131ca565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061326960368361243b565b91506132748261320d565b604082019050919050565b600060208201905081810360008301526132988161325c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132d560208361243b565b91506132e08261329f565b602082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b60006060820190506133206000830186612670565b61332d6020830185612670565b61333a6040830184612670565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506133808161251e565b92915050565b60006020828403121561339c5761339b6124e2565b5b60006133aa84828501613371565b91505092915050565b6000819050919050565b60006133d86133d36133ce846133b3565b6125f6565b61254a565b9050919050565b6133e8816133bd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134238161250c565b82525050565b6000613435838361341a565b60208301905092915050565b6000602082019050919050565b6000613459826133ee565b61346381856133f9565b935061346e8361340a565b8060005b8381101561349f5781516134868882613429565b975061349183613441565b925050600181019050613472565b5085935050505092915050565b600060a0820190506134c16000830188612670565b6134ce60208301876133df565b81810360408301526134e0818661344e565b90506134ef6060830185612751565b6134fc6080830184612670565b9695505050505050565b600060c08201905061351b6000830189612751565b6135286020830188612670565b61353560408301876133df565b61354260608301866133df565b61354f6080830185612751565b61355c60a0830184612670565b979650505050505050565b60008151905061357681612554565b92915050565b600080600060608486031215613595576135946124e2565b5b60006135a386828701613567565b93505060206135b486828701613567565b92505060406135c586828701613567565b915050925092509256fea264697066735822122010aa8218a6e1611f6e5784ca67faed5d576f6b3355097da8644b2e639c3e5c1264736f6c63430008100033

Deployed Bytecode Sourcemap

26576:11056:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17894:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20169:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27660:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19033:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20993:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18875:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22709:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36719:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36597:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27718:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27477:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37204:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36022:569;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18059:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15153:103;;;;;;;;;;;;;:::i;:::-;;27377:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37394:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27240:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14505:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17718:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37004:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21793:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19613:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27307:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34953:113;;;;;;;;;;;;;:::i;:::-;;35074:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35264:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35450:564;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36808:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19206:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15411:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17894:102;17950:13;17983:5;17976:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17894:102;:::o;20169:244::-;20290:4;20312:13;20328:12;:10;:12::i;:::-;20312:28;;20351:32;20360:5;20367:7;20376:6;20351:8;:32::i;:::-;20401:4;20394:11;;;20169:244;;;;:::o;27660:51::-;;;:::o;19033:110::-;19096:7;19123:12;;19116:19;;19033:110;:::o;20993:297::-;21126:4;21143:15;21161:12;:10;:12::i;:::-;21143:30;;21184:38;21200:4;21206:7;21215:6;21184:15;:38::i;:::-;21233:27;21243:4;21249:2;21253:6;21233:9;:27::i;:::-;21278:4;21271:11;;;20993:297;;;;;:::o;18875:93::-;18933:5;18958:2;18951:9;;18875:93;:::o;22709:272::-;22826:4;22848:13;22864:12;:10;:12::i;:::-;22848:28;;22887:64;22896:5;22903:7;22940:10;22912:25;22922:5;22929:7;22912:9;:25::i;:::-;:38;;;;:::i;:::-;22887:8;:64::i;:::-;22969:4;22962:11;;;22709:272;;;;:::o;36719:81::-;14391:13;:11;:13::i;:::-;36779::::1;36785:6;36779:5;:13::i;:::-;36719:81:::0;:::o;36597:116::-;14391:13;:11;:13::i;:::-;36699:6:::1;36677:19;:28;;;;36597:116:::0;:::o;27718:38::-;;;:::o;27477:89::-;;;;;;;;;;;;;:::o;37204:182::-;37306:4;14391:13;:11;:13::i;:::-;37342:12:::1;37328:11;:26;;;;37374:4;37367:11;;37204:182:::0;;;:::o;36022:569::-;36181:4;14391:13;:11;:13::i;:::-;36276:3:::1;36259:12;36240:16;36221;:35;;;;:::i;:::-;:50;;;;:::i;:::-;36220:59;;36198:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;36416:12;36397:16;36378;:35;;;;:::i;:::-;:50;;;;:::i;:::-;36362:13;:66;;;;36459:16;36439:17;:36;;;;36506:16;36486:17;:36;;;;36549:12;36533:13;:28;;;;36579:4;36572:11;;36022:569:::0;;;;;:::o;18059:177::-;18178:7;18210:9;:18;18220:7;18210:18;;;;;;;;;;;;;;;;18203:25;;18059:177;;;:::o;15153:103::-;14391:13;:11;:13::i;:::-;15218:30:::1;15245:1;15218:18;:30::i;:::-;15153:103::o:0;27377:93::-;;;;;;;;;;;;;:::o;37394:198::-;37504:4;14391:13;:11;:13::i;:::-;37544:16:::1;37526:15;:34;;;;37580:4;37573:11;;37394:198:::0;;;:::o;27240:60::-;;;;:::o;14505:87::-;14551:7;14578:6;;;;;;;;;;;14571:13;;14505:87;:::o;17718:106::-;17776:13;17809:7;17802:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17718:106;:::o;37004:192::-;14391:13;:11;:13::i;:::-;37093:9:::1;37088:101;37112:8;;:15;;37108:1;:19;37088:101;;;37172:5;37149:7;:20;37157:8;;37166:1;37157:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;37149:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;37129:3;;;;;:::i;:::-;;;;37088:101;;;;37004:192:::0;;:::o;21793:507::-;21915:4;21937:13;21953:12;:10;:12::i;:::-;21937:28;;21976:24;22003:25;22013:5;22020:7;22003:9;:25::i;:::-;21976:52;;22081:15;22061:16;:35;;22039:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22197:60;22206:5;22213:7;22241:15;22222:16;:34;22197:8;:60::i;:::-;22288:4;22281:11;;;;21793:507;;;;:::o;19613:236::-;19730:4;19752:13;19768:12;:10;:12::i;:::-;19752:28;;19791;19801:5;19808:2;19812:6;19791:9;:28::i;:::-;19837:4;19830:11;;;19613:236;;;;:::o;27307:63::-;;;;:::o;34953:113::-;14391:13;:11;:13::i;:::-;35018:4:::1;35006:9;;:16;;;;;;;;;;;;;;;;;;35057:1;35042:12;:16;;;;:::i;:::-;35033:6;:25;;;;34953:113::o:0;35074:182::-;35177:4;14391:13;:11;:13::i;:::-;35217:9:::1;35199:15;;:27;;;;;;;;;;;;;;;;;;35244:4;35237:11;;35074:182:::0;;;:::o;35264:178::-;35363:4;14391:13;:11;:13::i;:::-;35403:9:::1;35385:15;;:27;;;;;;;;;;;;;;;;;;35430:4;35423:11;;35264:178:::0;;;:::o;35450:564::-;35608:4;14391:13;:11;:13::i;:::-;35703:3:::1;35686:12;35667:16;35648;:35;;;;:::i;:::-;:50;;;;:::i;:::-;35647:59;;35625:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;35842:12;35823:16;35804;:35;;;;:::i;:::-;:50;;;;:::i;:::-;35789:12;:65;;;;35884:16;35865;:35;;;;35930:16;35911;:35;;;;35972:12;35957;:27;;;;36002:4;35995:11;;35450:564:::0;;;;;:::o;36808:188::-;14391:13;:11;:13::i;:::-;36894:9:::1;36889:100;36913:8;;:15;;36909:1;:19;36889:100;;;36973:4;36950:7;:20;36958:8;;36967:1;36958:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;36950:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;36930:3;;;;;:::i;:::-;;;;36889:100;;;;36808:188:::0;;:::o;19206:201::-;19340:7;19372:11;:18;19384:5;19372:18;;;;;;;;;;;;;;;:27;19391:7;19372:27;;;;;;;;;;;;;;;;19365:34;;19206:201;;;;:::o;15411:238::-;14391:13;:11;:13::i;:::-;15534:1:::1;15514:22;;:8;:22;;::::0;15492:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15613:28;15632:8;15613:18;:28::i;:::-;15411:238:::0;:::o;13298:98::-;13351:7;13378:10;13371:17;;13298:98;:::o;24612:380::-;24765:1;24748:19;;:5;:19;;;24740:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24846:1;24827:21;;:7;:21;;;24819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24930:6;24900:11;:18;24912:5;24900:18;;;;;;;;;;;;;;;:27;24919:7;24900:27;;;;;;;;;;;;;;;:36;;;;24968:7;24952:32;;24961:5;24952:32;;;24977:6;24952:32;;;;;;:::i;:::-;;;;;;;;24612:380;;;:::o;25283:502::-;25418:24;25445:25;25455:5;25462:7;25445:9;:25::i;:::-;25418:52;;25505:17;25485:16;:37;25481:297;;25585:6;25565:16;:26;;25539:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;25700:51;25709:5;25716:7;25744:6;25725:16;:25;25700:8;:51::i;:::-;25481:297;25407:378;25283:502;;;:::o;29869:3684::-;30017:1;30001:18;;:4;:18;;;29993:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30094:1;30080:16;;:2;:16;;;30072:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30188:6;30169:15;30179:4;30169:9;:15::i;:::-;:25;;30147:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;30294:7;:13;30302:4;30294:13;;;;;;;;;;;;;;;;;;;;;;;;;30293:14;:30;;;;;30312:7;:11;30320:2;30312:11;;;;;;;;;;;;;;;;;;;;;;;;;30311:12;30293:30;30271:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;30447:13;30439:21;;:4;:21;;;:44;;;;30470:13;30464:19;;:2;:19;;;30439:44;30438:84;;;;;30506:16;;;;;;;;;;;30505:17;30438:84;30416:1623;;;30569:13;30561:21;;:4;:21;;;30557:1467;;30607:32;30788:14;;30742:18;;30642:72;30686:4;30642:9;:72::i;:::-;:118;;;;:::i;:::-;:160;;;;:::i;:::-;30607:195;;30908:30;;30855:24;:83;30825:229;;30989:41;31005:24;30989:15;:41::i;:::-;30825:229;31076:14;31093:24;31111:4;31093:9;:24::i;:::-;31076:41;;31154:24;;31144:6;:34;31140:865;;31207:25;31235:21;31207:49;;31283:25;31301:6;31283:17;:25::i;:::-;31335:18;31409:17;31356:21;:70;;;;:::i;:::-;31335:91;;31455:19;31538:6;31491:14;;31478:10;:27;;;;:::i;:::-;31477:67;;;;:::i;:::-;31455:89;;31588:1;31571:14;:18;;;;31637:1;31616:18;:22;;;;31665:9;31685:11;;;;;;;;;;;31677:25;;:38;31703:11;31677:38;;;;;;;;;;;;;;;;;;;;;;;31665:50;;31750:4;31742:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;31819:15;;;;;;;;;;;31811:29;;:108;31871:21;31811:108;;;;;;;;;;;;;;;;;;;;;;;31804:115;;31954:4;31946:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;31180:825;;;;31140:865;30584:1440;;30557:1467;30416:1623;32057:18;:24;32076:4;32057:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32085:18;:22;32104:2;32085:22;;;;;;;;;;;;;;;;;;;;;;;;;32057:50;32051:1449;;32133:9;;;;;;;;;;;32125:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;32218:11;;32208:6;:21;;32182:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32349:13;32341:21;;:4;:21;;;32337:233;;32441:15;;32423:13;32433:2;32423:9;:13::i;:::-;32414:6;:22;;;;:::i;:::-;32413:43;;32383:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;32337:233;32584:12;32630;32621:6;;:21;32617:778;;;32703:3;32680:19;;32671:6;:28;;;;:::i;:::-;32670:36;;;;:::i;:::-;32663:43;;32747:4;32725:18;;:26;;;;;;;:::i;:::-;;;;;;;;32617:778;;;32796:13;32790:19;;:2;:19;;;:40;;;;;32829:1;32813:13;;:17;32790:40;32786:609;;;32885:3;32868:13;;32859:6;:22;;;;:::i;:::-;32858:30;;;;:::i;:::-;32851:37;;32950:13;;32933;;32926:4;:20;;;;:::i;:::-;32925:38;;;;:::i;:::-;32907:14;;:56;;;;;;;:::i;:::-;;;;;;;;33075:13;;33033:17;;33026:4;:24;;;;:::i;:::-;33025:63;;;;:::i;:::-;32982:18;;:106;;;;;;;:::i;:::-;;;;;;;;32786:609;;;33135:13;33127:21;;:4;:21;;;:41;;;;;33167:1;33152:12;;:16;33127:41;33123:272;;;33222:3;33206:12;;33197:6;:21;;;;:::i;:::-;33196:29;;;;:::i;:::-;33189:36;;33286:12;;33270;;33263:4;:19;;;;:::i;:::-;33262:36;;;;:::i;:::-;33244:14;;:54;;;;;;;:::i;:::-;;;;;;;;33367:12;;33347:16;;33340:4;:23;;;;:::i;:::-;33339:40;;;;:::i;:::-;33317:18;;:62;;;;;;;:::i;:::-;;;;;;;;33123:272;32786:609;32617:778;33427:4;33418:6;:13;;;;:::i;:::-;33409:22;;33446:42;33462:4;33476;33483;33446:15;:42::i;:::-;32110:1390;32051:1449;33512:33;33528:4;33534:2;33538:6;33512:15;:33::i;:::-;29869:3684;;;:::o;14670:132::-;14745:12;:10;:12::i;:::-;14734:23;;:7;:5;:7::i;:::-;:23;;;14726:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14670:132::o;24026:148::-;24101:6;24085:12;;:22;;;;;;;:::i;:::-;;;;;;;;24155:1;24123:43;;24140:4;24123:43;;;24159:6;24123:43;;;;;;:::i;:::-;;;;;;;;24026:148;:::o;15809:191::-;15883:16;15902:6;;;;;;;;;;;15883:25;;15928:8;15919:6;;:17;;;;;;;;;;;;;;;;;;15983:8;15952:40;;15973:8;15952:40;;;;;;;;;;;;15872:128;15809:191;:::o;33561:474::-;28378:4;28359:16;;:23;;;;;;;;;;;;;;;;;;33647:12:::1;33686:1;33663:20;:24;;;;:::i;:::-;33647:41;;33699:17;33743:4;33720:20;:27;;;;:::i;:::-;33699:49;;33761:22;33786:21;33761:46;;33820:23;33838:4;33820:17;:23::i;:::-;33856:18;33902:14;33878:21;:38;;;;:::i;:::-;33856:61;;33930:36;33944:9;33955:10;33930:13;:36::i;:::-;33984:43;33999:4;34005:10;34017:9;33984:43;;;;;;;;:::i;:::-;;;;;;;;33636:399;;;;28424:5:::0;28405:16;;:24;;;;;;;;;;;;;;;;;;33561:474;:::o;34043:496::-;28378:4;28359:16;;:23;;;;;;;;;;;;;;;;;;34122:21:::1;34160:1;34146:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34122:40;;34191:4;34173;34178:1;34173:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;34217:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34207:4;34212:1;34207:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;34252:62;34269:4;34284:15;34302:11;34252:8;:62::i;:::-;34327:15;:66;;;34408:11;34434:1;34450:4;34477;34516:3;34498:15;:21;;;;:::i;:::-;34327:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34111:428;28424:5:::0;28405:16;;:24;;;;;;;;;;;;;;;;;;34043:496;:::o;25793:776::-;25940:1;25924:18;;:4;:18;;;25916:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26017:1;26003:16;;:2;:16;;;25995:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26072:19;26094:9;:15;26104:4;26094:15;;;;;;;;;;;;;;;;26072:37;;26157:6;26142:11;:21;;26120:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26297:6;26283:11;:20;26265:9;:15;26275:4;26265:15;;;;;;;;;;;;;;;:38;;;;26500:6;26483:9;:13;26493:2;26483:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26550:2;26535:26;;26544:4;26535:26;;;26554:6;26535:26;;;;;;:::i;:::-;;;;;;;;25905:664;25793:776;;;:::o;34547:398::-;28378:4;28359:16;;:23;;;;;;;;;;;;;;;;;;34664:62:::1;34681:4;34696:15;34714:11;34664:8;:62::i;:::-;34739:15;:31;;;34778:9;34811:4;34831:11;34857:1;34873::::0;34889:7:::1;:5;:7::i;:::-;34911:15;34739:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28424:5:::0;28405:16;;:24;;;;;;;;;;;;;;;;;;34547:398;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:329::-;5885:6;5934:2;5922:9;5913:7;5909:23;5905:32;5902:119;;;5940:79;;:::i;:::-;5902:119;6060:1;6085:53;6130:7;6121:6;6110:9;6106:22;6085:53;:::i;:::-;6075:63;;6031:117;5826:329;;;;:::o;6161:118::-;6248:24;6266:5;6248:24;:::i;:::-;6243:3;6236:37;6161:118;;:::o;6285:222::-;6378:4;6416:2;6405:9;6401:18;6393:26;;6429:71;6497:1;6486:9;6482:17;6473:6;6429:71;:::i;:::-;6285:222;;;;:::o;6513:619::-;6590:6;6598;6606;6655:2;6643:9;6634:7;6630:23;6626:32;6623:119;;;6661:79;;:::i;:::-;6623:119;6781:1;6806:53;6851:7;6842:6;6831:9;6827:22;6806:53;:::i;:::-;6796:63;;6752:117;6908:2;6934:53;6979:7;6970:6;6959:9;6955:22;6934:53;:::i;:::-;6924:63;;6879:118;7036:2;7062:53;7107:7;7098:6;7087:9;7083:22;7062:53;:::i;:::-;7052:63;;7007:118;6513:619;;;;;:::o;7138:329::-;7197:6;7246:2;7234:9;7225:7;7221:23;7217:32;7214:119;;;7252:79;;:::i;:::-;7214:119;7372:1;7397:53;7442:7;7433:6;7422:9;7418:22;7397:53;:::i;:::-;7387:63;;7343:117;7138:329;;;;:::o;7473:117::-;7582:1;7579;7572:12;7596:117;7705:1;7702;7695:12;7719:117;7828:1;7825;7818:12;7859:568;7932:8;7942:6;7992:3;7985:4;7977:6;7973:17;7969:27;7959:122;;8000:79;;:::i;:::-;7959:122;8113:6;8100:20;8090:30;;8143:18;8135:6;8132:30;8129:117;;;8165:79;;:::i;:::-;8129:117;8279:4;8271:6;8267:17;8255:29;;8333:3;8325:4;8317:6;8313:17;8303:8;8299:32;8296:41;8293:128;;;8340:79;;:::i;:::-;8293:128;7859:568;;;;;:::o;8433:559::-;8519:6;8527;8576:2;8564:9;8555:7;8551:23;8547:32;8544:119;;;8582:79;;:::i;:::-;8544:119;8730:1;8719:9;8715:17;8702:31;8760:18;8752:6;8749:30;8746:117;;;8782:79;;:::i;:::-;8746:117;8895:80;8967:7;8958:6;8947:9;8943:22;8895:80;:::i;:::-;8877:98;;;;8673:312;8433:559;;;;;:::o;8998:474::-;9066:6;9074;9123:2;9111:9;9102:7;9098:23;9094:32;9091:119;;;9129:79;;:::i;:::-;9091:119;9249:1;9274:53;9319:7;9310:6;9299:9;9295:22;9274:53;:::i;:::-;9264:63;;9220:117;9376:2;9402:53;9447:7;9438:6;9427:9;9423:22;9402:53;:::i;:::-;9392:63;;9347:118;8998:474;;;;;:::o;9478:180::-;9526:77;9523:1;9516:88;9623:4;9620:1;9613:15;9647:4;9644:1;9637:15;9664:320;9708:6;9745:1;9739:4;9735:12;9725:22;;9792:1;9786:4;9782:12;9813:18;9803:81;;9869:4;9861:6;9857:17;9847:27;;9803:81;9931:2;9923:6;9920:14;9900:18;9897:38;9894:84;;9950:18;;:::i;:::-;9894:84;9715:269;9664:320;;;:::o;9990:180::-;10038:77;10035:1;10028:88;10135:4;10132:1;10125:15;10159:4;10156:1;10149:15;10176:191;10216:3;10235:20;10253:1;10235:20;:::i;:::-;10230:25;;10269:20;10287:1;10269:20;:::i;:::-;10264:25;;10312:1;10309;10305:9;10298:16;;10333:3;10330:1;10327:10;10324:36;;;10340:18;;:::i;:::-;10324:36;10176:191;;;;:::o;10373:231::-;10513:34;10509:1;10501:6;10497:14;10490:58;10582:14;10577:2;10569:6;10565:15;10558:39;10373:231;:::o;10610:366::-;10752:3;10773:67;10837:2;10832:3;10773:67;:::i;:::-;10766:74;;10849:93;10938:3;10849:93;:::i;:::-;10967:2;10962:3;10958:12;10951:19;;10610:366;;;:::o;10982:419::-;11148:4;11186:2;11175:9;11171:18;11163:26;;11235:9;11229:4;11225:20;11221:1;11210:9;11206:17;11199:47;11263:131;11389:4;11263:131;:::i;:::-;11255:139;;10982:419;;;:::o;11407:180::-;11455:77;11452:1;11445:88;11552:4;11549:1;11542:15;11576:4;11573:1;11566:15;11593:233;11632:3;11655:24;11673:5;11655:24;:::i;:::-;11646:33;;11701:66;11694:5;11691:77;11688:103;;11771:18;;:::i;:::-;11688:103;11818:1;11811:5;11807:13;11800:20;;11593:233;;;:::o;11832:224::-;11972:34;11968:1;11960:6;11956:14;11949:58;12041:7;12036:2;12028:6;12024:15;12017:32;11832:224;:::o;12062:366::-;12204:3;12225:67;12289:2;12284:3;12225:67;:::i;:::-;12218:74;;12301:93;12390:3;12301:93;:::i;:::-;12419:2;12414:3;12410:12;12403:19;;12062:366;;;:::o;12434:419::-;12600:4;12638:2;12627:9;12623:18;12615:26;;12687:9;12681:4;12677:20;12673:1;12662:9;12658:17;12651:47;12715:131;12841:4;12715:131;:::i;:::-;12707:139;;12434:419;;;:::o;12859:225::-;12999:34;12995:1;12987:6;12983:14;12976:58;13068:8;13063:2;13055:6;13051:15;13044:33;12859:225;:::o;13090:366::-;13232:3;13253:67;13317:2;13312:3;13253:67;:::i;:::-;13246:74;;13329:93;13418:3;13329:93;:::i;:::-;13447:2;13442:3;13438:12;13431:19;;13090:366;;;:::o;13462:419::-;13628:4;13666:2;13655:9;13651:18;13643:26;;13715:9;13709:4;13705:20;13701:1;13690:9;13686:17;13679:47;13743:131;13869:4;13743:131;:::i;:::-;13735:139;;13462:419;;;:::o;13887:223::-;14027:34;14023:1;14015:6;14011:14;14004:58;14096:6;14091:2;14083:6;14079:15;14072:31;13887:223;:::o;14116:366::-;14258:3;14279:67;14343:2;14338:3;14279:67;:::i;:::-;14272:74;;14355:93;14444:3;14355:93;:::i;:::-;14473:2;14468:3;14464:12;14457:19;;14116:366;;;:::o;14488:419::-;14654:4;14692:2;14681:9;14677:18;14669:26;;14741:9;14735:4;14731:20;14727:1;14716:9;14712:17;14705:47;14769:131;14895:4;14769:131;:::i;:::-;14761:139;;14488:419;;;:::o;14913:221::-;15053:34;15049:1;15041:6;15037:14;15030:58;15122:4;15117:2;15109:6;15105:15;15098:29;14913:221;:::o;15140:366::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15140:366;;;:::o;15512:419::-;15678:4;15716:2;15705:9;15701:18;15693:26;;15765:9;15759:4;15755:20;15751:1;15740:9;15736:17;15729:47;15793:131;15919:4;15793:131;:::i;:::-;15785:139;;15512:419;;;:::o;15937:179::-;16077:31;16073:1;16065:6;16061:14;16054:55;15937:179;:::o;16122:366::-;16264:3;16285:67;16349:2;16344:3;16285:67;:::i;:::-;16278:74;;16361:93;16450:3;16361:93;:::i;:::-;16479:2;16474:3;16470:12;16463:19;;16122:366;;;:::o;16494:419::-;16660:4;16698:2;16687:9;16683:18;16675:26;;16747:9;16741:4;16737:20;16733:1;16722:9;16718:17;16711:47;16775:131;16901:4;16775:131;:::i;:::-;16767:139;;16494:419;;;:::o;16919:224::-;17059:34;17055:1;17047:6;17043:14;17036:58;17128:7;17123:2;17115:6;17111:15;17104:32;16919:224;:::o;17149:366::-;17291:3;17312:67;17376:2;17371:3;17312:67;:::i;:::-;17305:74;;17388:93;17477:3;17388:93;:::i;:::-;17506:2;17501:3;17497:12;17490:19;;17149:366;;;:::o;17521:419::-;17687:4;17725:2;17714:9;17710:18;17702:26;;17774:9;17768:4;17764:20;17760:1;17749:9;17745:17;17738:47;17802:131;17928:4;17802:131;:::i;:::-;17794:139;;17521:419;;;:::o;17946:222::-;18086:34;18082:1;18074:6;18070:14;18063:58;18155:5;18150:2;18142:6;18138:15;18131:30;17946:222;:::o;18174:366::-;18316:3;18337:67;18401:2;18396:3;18337:67;:::i;:::-;18330:74;;18413:93;18502:3;18413:93;:::i;:::-;18531:2;18526:3;18522:12;18515:19;;18174:366;;;:::o;18546:419::-;18712:4;18750:2;18739:9;18735:18;18727:26;;18799:9;18793:4;18789:20;18785:1;18774:9;18770:17;18763:47;18827:131;18953:4;18827:131;:::i;:::-;18819:139;;18546:419;;;:::o;18971:225::-;19111:34;19107:1;19099:6;19095:14;19088:58;19180:8;19175:2;19167:6;19163:15;19156:33;18971:225;:::o;19202:366::-;19344:3;19365:67;19429:2;19424:3;19365:67;:::i;:::-;19358:74;;19441:93;19530:3;19441:93;:::i;:::-;19559:2;19554:3;19550:12;19543:19;;19202:366;;;:::o;19574:419::-;19740:4;19778:2;19767:9;19763:18;19755:26;;19827:9;19821:4;19817:20;19813:1;19802:9;19798:17;19791:47;19855:131;19981:4;19855:131;:::i;:::-;19847:139;;19574:419;;;:::o;19999:227::-;20139:34;20135:1;20127:6;20123:14;20116:58;20208:10;20203:2;20195:6;20191:15;20184:35;19999:227;:::o;20232:366::-;20374:3;20395:67;20459:2;20454:3;20395:67;:::i;:::-;20388:74;;20471:93;20560:3;20471:93;:::i;:::-;20589:2;20584:3;20580:12;20573:19;;20232:366;;;:::o;20604:419::-;20770:4;20808:2;20797:9;20793:18;20785:26;;20857:9;20851:4;20847:20;20843:1;20832:9;20828:17;20821:47;20885:131;21011:4;20885:131;:::i;:::-;20877:139;;20604:419;;;:::o;21029:194::-;21069:4;21089:20;21107:1;21089:20;:::i;:::-;21084:25;;21123:20;21141:1;21123:20;:::i;:::-;21118:25;;21167:1;21164;21160:9;21152:17;;21191:1;21185:4;21182:11;21179:37;;;21196:18;;:::i;:::-;21179:37;21029:194;;;;:::o;21229:348::-;21269:7;21292:20;21310:1;21292:20;:::i;:::-;21287:25;;21326:20;21344:1;21326:20;:::i;:::-;21321:25;;21514:1;21446:66;21442:74;21439:1;21436:81;21431:1;21424:9;21417:17;21413:105;21410:131;;;21521:18;;:::i;:::-;21410:131;21569:1;21566;21562:9;21551:20;;21229:348;;;;:::o;21583:180::-;21631:77;21628:1;21621:88;21728:4;21725:1;21718:15;21752:4;21749:1;21742:15;21769:185;21809:1;21826:20;21844:1;21826:20;:::i;:::-;21821:25;;21860:20;21878:1;21860:20;:::i;:::-;21855:25;;21899:1;21889:35;;21904:18;;:::i;:::-;21889:35;21946:1;21943;21939:9;21934:14;;21769:185;;;;:::o;21960:168::-;22100:20;22096:1;22088:6;22084:14;22077:44;21960:168;:::o;22134:366::-;22276:3;22297:67;22361:2;22356:3;22297:67;:::i;:::-;22290:74;;22373:93;22462:3;22373:93;:::i;:::-;22491:2;22486:3;22482:12;22475:19;;22134:366;;;:::o;22506:419::-;22672:4;22710:2;22699:9;22695:18;22687:26;;22759:9;22753:4;22749:20;22745:1;22734:9;22730:17;22723:47;22787:131;22913:4;22787:131;:::i;:::-;22779:139;;22506:419;;;:::o;22931:171::-;23071:23;23067:1;23059:6;23055:14;23048:47;22931:171;:::o;23108:366::-;23250:3;23271:67;23335:2;23330:3;23271:67;:::i;:::-;23264:74;;23347:93;23436:3;23347:93;:::i;:::-;23465:2;23460:3;23456:12;23449:19;;23108:366;;;:::o;23480:419::-;23646:4;23684:2;23673:9;23669:18;23661:26;;23733:9;23727:4;23723:20;23719:1;23708:9;23704:17;23697:47;23761:131;23887:4;23761:131;:::i;:::-;23753:139;;23480:419;;;:::o;23905:244::-;24045:34;24041:1;24033:6;24029:14;24022:58;24114:27;24109:2;24101:6;24097:15;24090:52;23905:244;:::o;24155:366::-;24297:3;24318:67;24382:2;24377:3;24318:67;:::i;:::-;24311:74;;24394:93;24483:3;24394:93;:::i;:::-;24512:2;24507:3;24503:12;24496:19;;24155:366;;;:::o;24527:419::-;24693:4;24731:2;24720:9;24716:18;24708:26;;24780:9;24774:4;24770:20;24766:1;24755:9;24751:17;24744:47;24808:131;24934:4;24808:131;:::i;:::-;24800:139;;24527:419;;;:::o;24952:241::-;25092:34;25088:1;25080:6;25076:14;25069:58;25161:24;25156:2;25148:6;25144:15;25137:49;24952:241;:::o;25199:366::-;25341:3;25362:67;25426:2;25421:3;25362:67;:::i;:::-;25355:74;;25438:93;25527:3;25438:93;:::i;:::-;25556:2;25551:3;25547:12;25540:19;;25199:366;;;:::o;25571:419::-;25737:4;25775:2;25764:9;25760:18;25752:26;;25824:9;25818:4;25814:20;25810:1;25799:9;25795:17;25788:47;25852:131;25978:4;25852:131;:::i;:::-;25844:139;;25571:419;;;:::o;25996:182::-;26136:34;26132:1;26124:6;26120:14;26113:58;25996:182;:::o;26184:366::-;26326:3;26347:67;26411:2;26406:3;26347:67;:::i;:::-;26340:74;;26423:93;26512:3;26423:93;:::i;:::-;26541:2;26536:3;26532:12;26525:19;;26184:366;;;:::o;26556:419::-;26722:4;26760:2;26749:9;26745:18;26737:26;;26809:9;26803:4;26799:20;26795:1;26784:9;26780:17;26773:47;26837:131;26963:4;26837:131;:::i;:::-;26829:139;;26556:419;;;:::o;26981:442::-;27130:4;27168:2;27157:9;27153:18;27145:26;;27181:71;27249:1;27238:9;27234:17;27225:6;27181:71;:::i;:::-;27262:72;27330:2;27319:9;27315:18;27306:6;27262:72;:::i;:::-;27344;27412:2;27401:9;27397:18;27388:6;27344:72;:::i;:::-;26981:442;;;;;;:::o;27429:180::-;27477:77;27474:1;27467:88;27574:4;27571:1;27564:15;27598:4;27595:1;27588:15;27615:143;27672:5;27703:6;27697:13;27688:22;;27719:33;27746:5;27719:33;:::i;:::-;27615:143;;;;:::o;27764:351::-;27834:6;27883:2;27871:9;27862:7;27858:23;27854:32;27851:119;;;27889:79;;:::i;:::-;27851:119;28009:1;28034:64;28090:7;28081:6;28070:9;28066:22;28034:64;:::i;:::-;28024:74;;27980:128;27764:351;;;;:::o;28121:85::-;28166:7;28195:5;28184:16;;28121:85;;;:::o;28212:158::-;28270:9;28303:61;28321:42;28330:32;28356:5;28330:32;:::i;:::-;28321:42;:::i;:::-;28303:61;:::i;:::-;28290:74;;28212:158;;;:::o;28376:147::-;28471:45;28510:5;28471:45;:::i;:::-;28466:3;28459:58;28376:147;;:::o;28529:114::-;28596:6;28630:5;28624:12;28614:22;;28529:114;;;:::o;28649:184::-;28748:11;28782:6;28777:3;28770:19;28822:4;28817:3;28813:14;28798:29;;28649:184;;;;:::o;28839:132::-;28906:4;28929:3;28921:11;;28959:4;28954:3;28950:14;28942:22;;28839:132;;;:::o;28977:108::-;29054:24;29072:5;29054:24;:::i;:::-;29049:3;29042:37;28977:108;;:::o;29091:179::-;29160:10;29181:46;29223:3;29215:6;29181:46;:::i;:::-;29259:4;29254:3;29250:14;29236:28;;29091:179;;;;:::o;29276:113::-;29346:4;29378;29373:3;29369:14;29361:22;;29276:113;;;:::o;29425:732::-;29544:3;29573:54;29621:5;29573:54;:::i;:::-;29643:86;29722:6;29717:3;29643:86;:::i;:::-;29636:93;;29753:56;29803:5;29753:56;:::i;:::-;29832:7;29863:1;29848:284;29873:6;29870:1;29867:13;29848:284;;;29949:6;29943:13;29976:63;30035:3;30020:13;29976:63;:::i;:::-;29969:70;;30062:60;30115:6;30062:60;:::i;:::-;30052:70;;29908:224;29895:1;29892;29888:9;29883:14;;29848:284;;;29852:14;30148:3;30141:10;;29549:608;;;29425:732;;;;:::o;30163:831::-;30426:4;30464:3;30453:9;30449:19;30441:27;;30478:71;30546:1;30535:9;30531:17;30522:6;30478:71;:::i;:::-;30559:80;30635:2;30624:9;30620:18;30611:6;30559:80;:::i;:::-;30686:9;30680:4;30676:20;30671:2;30660:9;30656:18;30649:48;30714:108;30817:4;30808:6;30714:108;:::i;:::-;30706:116;;30832:72;30900:2;30889:9;30885:18;30876:6;30832:72;:::i;:::-;30914:73;30982:3;30971:9;30967:19;30958:6;30914:73;:::i;:::-;30163:831;;;;;;;;:::o;31000:807::-;31249:4;31287:3;31276:9;31272:19;31264:27;;31301:71;31369:1;31358:9;31354:17;31345:6;31301:71;:::i;:::-;31382:72;31450:2;31439:9;31435:18;31426:6;31382:72;:::i;:::-;31464:80;31540:2;31529:9;31525:18;31516:6;31464:80;:::i;:::-;31554;31630:2;31619:9;31615:18;31606:6;31554:80;:::i;:::-;31644:73;31712:3;31701:9;31697:19;31688:6;31644:73;:::i;:::-;31727;31795:3;31784:9;31780:19;31771:6;31727:73;:::i;:::-;31000:807;;;;;;;;;:::o;31813:143::-;31870:5;31901:6;31895:13;31886:22;;31917:33;31944:5;31917:33;:::i;:::-;31813:143;;;;:::o;31962:663::-;32050:6;32058;32066;32115:2;32103:9;32094:7;32090:23;32086:32;32083:119;;;32121:79;;:::i;:::-;32083:119;32241:1;32266:64;32322:7;32313:6;32302:9;32298:22;32266:64;:::i;:::-;32256:74;;32212:128;32379:2;32405:64;32461:7;32452:6;32441:9;32437:22;32405:64;:::i;:::-;32395:74;;32350:129;32518:2;32544:64;32600:7;32591:6;32580:9;32576:22;32544:64;:::i;:::-;32534:74;;32489:129;31962:663;;;;;:::o

Swarm Source

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