ETH Price: $2,298.27 (-5.16%)

Token

WizChilla (CHILLA)
 

Overview

Max Total Supply

10,000,000,000 CHILLA

Holders

159

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
75,000,000 CHILLA

Value
$0.00
0xafaece6f00fb8039b73739b8870997f08300f47c
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:
WIZCHILLA

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-18
*/

/*
https://t.me/WizChilla_Portal

http://wizchilla.com/
*/
// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.17;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    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 (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract WIZCHILLA is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public enableEarlySellTax = true;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    // Seller Map
    mapping(address => uint256) private _holderFirstBuyTimestamp;

    // Blacklist Map
    mapping(address => bool) private _blacklist;
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public earlySellLiquidityFee;
    uint256 public earlySellMarketingFee;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    // block number of opened trading
    uint256 launchedAt;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("WizChilla", "CHILLA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 25;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 25;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 _earlySellLiquidityFee = 0;
        uint256 _earlySellMarketingFee = 0;

        uint256 totalSupply = 10_000_000_000 ether;

        maxTransactionAmount = 10_000_000_0 ether; // 1% max tx
        maxWallet = 20_000_000_0 ether; // 2% maxwallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swapwallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        earlySellLiquidityFee = _earlySellLiquidityFee;
        earlySellMarketingFee = _earlySellMarketingFee;

        marketingWallet = address(0x7393BDEd17d8d51C894E9AbCED1C3716ed47D961); // set as marketing wallet
        devWallet = address(0x7393BDEd17d8d51C894E9AbCED1C3716ed47D961); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function getSellEarlyMarketingFee() public view returns (uint256) {
        return enableEarlySellTax ? earlySellMarketingFee : sellMarketingFee;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 50, "Must keep fees at 50% or less");
    }

    function setEarlySellTax(bool onoff) external onlyOwner {
        enableEarlySellTax = onoff;
    }

    function updateMarketingWallet(
        address newMarketingWallet
    ) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 15) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.5%"
        );
        maxWallet = newNum * (10 ** 18);
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10 ** 18);
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function blacklistAccount(
        address account,
        bool isBlacklisted
    ) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee,
        uint256 _earlySellLiquidityFee,
        uint256 _earlySellMarketingFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        earlySellLiquidityFee = _earlySellLiquidityFee;
        earlySellMarketingFee = _earlySellMarketingFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    event BoughtEarly(address indexed sniper);

    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(
            !_blacklist[to] && !_blacklist[from],
            "You have been blacklisted from transfering tokens"
        );
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        // anti bot logic
        if (
            block.number <= (launchedAt + 0) &&
            to != uniswapV2Pair &&
            to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)
        ) {
            _blacklist[to] = false;
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

    function getBuyLiquidityFee() public view returns (uint256) {
        return buyLiquidityFee;
    }

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

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"tokensIntoLiquidity","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlySellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBuyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSellEarlyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_earlySellMarketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055506001600b60036101000a81548160ff0219169083151502179055506001600f5f6101000a81548160ff021916908315150217905550348015610092575f80fd5b506040518060400160405280600981526020017f57697a4368696c6c6100000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4348494c4c410000000000000000000000000000000000000000000000000000815250816003908161010e9190610d34565b50806004908161011e9190610d34565b5050505f61013061060360201b60201c565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505f737a250d5630b4cf539739df2c5dacb4c659f2488d90506101f681600161060a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610273573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102979190610e61565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103209190610e61565b6040518363ffffffff1660e01b815260040161033d929190610e9b565b6020604051808303815f875af1158015610359573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037d9190610e61565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506103c360a051600161060a60201b60201c565b6103d660a05160016106fe60201b60201c565b5f601990505f805f601990505f805f805f6b204fce5e3e2502611000000090506a52b7d2dcc80cd2e40000006008819055506aa56fa5b99019a5c8000000600a8190555061271060058261042a9190610eef565b6104349190610f5d565b6009819055508860118190555087601281905550866013819055506013546012546011546104629190610f8d565b61046c9190610f8d565b60108190555085601581905550846016819055508360178190555060175460165460155461049a9190610f8d565b6104a49190610f8d565b6014819055508260188190555081601981905550737393bded17d8d51c894e9abced1c3716ed47d96160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737393bded17d8d51c894e9abced1c3716ed47d96160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061057e61057161079c60201b60201c565b60016107c460201b60201c565b61058f3060016107c460201b60201c565b6105a261dead60016107c460201b60201c565b6105c06105b361079c60201b60201c565b600161060a60201b60201c565b6105d130600161060a60201b60201c565b6105e461dead600161060a60201b60201c565b6105f4338261090660201b60201c565b50505050505050505050611163565b5f33905090565b61061861060360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d9061101a565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107d261060360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610860576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108579061101a565b60405180910390fd5b80601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516108fa9190611052565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b906110b5565b60405180910390fd5b6109855f8383610a9860201b60201c565b61099a81600254610a9d60201b90919060201c565b6002819055506109ef815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610a9d60201b90919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a8c91906110e2565b60405180910390a35050565b505050565b5f808284610aab9190610f8d565b905083811015610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790611145565b60405180910390fd5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610b7557607f821691505b602082108103610b8857610b87610b31565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610bea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610baf565b610bf48683610baf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610c38610c33610c2e84610c0c565b610c15565b610c0c565b9050919050565b5f819050919050565b610c5183610c1e565b610c65610c5d82610c3f565b848454610bbb565b825550505050565b5f90565b610c79610c6d565b610c84818484610c48565b505050565b5b81811015610ca757610c9c5f82610c71565b600181019050610c8a565b5050565b601f821115610cec57610cbd81610b8e565b610cc684610ba0565b81016020851015610cd5578190505b610ce9610ce185610ba0565b830182610c89565b50505b505050565b5f82821c905092915050565b5f610d0c5f1984600802610cf1565b1980831691505092915050565b5f610d248383610cfd565b9150826002028217905092915050565b610d3d82610afa565b67ffffffffffffffff811115610d5657610d55610b04565b5b610d608254610b5e565b610d6b828285610cab565b5f60209050601f831160018114610d9c575f8415610d8a578287015190505b610d948582610d19565b865550610dfb565b601f198416610daa86610b8e565b5f5b82811015610dd157848901518255600182019150602085019450602081019050610dac565b86831015610dee5784890151610dea601f891682610cfd565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e3082610e07565b9050919050565b610e4081610e26565b8114610e4a575f80fd5b50565b5f81519050610e5b81610e37565b92915050565b5f60208284031215610e7657610e75610e03565b5b5f610e8384828501610e4d565b91505092915050565b610e9581610e26565b82525050565b5f604082019050610eae5f830185610e8c565b610ebb6020830184610e8c565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ef982610c0c565b9150610f0483610c0c565b9250828202610f1281610c0c565b91508282048414831517610f2957610f28610ec2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610f6782610c0c565b9150610f7283610c0c565b925082610f8257610f81610f30565b5b828204905092915050565b5f610f9782610c0c565b9150610fa283610c0c565b9250828201905080821115610fba57610fb9610ec2565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611004602083610fc0565b915061100f82610fd0565b602082019050919050565b5f6020820190508181035f83015261103181610ff8565b9050919050565b5f8115159050919050565b61104c81611038565b82525050565b5f6020820190506110655f830184611043565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61109f601f83610fc0565b91506110aa8261106b565b602082019050919050565b5f6020820190508181035f8301526110cc81611093565b9050919050565b6110dc81610c0c565b82525050565b5f6020820190506110f55f8301846110d3565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f61112f601b83610fc0565b915061113a826110fb565b602082019050919050565b5f6020820190508181035f83015261115c81611123565b9050919050565b60805160a0516156286111b55f395f818161140101528181611c5001528181612eaf01526132bb01525f8181610ecd01528181612e570152818161402801528181614107015261412e01526156285ff3fe60806040526004361061039a575f3560e01c80638ea5220f116101db578063c024666811610101578063e2f456051161009f578063f63696bd1161006e578063f63696bd14610d5b578063f637434214610d85578063f8b45b0514610daf578063ff935af614610dd9576103a1565b8063e2f4560514610cb5578063e884f26014610cdf578063f11a24d314610d09578063f2fde38b14610d33576103a1565b8063c8c8ebe4116100db578063c8c8ebe414610be9578063d257b34f14610c13578063d85ba06314610c4f578063dd62ed3e14610c79576103a1565b8063c024666814610b6f578063c18bc19514610b97578063c876d0b914610bbf576103a1565b8063a0d82dc511610179578063a9059cbb11610148578063a9059cbb14610aa5578063aacebbe314610ae1578063b62496f514610b09578063bbc0c74214610b45576103a1565b8063a0d82dc5146109ed578063a265777814610a17578063a457c2d714610a3f578063a4d15b6414610a7b576103a1565b806395d89b41116101b557806395d89b41146109475780639a7a23d6146109715780639c3b4fdc146109995780639fccce32146109c3576103a1565b80638ea5220f146108cb57806392136913146108f5578063924de9b71461091f576103a1565b80634a62bb65116102c0578063751039fc1161025e5780637d78ba1f1161022d5780637d78ba1f146108395780638095d564146108635780638a8c523c1461088b5780638da5cb5b146108a1576103a1565b8063751039fc146107935780637571336a146107bd57806375f0a874146107e55780637bce5a041461080f576103a1565b80636a486a8e1161029a5780636a486a8e146106ed5780636ddd17131461071757806370a0823114610741578063715018a61461077d576103a1565b80634a62bb651461065d5780634fbee19314610687578063541a43cf146106c3576103a1565b80631f3fed8f116103385780632d5a5d34116103075780632d5a5d34146105a5578063313ce567146105cd57806339509351146105f757806349bd5a5e14610633576103a1565b80631f3fed8f146104ed578063203e727e1461051757806323b872dd1461053f5780632bf3d42d1461057b576103a1565b80631694505e116103745780631694505e1461044757806318160ddd146104715780631816467f1461049b5780631a8145bb146104c3576103a1565b806306fdde03146103a5578063095ea7b3146103cf57806310d5de531461040b576103a1565b366103a157005b5f80fd5b3480156103b0575f80fd5b506103b9610e01565b6040516103c6919061428f565b60405180910390f35b3480156103da575f80fd5b506103f560048036038101906103f09190614340565b610e91565b6040516104029190614398565b60405180910390f35b348015610416575f80fd5b50610431600480360381019061042c91906143b1565b610eae565b60405161043e9190614398565b60405180910390f35b348015610452575f80fd5b5061045b610ecb565b6040516104689190614437565b60405180910390f35b34801561047c575f80fd5b50610485610eef565b604051610492919061445f565b60405180910390f35b3480156104a6575f80fd5b506104c160048036038101906104bc91906143b1565b610ef8565b005b3480156104ce575f80fd5b506104d761104c565b6040516104e4919061445f565b60405180910390f35b3480156104f8575f80fd5b50610501611052565b60405161050e919061445f565b60405180910390f35b348015610522575f80fd5b5061053d60048036038101906105389190614478565b611058565b005b34801561054a575f80fd5b50610565600480360381019061056091906144a3565b611181565b6040516105729190614398565b60405180910390f35b348015610586575f80fd5b5061058f611255565b60405161059c919061445f565b60405180910390f35b3480156105b0575f80fd5b506105cb60048036038101906105c6919061451d565b61125b565b005b3480156105d8575f80fd5b506105e1611349565b6040516105ee9190614576565b60405180910390f35b348015610602575f80fd5b5061061d60048036038101906106189190614340565b611351565b60405161062a9190614398565b60405180910390f35b34801561063e575f80fd5b506106476113ff565b604051610654919061459e565b60405180910390f35b348015610668575f80fd5b50610671611423565b60405161067e9190614398565b60405180910390f35b348015610692575f80fd5b506106ad60048036038101906106a891906143b1565b611435565b6040516106ba9190614398565b60405180910390f35b3480156106ce575f80fd5b506106d7611487565b6040516106e4919061445f565b60405180910390f35b3480156106f8575f80fd5b5061070161148d565b60405161070e919061445f565b60405180910390f35b348015610722575f80fd5b5061072b611493565b6040516107389190614398565b60405180910390f35b34801561074c575f80fd5b50610767600480360381019061076291906143b1565b6114a6565b604051610774919061445f565b60405180910390f35b348015610788575f80fd5b506107916114eb565b005b34801561079e575f80fd5b506107a761163e565b6040516107b49190614398565b60405180910390f35b3480156107c8575f80fd5b506107e360048036038101906107de919061451d565b6116f5565b005b3480156107f0575f80fd5b506107f96117e3565b604051610806919061459e565b60405180910390f35b34801561081a575f80fd5b50610823611808565b604051610830919061445f565b60405180910390f35b348015610844575f80fd5b5061084d61180e565b60405161085a919061445f565b60405180910390f35b34801561086e575f80fd5b50610889600480360381019061088491906145b7565b611834565b005b348015610896575f80fd5b5061089f61194d565b005b3480156108ac575f80fd5b506108b5611a22565b6040516108c2919061459e565b60405180910390f35b3480156108d6575f80fd5b506108df611a4a565b6040516108ec919061459e565b60405180910390f35b348015610900575f80fd5b50610909611a6f565b604051610916919061445f565b60405180910390f35b34801561092a575f80fd5b5061094560048036038101906109409190614607565b611a75565b005b348015610952575f80fd5b5061095b611b28565b604051610968919061428f565b60405180910390f35b34801561097c575f80fd5b506109976004803603810190610992919061451d565b611bb8565b005b3480156109a4575f80fd5b506109ad611cea565b6040516109ba919061445f565b60405180910390f35b3480156109ce575f80fd5b506109d7611cf0565b6040516109e4919061445f565b60405180910390f35b3480156109f8575f80fd5b50610a01611cf6565b604051610a0e919061445f565b60405180910390f35b348015610a22575f80fd5b50610a3d6004803603810190610a389190614607565b611cfc565b005b348015610a4a575f80fd5b50610a656004803603810190610a609190614340565b611daf565b604051610a729190614398565b60405180910390f35b348015610a86575f80fd5b50610a8f611e77565b604051610a9c9190614398565b60405180910390f35b348015610ab0575f80fd5b50610acb6004803603810190610ac69190614340565b611e8a565b604051610ad89190614398565b60405180910390f35b348015610aec575f80fd5b50610b076004803603810190610b0291906143b1565b611ea7565b005b348015610b14575f80fd5b50610b2f6004803603810190610b2a91906143b1565b611ffb565b604051610b3c9190614398565b60405180910390f35b348015610b50575f80fd5b50610b59612017565b604051610b669190614398565b60405180910390f35b348015610b7a575f80fd5b50610b956004803603810190610b90919061451d565b61202a565b005b348015610ba2575f80fd5b50610bbd6004803603810190610bb89190614478565b612166565b005b348015610bca575f80fd5b50610bd361228f565b604051610be09190614398565b60405180910390f35b348015610bf4575f80fd5b50610bfd6122a1565b604051610c0a919061445f565b60405180910390f35b348015610c1e575f80fd5b50610c396004803603810190610c349190614478565b6122a7565b604051610c469190614398565b60405180910390f35b348015610c5a575f80fd5b50610c63612415565b604051610c70919061445f565b60405180910390f35b348015610c84575f80fd5b50610c9f6004803603810190610c9a9190614632565b61241b565b604051610cac919061445f565b60405180910390f35b348015610cc0575f80fd5b50610cc961249d565b604051610cd6919061445f565b60405180910390f35b348015610cea575f80fd5b50610cf36124a3565b604051610d009190614398565b60405180910390f35b348015610d14575f80fd5b50610d1d61255a565b604051610d2a919061445f565b60405180910390f35b348015610d3e575f80fd5b50610d596004803603810190610d5491906143b1565b612560565b005b348015610d66575f80fd5b50610d6f612722565b604051610d7c919061445f565b60405180910390f35b348015610d90575f80fd5b50610d9961272b565b604051610da6919061445f565b60405180910390f35b348015610dba575f80fd5b50610dc3612731565b604051610dd0919061445f565b60405180910390f35b348015610de4575f80fd5b50610dff6004803603810190610dfa9190614670565b612737565b005b606060038054610e1090614714565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3c90614714565b8015610e875780601f10610e5e57610100808354040283529160200191610e87565b820191905f5260205f20905b815481529060010190602001808311610e6a57829003601f168201915b5050505050905090565b5f610ea4610e9d612860565b8484612867565b6001905092915050565b601f602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610f00612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f859061478e565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b5481565b601a5481565b611060612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061478e565b60405180910390fd5b670de0b6b3a76400006103e86005611104610eef565b61110e91906147d9565b6111189190614847565b6111229190614847565b811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b906148e7565b60405180910390fd5b670de0b6b3a76400008161117891906147d9565b60088190555050565b5f61118d848484612a2a565b61124a84611199612860565b611245856040518060600160405280602881526020016155a66028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6111fc612860565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138699092919063ffffffff16565b612867565b600190509392505050565b60195481565b611263612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061478e565b60405180910390fd5b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6012905090565b5f6113f561135d612860565b846113f08560015f61136d612860565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138cb90919063ffffffff16565b612867565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b5f601e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b60145481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6114f3612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115789061478e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f611647612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc9061478e565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6116fd612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461178b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117829061478e565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b5f600b60039054906101000a900460ff1661182b5760155461182f565b6019545b905090565b61183c612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c19061478e565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546118f29190614905565b6118fc9190614905565b60108190555060326010541115611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90614982565b60405180910390fd5b505050565b611955612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da9061478e565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601d81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611a7d612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061478e565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611b3790614714565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6390614714565b8015611bae5780601f10611b8557610100808354040283529160200191611bae565b820191905f5260205f20905b815481529060010190602001808311611b9157829003601f168201915b5050505050905090565b611bc0612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c459061478e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614a10565b60405180910390fd5b611ce68282613928565b5050565b60135481565b601c5481565b60175481565b611d04612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d899061478e565b60405180910390fd5b80600b60036101000a81548160ff02191690831515021790555050565b5f611e6d611dbb612860565b84611e68856040518060600160405280602581526020016155ce6025913960015f611de4612860565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138699092919063ffffffff16565b612867565b6001905092915050565b600b60039054906101000a900460ff1681565b5f611e9d611e96612860565b8484612a2a565b6001905092915050565b611eaf612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f349061478e565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60208052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b612032612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b79061478e565b60405180910390fd5b80601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161215a9190614398565b60405180910390a25050565b61216e612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f39061478e565b60405180910390fd5b670de0b6b3a76400006103e8600f612212610eef565b61221c91906147d9565b6122269190614847565b6122309190614847565b811015612272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226990614a9e565b60405180910390fd5b670de0b6b3a76400008161228691906147d9565b600a8190555050565b600f5f9054906101000a900460ff1681565b60085481565b5f6122b0612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123359061478e565b60405180910390fd5b620186a0600161234c610eef565b61235691906147d9565b6123609190614847565b8210156123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239990614b2c565b60405180910390fd5b6103e860056123af610eef565b6123b991906147d9565b6123c39190614847565b821115612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90614bba565b60405180910390fd5b8160098190555060019050919050565b60105481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6124ac612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461253a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125319061478e565b60405180910390fd5b5f600f5f6101000a81548160ff0219169083151502179055506001905090565b60125481565b612568612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ed9061478e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614c48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f601254905090565b60165481565b600a5481565b61273f612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c49061478e565b60405180910390fd5b84601581905550836016819055508260178190555081601881905550806019819055506017546016546015546128039190614905565b61280d9190614905565b60148190555060636014541115612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090614cb0565b60405180910390fd5b5050505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90614d3e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614dcc565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a1d919061445f565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8f90614e5a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afd90614ee8565b60405180910390fd5b600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015612ba45750600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b612be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bda90614f76565b60405180910390fd5b5f8103612bfa57612bf583835f6139c6565b613864565b600b5f9054906101000a900460ff16156132a157612c16611a22565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c845750612c54611a22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cbc57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cf6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0f5750600560149054906101000a900460ff16155b156132a057600b60019054906101000a900460ff16612e0357601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612dc35750601e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df990614fde565b60405180910390fd5b5b600f5f9054906101000a900460ff1615612fc657612e1f611a22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ea657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612efe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fc55743600c5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7990615092565b60405180910390fd5b43600c5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130635750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561310a576008548111156130ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a490615120565b60405180910390fd5b600a546130b9836114a6565b826130c49190614905565b1115613105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fc90615188565b60405180910390fd5b61329f565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156131a75750601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156131f6576008548111156131f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e890615216565b60405180910390fd5b61329e565b601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661329d57600a54613250836114a6565b8261325b9190614905565b111561329c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329390615188565b60405180910390fd5b5b5b5b5b5b5f601d546132af9190614905565b431115801561330a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133565750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156133b0575f600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b5f6133ba306114a6565b90505f60095482101590508080156133de5750600b60029054906101000a900460ff165b80156133f75750600560149054906101000a900460ff16155b801561344a575060205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561349d5750601e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156134f05750601e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613533576001600560146101000a81548160ff021916908315150217905550613518613c4f565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff16159050601e5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806135e25750601e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156135eb575f90505b5f81156138545760205f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561364957505f601454115b1561371357613676606461366860145488613e7d90919063ffffffff16565b613ef490919063ffffffff16565b90506014546016548261368991906147d9565b6136939190614847565b601b5f8282546136a39190614905565b92505081905550601454601754826136bb91906147d9565b6136c59190614847565b601c5f8282546136d59190614905565b92505081905550601454601554826136ed91906147d9565b6136f79190614847565b601a5f8282546137079190614905565b92505081905550613831565b60205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561376a57505f601054115b1561383057613797606461378960105488613e7d90919063ffffffff16565b613ef490919063ffffffff16565b9050601054601254826137aa91906147d9565b6137b49190614847565b601b5f8282546137c49190614905565b92505081905550601054601354826137dc91906147d9565b6137e69190614847565b601c5f8282546137f69190614905565b925050819055506010546011548261380e91906147d9565b6138189190614847565b601a5f8282546138289190614905565b925050819055505b5b5f811115613845576138448730836139c6565b5b80856138519190615234565b94505b61385f8787876139c6565b505050505b505050565b5f8383111582906138b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a7919061428f565b60405180910390fd5b505f83856138be9190615234565b9050809150509392505050565b5f8082846138d99190614905565b90508381101561391e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613915906152b1565b60405180910390fd5b8091505092915050565b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2b90614e5a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9990614ee8565b60405180910390fd5b613aad838383613f3d565b613b1681604051806060016040528060268152602001615580602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138699092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550613ba5815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138cb90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613c42919061445f565b60405180910390a3505050565b5f613c59306114a6565b90505f601c54601a54601b54613c6f9190614905565b613c799190614905565b90505f80831480613c8957505f82145b15613c9657505050613e7b565b6014600954613ca591906147d9565b831115613cbe576014600954613cbb91906147d9565b92505b5f600283601b5486613cd091906147d9565b613cda9190614847565b613ce49190614847565b90505f613cfa8286613f4290919063ffffffff16565b90505f479050613d0982613f8b565b5f613d1d8247613f4290919063ffffffff16565b90505f613d4787613d39601c5485613e7d90919063ffffffff16565b613ef490919063ffffffff16565b90505f601b819055505f601a819055505f601c8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613da3906152fc565b5f6040518083038185875af1925050503d805f8114613ddd576040519150601f19603f3d011682016040523d82523d5f602084013e613de2565b606091505b50508096505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e2d906152fc565b5f6040518083038185875af1925050503d805f8114613e67576040519150601f19603f3d011682016040523d82523d5f602084013e613e6c565b606091505b50508096505050505050505050505b565b5f808303613e8d575f9050613eee565b5f8284613e9a91906147d9565b9050828482613ea99190614847565b14613ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ee090615380565b60405180910390fd5b809150505b92915050565b5f613f3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506141be565b905092915050565b505050565b5f613f8383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613869565b905092915050565b5f600267ffffffffffffffff811115613fa757613fa661539e565b5b604051908082528060200260200182016040528015613fd55781602001602082028036833780820191505090505b50905030815f81518110613fec57613feb6153cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561408f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140b3919061540c565b816001815181106140c7576140c66153cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061412c307f000000000000000000000000000000000000000000000000000000000000000084612867565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161418d959493929190615527565b5f604051808303815f87803b1580156141a4575f80fd5b505af11580156141b6573d5f803e3d5ffd5b505050505050565b5f8083118290614204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141fb919061428f565b60405180910390fd5b505f83856142129190614847565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6142618261421f565b61426b8185614229565b935061427b818560208601614239565b61428481614247565b840191505092915050565b5f6020820190508181035f8301526142a78184614257565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6142dc826142b3565b9050919050565b6142ec816142d2565b81146142f6575f80fd5b50565b5f81359050614307816142e3565b92915050565b5f819050919050565b61431f8161430d565b8114614329575f80fd5b50565b5f8135905061433a81614316565b92915050565b5f8060408385031215614356576143556142af565b5b5f614363858286016142f9565b92505060206143748582860161432c565b9150509250929050565b5f8115159050919050565b6143928161437e565b82525050565b5f6020820190506143ab5f830184614389565b92915050565b5f602082840312156143c6576143c56142af565b5b5f6143d3848285016142f9565b91505092915050565b5f819050919050565b5f6143ff6143fa6143f5846142b3565b6143dc565b6142b3565b9050919050565b5f614410826143e5565b9050919050565b5f61442182614406565b9050919050565b61443181614417565b82525050565b5f60208201905061444a5f830184614428565b92915050565b6144598161430d565b82525050565b5f6020820190506144725f830184614450565b92915050565b5f6020828403121561448d5761448c6142af565b5b5f61449a8482850161432c565b91505092915050565b5f805f606084860312156144ba576144b96142af565b5b5f6144c7868287016142f9565b93505060206144d8868287016142f9565b92505060406144e98682870161432c565b9150509250925092565b6144fc8161437e565b8114614506575f80fd5b50565b5f81359050614517816144f3565b92915050565b5f8060408385031215614533576145326142af565b5b5f614540858286016142f9565b925050602061455185828601614509565b9150509250929050565b5f60ff82169050919050565b6145708161455b565b82525050565b5f6020820190506145895f830184614567565b92915050565b614598816142d2565b82525050565b5f6020820190506145b15f83018461458f565b92915050565b5f805f606084860312156145ce576145cd6142af565b5b5f6145db8682870161432c565b93505060206145ec8682870161432c565b92505060406145fd8682870161432c565b9150509250925092565b5f6020828403121561461c5761461b6142af565b5b5f61462984828501614509565b91505092915050565b5f8060408385031215614648576146476142af565b5b5f614655858286016142f9565b9250506020614666858286016142f9565b9150509250929050565b5f805f805f60a08688031215614689576146886142af565b5b5f6146968882890161432c565b95505060206146a78882890161432c565b94505060406146b88882890161432c565b93505060606146c98882890161432c565b92505060806146da8882890161432c565b9150509295509295909350565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061472b57607f821691505b60208210810361473e5761473d6146e7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614778602083614229565b915061478382614744565b602082019050919050565b5f6020820190508181035f8301526147a58161476c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6147e38261430d565b91506147ee8361430d565b92508282026147fc8161430d565b91508282048414831517614813576148126147ac565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6148518261430d565b915061485c8361430d565b92508261486c5761486b61481a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6148d1602f83614229565b91506148dc82614877565b604082019050919050565b5f6020820190508181035f8301526148fe816148c5565b9050919050565b5f61490f8261430d565b915061491a8361430d565b9250828201905080821115614932576149316147ac565b5b92915050565b7f4d757374206b656570206665657320617420353025206f72206c6573730000005f82015250565b5f61496c601d83614229565b915061497782614938565b602082019050919050565b5f6020820190508181035f83015261499981614960565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6149fa603983614229565b9150614a05826149a0565b604082019050919050565b5f6020820190508181035f830152614a27816149ee565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614a88602483614229565b9150614a9382614a2e565b604082019050919050565b5f6020820190508181035f830152614ab581614a7c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614b16603583614229565b9150614b2182614abc565b604082019050919050565b5f6020820190508181035f830152614b4381614b0a565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614ba4603483614229565b9150614baf82614b4a565b604082019050919050565b5f6020820190508181035f830152614bd181614b98565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614c32602683614229565b9150614c3d82614bd8565b604082019050919050565b5f6020820190508181035f830152614c5f81614c26565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c6573730000005f82015250565b5f614c9a601d83614229565b9150614ca582614c66565b602082019050919050565b5f6020820190508181035f830152614cc781614c8e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614d28602483614229565b9150614d3382614cce565b604082019050919050565b5f6020820190508181035f830152614d5581614d1c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614db6602283614229565b9150614dc182614d5c565b604082019050919050565b5f6020820190508181035f830152614de381614daa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614e44602583614229565b9150614e4f82614dea565b604082019050919050565b5f6020820190508181035f830152614e7181614e38565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614ed2602383614229565b9150614edd82614e78565b604082019050919050565b5f6020820190508181035f830152614eff81614ec6565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d20745f8201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b5f614f60603183614229565b9150614f6b82614f06565b604082019050919050565b5f6020820190508181035f830152614f8d81614f54565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614fc8601683614229565b9150614fd382614f94565b602082019050919050565b5f6020820190508181035f830152614ff581614fbc565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f61507c604983614229565b915061508782614ffc565b606082019050919050565b5f6020820190508181035f8301526150a981615070565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f61510a603583614229565b9150615115826150b0565b604082019050919050565b5f6020820190508181035f830152615137816150fe565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615172601383614229565b915061517d8261513e565b602082019050919050565b5f6020820190508181035f83015261519f81615166565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615200603683614229565b915061520b826151a6565b604082019050919050565b5f6020820190508181035f83015261522d816151f4565b9050919050565b5f61523e8261430d565b91506152498361430d565b9250828203905081811115615261576152606147ac565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f61529b601b83614229565b91506152a682615267565b602082019050919050565b5f6020820190508181035f8301526152c88161528f565b9050919050565b5f81905092915050565b50565b5f6152e75f836152cf565b91506152f2826152d9565b5f82019050919050565b5f615306826152dc565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61536a602183614229565b915061537582615310565b604082019050919050565b5f6020820190508181035f8301526153978161535e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615406816142e3565b92915050565b5f60208284031215615421576154206142af565b5b5f61542e848285016153f8565b91505092915050565b5f819050919050565b5f61545a61545561545084615437565b6143dc565b61430d565b9050919050565b61546a81615440565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6154a2816142d2565b82525050565b5f6154b38383615499565b60208301905092915050565b5f602082019050919050565b5f6154d582615470565b6154df818561547a565b93506154ea8361548a565b805f5b8381101561551a57815161550188826154a8565b975061550c836154bf565b9250506001810190506154ed565b5085935050505092915050565b5f60a08201905061553a5f830188614450565b6155476020830187615461565b818103604083015261555981866154cb565b9050615568606083018561458f565b6155756080830184614450565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209a4df9c181be58dcd65c528a2cd17f210abb122fe5bd5f4b4eea36c1e91cc63c64736f6c634300081a0033

Deployed Bytecode

0x60806040526004361061039a575f3560e01c80638ea5220f116101db578063c024666811610101578063e2f456051161009f578063f63696bd1161006e578063f63696bd14610d5b578063f637434214610d85578063f8b45b0514610daf578063ff935af614610dd9576103a1565b8063e2f4560514610cb5578063e884f26014610cdf578063f11a24d314610d09578063f2fde38b14610d33576103a1565b8063c8c8ebe4116100db578063c8c8ebe414610be9578063d257b34f14610c13578063d85ba06314610c4f578063dd62ed3e14610c79576103a1565b8063c024666814610b6f578063c18bc19514610b97578063c876d0b914610bbf576103a1565b8063a0d82dc511610179578063a9059cbb11610148578063a9059cbb14610aa5578063aacebbe314610ae1578063b62496f514610b09578063bbc0c74214610b45576103a1565b8063a0d82dc5146109ed578063a265777814610a17578063a457c2d714610a3f578063a4d15b6414610a7b576103a1565b806395d89b41116101b557806395d89b41146109475780639a7a23d6146109715780639c3b4fdc146109995780639fccce32146109c3576103a1565b80638ea5220f146108cb57806392136913146108f5578063924de9b71461091f576103a1565b80634a62bb65116102c0578063751039fc1161025e5780637d78ba1f1161022d5780637d78ba1f146108395780638095d564146108635780638a8c523c1461088b5780638da5cb5b146108a1576103a1565b8063751039fc146107935780637571336a146107bd57806375f0a874146107e55780637bce5a041461080f576103a1565b80636a486a8e1161029a5780636a486a8e146106ed5780636ddd17131461071757806370a0823114610741578063715018a61461077d576103a1565b80634a62bb651461065d5780634fbee19314610687578063541a43cf146106c3576103a1565b80631f3fed8f116103385780632d5a5d34116103075780632d5a5d34146105a5578063313ce567146105cd57806339509351146105f757806349bd5a5e14610633576103a1565b80631f3fed8f146104ed578063203e727e1461051757806323b872dd1461053f5780632bf3d42d1461057b576103a1565b80631694505e116103745780631694505e1461044757806318160ddd146104715780631816467f1461049b5780631a8145bb146104c3576103a1565b806306fdde03146103a5578063095ea7b3146103cf57806310d5de531461040b576103a1565b366103a157005b5f80fd5b3480156103b0575f80fd5b506103b9610e01565b6040516103c6919061428f565b60405180910390f35b3480156103da575f80fd5b506103f560048036038101906103f09190614340565b610e91565b6040516104029190614398565b60405180910390f35b348015610416575f80fd5b50610431600480360381019061042c91906143b1565b610eae565b60405161043e9190614398565b60405180910390f35b348015610452575f80fd5b5061045b610ecb565b6040516104689190614437565b60405180910390f35b34801561047c575f80fd5b50610485610eef565b604051610492919061445f565b60405180910390f35b3480156104a6575f80fd5b506104c160048036038101906104bc91906143b1565b610ef8565b005b3480156104ce575f80fd5b506104d761104c565b6040516104e4919061445f565b60405180910390f35b3480156104f8575f80fd5b50610501611052565b60405161050e919061445f565b60405180910390f35b348015610522575f80fd5b5061053d60048036038101906105389190614478565b611058565b005b34801561054a575f80fd5b50610565600480360381019061056091906144a3565b611181565b6040516105729190614398565b60405180910390f35b348015610586575f80fd5b5061058f611255565b60405161059c919061445f565b60405180910390f35b3480156105b0575f80fd5b506105cb60048036038101906105c6919061451d565b61125b565b005b3480156105d8575f80fd5b506105e1611349565b6040516105ee9190614576565b60405180910390f35b348015610602575f80fd5b5061061d60048036038101906106189190614340565b611351565b60405161062a9190614398565b60405180910390f35b34801561063e575f80fd5b506106476113ff565b604051610654919061459e565b60405180910390f35b348015610668575f80fd5b50610671611423565b60405161067e9190614398565b60405180910390f35b348015610692575f80fd5b506106ad60048036038101906106a891906143b1565b611435565b6040516106ba9190614398565b60405180910390f35b3480156106ce575f80fd5b506106d7611487565b6040516106e4919061445f565b60405180910390f35b3480156106f8575f80fd5b5061070161148d565b60405161070e919061445f565b60405180910390f35b348015610722575f80fd5b5061072b611493565b6040516107389190614398565b60405180910390f35b34801561074c575f80fd5b50610767600480360381019061076291906143b1565b6114a6565b604051610774919061445f565b60405180910390f35b348015610788575f80fd5b506107916114eb565b005b34801561079e575f80fd5b506107a761163e565b6040516107b49190614398565b60405180910390f35b3480156107c8575f80fd5b506107e360048036038101906107de919061451d565b6116f5565b005b3480156107f0575f80fd5b506107f96117e3565b604051610806919061459e565b60405180910390f35b34801561081a575f80fd5b50610823611808565b604051610830919061445f565b60405180910390f35b348015610844575f80fd5b5061084d61180e565b60405161085a919061445f565b60405180910390f35b34801561086e575f80fd5b50610889600480360381019061088491906145b7565b611834565b005b348015610896575f80fd5b5061089f61194d565b005b3480156108ac575f80fd5b506108b5611a22565b6040516108c2919061459e565b60405180910390f35b3480156108d6575f80fd5b506108df611a4a565b6040516108ec919061459e565b60405180910390f35b348015610900575f80fd5b50610909611a6f565b604051610916919061445f565b60405180910390f35b34801561092a575f80fd5b5061094560048036038101906109409190614607565b611a75565b005b348015610952575f80fd5b5061095b611b28565b604051610968919061428f565b60405180910390f35b34801561097c575f80fd5b506109976004803603810190610992919061451d565b611bb8565b005b3480156109a4575f80fd5b506109ad611cea565b6040516109ba919061445f565b60405180910390f35b3480156109ce575f80fd5b506109d7611cf0565b6040516109e4919061445f565b60405180910390f35b3480156109f8575f80fd5b50610a01611cf6565b604051610a0e919061445f565b60405180910390f35b348015610a22575f80fd5b50610a3d6004803603810190610a389190614607565b611cfc565b005b348015610a4a575f80fd5b50610a656004803603810190610a609190614340565b611daf565b604051610a729190614398565b60405180910390f35b348015610a86575f80fd5b50610a8f611e77565b604051610a9c9190614398565b60405180910390f35b348015610ab0575f80fd5b50610acb6004803603810190610ac69190614340565b611e8a565b604051610ad89190614398565b60405180910390f35b348015610aec575f80fd5b50610b076004803603810190610b0291906143b1565b611ea7565b005b348015610b14575f80fd5b50610b2f6004803603810190610b2a91906143b1565b611ffb565b604051610b3c9190614398565b60405180910390f35b348015610b50575f80fd5b50610b59612017565b604051610b669190614398565b60405180910390f35b348015610b7a575f80fd5b50610b956004803603810190610b90919061451d565b61202a565b005b348015610ba2575f80fd5b50610bbd6004803603810190610bb89190614478565b612166565b005b348015610bca575f80fd5b50610bd361228f565b604051610be09190614398565b60405180910390f35b348015610bf4575f80fd5b50610bfd6122a1565b604051610c0a919061445f565b60405180910390f35b348015610c1e575f80fd5b50610c396004803603810190610c349190614478565b6122a7565b604051610c469190614398565b60405180910390f35b348015610c5a575f80fd5b50610c63612415565b604051610c70919061445f565b60405180910390f35b348015610c84575f80fd5b50610c9f6004803603810190610c9a9190614632565b61241b565b604051610cac919061445f565b60405180910390f35b348015610cc0575f80fd5b50610cc961249d565b604051610cd6919061445f565b60405180910390f35b348015610cea575f80fd5b50610cf36124a3565b604051610d009190614398565b60405180910390f35b348015610d14575f80fd5b50610d1d61255a565b604051610d2a919061445f565b60405180910390f35b348015610d3e575f80fd5b50610d596004803603810190610d5491906143b1565b612560565b005b348015610d66575f80fd5b50610d6f612722565b604051610d7c919061445f565b60405180910390f35b348015610d90575f80fd5b50610d9961272b565b604051610da6919061445f565b60405180910390f35b348015610dba575f80fd5b50610dc3612731565b604051610dd0919061445f565b60405180910390f35b348015610de4575f80fd5b50610dff6004803603810190610dfa9190614670565b612737565b005b606060038054610e1090614714565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3c90614714565b8015610e875780601f10610e5e57610100808354040283529160200191610e87565b820191905f5260205f20905b815481529060010190602001808311610e6a57829003601f168201915b5050505050905090565b5f610ea4610e9d612860565b8484612867565b6001905092915050565b601f602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610f00612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f859061478e565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b5481565b601a5481565b611060612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061478e565b60405180910390fd5b670de0b6b3a76400006103e86005611104610eef565b61110e91906147d9565b6111189190614847565b6111229190614847565b811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b906148e7565b60405180910390fd5b670de0b6b3a76400008161117891906147d9565b60088190555050565b5f61118d848484612a2a565b61124a84611199612860565b611245856040518060600160405280602881526020016155a66028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6111fc612860565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138699092919063ffffffff16565b612867565b600190509392505050565b60195481565b611263612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061478e565b60405180910390fd5b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6012905090565b5f6113f561135d612860565b846113f08560015f61136d612860565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138cb90919063ffffffff16565b612867565b6001905092915050565b7f0000000000000000000000004021716e7b086bca35619f01b7febf837764738e81565b600b5f9054906101000a900460ff1681565b5f601e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b60145481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6114f3612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115789061478e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f611647612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc9061478e565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6116fd612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461178b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117829061478e565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b5f600b60039054906101000a900460ff1661182b5760155461182f565b6019545b905090565b61183c612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c19061478e565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546118f29190614905565b6118fc9190614905565b60108190555060326010541115611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90614982565b60405180910390fd5b505050565b611955612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da9061478e565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601d81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611a7d612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061478e565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611b3790614714565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6390614714565b8015611bae5780601f10611b8557610100808354040283529160200191611bae565b820191905f5260205f20905b815481529060010190602001808311611b9157829003601f168201915b5050505050905090565b611bc0612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c459061478e565b60405180910390fd5b7f0000000000000000000000004021716e7b086bca35619f01b7febf837764738e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614a10565b60405180910390fd5b611ce68282613928565b5050565b60135481565b601c5481565b60175481565b611d04612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d899061478e565b60405180910390fd5b80600b60036101000a81548160ff02191690831515021790555050565b5f611e6d611dbb612860565b84611e68856040518060600160405280602581526020016155ce6025913960015f611de4612860565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138699092919063ffffffff16565b612867565b6001905092915050565b600b60039054906101000a900460ff1681565b5f611e9d611e96612860565b8484612a2a565b6001905092915050565b611eaf612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f349061478e565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60208052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b612032612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b79061478e565b60405180910390fd5b80601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161215a9190614398565b60405180910390a25050565b61216e612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f39061478e565b60405180910390fd5b670de0b6b3a76400006103e8600f612212610eef565b61221c91906147d9565b6122269190614847565b6122309190614847565b811015612272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226990614a9e565b60405180910390fd5b670de0b6b3a76400008161228691906147d9565b600a8190555050565b600f5f9054906101000a900460ff1681565b60085481565b5f6122b0612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123359061478e565b60405180910390fd5b620186a0600161234c610eef565b61235691906147d9565b6123609190614847565b8210156123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239990614b2c565b60405180910390fd5b6103e860056123af610eef565b6123b991906147d9565b6123c39190614847565b821115612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90614bba565b60405180910390fd5b8160098190555060019050919050565b60105481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6124ac612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461253a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125319061478e565b60405180910390fd5b5f600f5f6101000a81548160ff0219169083151502179055506001905090565b60125481565b612568612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ed9061478e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614c48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f601254905090565b60165481565b600a5481565b61273f612860565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c49061478e565b60405180910390fd5b84601581905550836016819055508260178190555081601881905550806019819055506017546016546015546128039190614905565b61280d9190614905565b60148190555060636014541115612859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285090614cb0565b60405180910390fd5b5050505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90614d3e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614dcc565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a1d919061445f565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8f90614e5a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afd90614ee8565b60405180910390fd5b600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015612ba45750600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b612be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bda90614f76565b60405180910390fd5b5f8103612bfa57612bf583835f6139c6565b613864565b600b5f9054906101000a900460ff16156132a157612c16611a22565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c845750612c54611a22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cbc57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cf6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0f5750600560149054906101000a900460ff16155b156132a057600b60019054906101000a900460ff16612e0357601e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612dc35750601e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df990614fde565b60405180910390fd5b5b600f5f9054906101000a900460ff1615612fc657612e1f611a22565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ea657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612efe57507f0000000000000000000000004021716e7b086bca35619f01b7febf837764738e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612fc55743600c5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7990615092565b60405180910390fd5b43600c5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130635750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561310a576008548111156130ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a490615120565b60405180910390fd5b600a546130b9836114a6565b826130c49190614905565b1115613105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fc90615188565b60405180910390fd5b61329f565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156131a75750601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156131f6576008548111156131f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e890615216565b60405180910390fd5b61329e565b601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661329d57600a54613250836114a6565b8261325b9190614905565b111561329c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329390615188565b60405180910390fd5b5b5b5b5b5b5f601d546132af9190614905565b431115801561330a57507f0000000000000000000000004021716e7b086bca35619f01b7febf837764738e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156133565750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156133b0575f600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b5f6133ba306114a6565b90505f60095482101590508080156133de5750600b60029054906101000a900460ff165b80156133f75750600560149054906101000a900460ff16155b801561344a575060205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561349d5750601e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156134f05750601e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613533576001600560146101000a81548160ff021916908315150217905550613518613c4f565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff16159050601e5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806135e25750601e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156135eb575f90505b5f81156138545760205f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561364957505f601454115b1561371357613676606461366860145488613e7d90919063ffffffff16565b613ef490919063ffffffff16565b90506014546016548261368991906147d9565b6136939190614847565b601b5f8282546136a39190614905565b92505081905550601454601754826136bb91906147d9565b6136c59190614847565b601c5f8282546136d59190614905565b92505081905550601454601554826136ed91906147d9565b6136f79190614847565b601a5f8282546137079190614905565b92505081905550613831565b60205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561376a57505f601054115b1561383057613797606461378960105488613e7d90919063ffffffff16565b613ef490919063ffffffff16565b9050601054601254826137aa91906147d9565b6137b49190614847565b601b5f8282546137c49190614905565b92505081905550601054601354826137dc91906147d9565b6137e69190614847565b601c5f8282546137f69190614905565b925050819055506010546011548261380e91906147d9565b6138189190614847565b601a5f8282546138289190614905565b925050819055505b5b5f811115613845576138448730836139c6565b5b80856138519190615234565b94505b61385f8787876139c6565b505050505b505050565b5f8383111582906138b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a7919061428f565b60405180910390fd5b505f83856138be9190615234565b9050809150509392505050565b5f8082846138d99190614905565b90508381101561391e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613915906152b1565b60405180910390fd5b8091505092915050565b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2b90614e5a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a9990614ee8565b60405180910390fd5b613aad838383613f3d565b613b1681604051806060016040528060268152602001615580602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138699092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550613ba5815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546138cb90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613c42919061445f565b60405180910390a3505050565b5f613c59306114a6565b90505f601c54601a54601b54613c6f9190614905565b613c799190614905565b90505f80831480613c8957505f82145b15613c9657505050613e7b565b6014600954613ca591906147d9565b831115613cbe576014600954613cbb91906147d9565b92505b5f600283601b5486613cd091906147d9565b613cda9190614847565b613ce49190614847565b90505f613cfa8286613f4290919063ffffffff16565b90505f479050613d0982613f8b565b5f613d1d8247613f4290919063ffffffff16565b90505f613d4787613d39601c5485613e7d90919063ffffffff16565b613ef490919063ffffffff16565b90505f601b819055505f601a819055505f601c8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613da3906152fc565b5f6040518083038185875af1925050503d805f8114613ddd576040519150601f19603f3d011682016040523d82523d5f602084013e613de2565b606091505b50508096505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e2d906152fc565b5f6040518083038185875af1925050503d805f8114613e67576040519150601f19603f3d011682016040523d82523d5f602084013e613e6c565b606091505b50508096505050505050505050505b565b5f808303613e8d575f9050613eee565b5f8284613e9a91906147d9565b9050828482613ea99190614847565b14613ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ee090615380565b60405180910390fd5b809150505b92915050565b5f613f3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506141be565b905092915050565b505050565b5f613f8383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613869565b905092915050565b5f600267ffffffffffffffff811115613fa757613fa661539e565b5b604051908082528060200260200182016040528015613fd55781602001602082028036833780820191505090505b50905030815f81518110613fec57613feb6153cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561408f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140b3919061540c565b816001815181106140c7576140c66153cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061412c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612867565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161418d959493929190615527565b5f604051808303815f87803b1580156141a4575f80fd5b505af11580156141b6573d5f803e3d5ffd5b505050505050565b5f8083118290614204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141fb919061428f565b60405180910390fd5b505f83856142129190614847565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6142618261421f565b61426b8185614229565b935061427b818560208601614239565b61428481614247565b840191505092915050565b5f6020820190508181035f8301526142a78184614257565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6142dc826142b3565b9050919050565b6142ec816142d2565b81146142f6575f80fd5b50565b5f81359050614307816142e3565b92915050565b5f819050919050565b61431f8161430d565b8114614329575f80fd5b50565b5f8135905061433a81614316565b92915050565b5f8060408385031215614356576143556142af565b5b5f614363858286016142f9565b92505060206143748582860161432c565b9150509250929050565b5f8115159050919050565b6143928161437e565b82525050565b5f6020820190506143ab5f830184614389565b92915050565b5f602082840312156143c6576143c56142af565b5b5f6143d3848285016142f9565b91505092915050565b5f819050919050565b5f6143ff6143fa6143f5846142b3565b6143dc565b6142b3565b9050919050565b5f614410826143e5565b9050919050565b5f61442182614406565b9050919050565b61443181614417565b82525050565b5f60208201905061444a5f830184614428565b92915050565b6144598161430d565b82525050565b5f6020820190506144725f830184614450565b92915050565b5f6020828403121561448d5761448c6142af565b5b5f61449a8482850161432c565b91505092915050565b5f805f606084860312156144ba576144b96142af565b5b5f6144c7868287016142f9565b93505060206144d8868287016142f9565b92505060406144e98682870161432c565b9150509250925092565b6144fc8161437e565b8114614506575f80fd5b50565b5f81359050614517816144f3565b92915050565b5f8060408385031215614533576145326142af565b5b5f614540858286016142f9565b925050602061455185828601614509565b9150509250929050565b5f60ff82169050919050565b6145708161455b565b82525050565b5f6020820190506145895f830184614567565b92915050565b614598816142d2565b82525050565b5f6020820190506145b15f83018461458f565b92915050565b5f805f606084860312156145ce576145cd6142af565b5b5f6145db8682870161432c565b93505060206145ec8682870161432c565b92505060406145fd8682870161432c565b9150509250925092565b5f6020828403121561461c5761461b6142af565b5b5f61462984828501614509565b91505092915050565b5f8060408385031215614648576146476142af565b5b5f614655858286016142f9565b9250506020614666858286016142f9565b9150509250929050565b5f805f805f60a08688031215614689576146886142af565b5b5f6146968882890161432c565b95505060206146a78882890161432c565b94505060406146b88882890161432c565b93505060606146c98882890161432c565b92505060806146da8882890161432c565b9150509295509295909350565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061472b57607f821691505b60208210810361473e5761473d6146e7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614778602083614229565b915061478382614744565b602082019050919050565b5f6020820190508181035f8301526147a58161476c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6147e38261430d565b91506147ee8361430d565b92508282026147fc8161430d565b91508282048414831517614813576148126147ac565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6148518261430d565b915061485c8361430d565b92508261486c5761486b61481a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f6148d1602f83614229565b91506148dc82614877565b604082019050919050565b5f6020820190508181035f8301526148fe816148c5565b9050919050565b5f61490f8261430d565b915061491a8361430d565b9250828201905080821115614932576149316147ac565b5b92915050565b7f4d757374206b656570206665657320617420353025206f72206c6573730000005f82015250565b5f61496c601d83614229565b915061497782614938565b602082019050919050565b5f6020820190508181035f83015261499981614960565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6149fa603983614229565b9150614a05826149a0565b604082019050919050565b5f6020820190508181035f830152614a27816149ee565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614a88602483614229565b9150614a9382614a2e565b604082019050919050565b5f6020820190508181035f830152614ab581614a7c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614b16603583614229565b9150614b2182614abc565b604082019050919050565b5f6020820190508181035f830152614b4381614b0a565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614ba4603483614229565b9150614baf82614b4a565b604082019050919050565b5f6020820190508181035f830152614bd181614b98565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614c32602683614229565b9150614c3d82614bd8565b604082019050919050565b5f6020820190508181035f830152614c5f81614c26565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c6573730000005f82015250565b5f614c9a601d83614229565b9150614ca582614c66565b602082019050919050565b5f6020820190508181035f830152614cc781614c8e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614d28602483614229565b9150614d3382614cce565b604082019050919050565b5f6020820190508181035f830152614d5581614d1c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614db6602283614229565b9150614dc182614d5c565b604082019050919050565b5f6020820190508181035f830152614de381614daa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614e44602583614229565b9150614e4f82614dea565b604082019050919050565b5f6020820190508181035f830152614e7181614e38565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614ed2602383614229565b9150614edd82614e78565b604082019050919050565b5f6020820190508181035f830152614eff81614ec6565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d20745f8201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b5f614f60603183614229565b9150614f6b82614f06565b604082019050919050565b5f6020820190508181035f830152614f8d81614f54565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614fc8601683614229565b9150614fd382614f94565b602082019050919050565b5f6020820190508181035f830152614ff581614fbc565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f61507c604983614229565b915061508782614ffc565b606082019050919050565b5f6020820190508181035f8301526150a981615070565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f61510a603583614229565b9150615115826150b0565b604082019050919050565b5f6020820190508181035f830152615137816150fe565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615172601383614229565b915061517d8261513e565b602082019050919050565b5f6020820190508181035f83015261519f81615166565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615200603683614229565b915061520b826151a6565b604082019050919050565b5f6020820190508181035f83015261522d816151f4565b9050919050565b5f61523e8261430d565b91506152498361430d565b9250828203905081811115615261576152606147ac565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f61529b601b83614229565b91506152a682615267565b602082019050919050565b5f6020820190508181035f8301526152c88161528f565b9050919050565b5f81905092915050565b50565b5f6152e75f836152cf565b91506152f2826152d9565b5f82019050919050565b5f615306826152dc565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61536a602183614229565b915061537582615310565b604082019050919050565b5f6020820190508181035f8301526153978161535e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615406816142e3565b92915050565b5f60208284031215615421576154206142af565b5b5f61542e848285016153f8565b91505092915050565b5f819050919050565b5f61545a61545561545084615437565b6143dc565b61430d565b9050919050565b61546a81615440565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6154a2816142d2565b82525050565b5f6154b38383615499565b60208301905092915050565b5f602082019050919050565b5f6154d582615470565b6154df818561547a565b93506154ea8361548a565b805f5b8381101561551a57815161550188826154a8565b975061550c836154bf565b9250506001810190506154ed565b5085935050505092915050565b5f60a08201905061553a5f830188614450565b6155476020830187615461565b818103604083015261555981866154cb565b9050615568606083018561458f565b6155756080830184614450565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209a4df9c181be58dcd65c528a2cd17f210abb122fe5bd5f4b4eea36c1e91cc63c64736f6c634300081a0033

Deployed Bytecode Sourcemap

30868:16881:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7996:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10229:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32513:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30947:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9116:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38617:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32231:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32191;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38959:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10905:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32148:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39558:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8958:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11768:293;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31005:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31267:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37268:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32105:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31960:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31347:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9287:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23046:148;;;;;;;;;;;;;:::i;:::-;;36782:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38782:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31082:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31853;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36911:153;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37598:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36582:148;;;;;;;;;;;;;:::i;:::-;;22404:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31119:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31995:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37160:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8215:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39244:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31927:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32271:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32071:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38009:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12564:393;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31385:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9643:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38118:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32734:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31307:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40537:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38350:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31771:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31152:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36047:481;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31819:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9906:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31194:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37455:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31890:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23349:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45906:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32033:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31234:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39725:608;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7996:100;8050:13;8083:5;8076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7996:100;:::o;10229:194::-;10337:4;10354:39;10363:12;:10;:12::i;:::-;10377:7;10386:6;10354:8;:39::i;:::-;10411:4;10404:11;;10229:194;;;;:::o;32513:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;30947:51::-;;;:::o;9116:108::-;9177:7;9204:12;;9197:19;;9116:108;:::o;38617:157::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38724:9:::1;;;;;;;;;;;38696:38;;38713:9;38696:38;;;;;;;;;;;;38757:9;38745;;:21;;;;;;;;;;;;;;;;;;38617:157:::0;:::o;32231:33::-;;;;:::o;32191:::-;;;;:::o;38959:277::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39096:4:::1;39088;39083:1;39067:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39066:26;;;;:::i;:::-;39065:35;;;;:::i;:::-;39055:6;:45;;39033:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39219:8;39209:6;:19;;;;:::i;:::-;39186:20;:42;;;;38959:277:::0;:::o;10905:454::-;11045:4;11062:36;11072:6;11080:9;11091:6;11062:9;:36::i;:::-;11109:220;11132:6;11153:12;:10;:12::i;:::-;11180:138;11236:6;11180:138;;;;;;;;;;;;;;;;;:11;:19;11192:6;11180:19;;;;;;;;;;;;;;;:33;11200:12;:10;:12::i;:::-;11180:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;11109:8;:220::i;:::-;11347:4;11340:11;;10905:454;;;;;:::o;32148:36::-;;;;:::o;39558:159::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39696:13:::1;39674:10;:19;39685:7;39674:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;39558:159:::0;;:::o;8958:93::-;9016:5;9041:2;9034:9;;8958:93;:::o;11768:293::-;11881:4;11898:133;11921:12;:10;:12::i;:::-;11948:7;11970:50;12009:10;11970:11;:25;11982:12;:10;:12::i;:::-;11970:25;;;;;;;;;;;;;;;:34;11996:7;11970:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11898:8;:133::i;:::-;12049:4;12042:11;;11768:293;;;;:::o;31005:38::-;;;:::o;31267:33::-;;;;;;;;;;;;;:::o;37268:126::-;37334:4;37358:19;:28;37378:7;37358:28;;;;;;;;;;;;;;;;;;;;;;;;;37351:35;;37268:126;;;:::o;32105:36::-;;;;:::o;31960:28::-;;;;:::o;31347:31::-;;;;;;;;;;;;;:::o;9287:143::-;9377:7;9404:9;:18;9414:7;9404:18;;;;;;;;;;;;;;;;9397:25;;9287:143;;;:::o;23046:148::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23153:1:::1;23116:40;;23137:6;;;;;;;;;;;23116:40;;;;;;;;;;;;23184:1;23167:6;;:19;;;;;;;;;;;;;;;;;;23046:148::o:0;36782:121::-;36834:4;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36868:5:::1;36851:14;;:22;;;;;;;;;;;;;;;;;;36891:4;36884:11;;36782:121:::0;:::o;38782:169::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38939:4:::1;38897:31;:39;38929:6;38897:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38782:169:::0;;:::o;31082:30::-;;;;;;;;;;;;;:::o;31853:::-;;;;:::o;36911:153::-;36968:7;36995:18;;;;;;;;;;;:61;;37040:16;;36995:61;;;37016:21;;36995:61;36988:68;;36911:153;:::o;37598:403::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37766:13:::1;37748:15;:31;;;;37808:13;37790:15;:31;;;;37844:7;37832:9;:19;;;;37913:9;;37895:15;;37877;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;37862:12;:60;;;;37957:2;37941:12;;:18;;37933:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;37598:403:::0;;;:::o;36582:148::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36653:4:::1;36637:13;;:20;;;;;;;;;;;;;;;;;;36682:4;36668:11;;:18;;;;;;;;;;;;;;;;;;36710:12;36697:10;:25;;;;36582:148::o:0;22404:79::-;22442:7;22469:6;;;;;;;;;;;22462:13;;22404:79;:::o;31119:24::-;;;;;;;;;;;;;:::o;31995:31::-;;;;:::o;37160:100::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37245:7:::1;37231:11;;:21;;;;;;;;;;;;;;;;;;37160:100:::0;:::o;8215:104::-;8271:13;8304:7;8297:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8215:104;:::o;39244:306::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39390:13:::1;39382:21;;:4;:21;;::::0;39360:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39501:41;39530:4;39536:5;39501:28;:41::i;:::-;39244:306:::0;;:::o;31927:24::-;;;;:::o;32271:27::-;;;;:::o;32071:25::-;;;;:::o;38009:101::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38097:5:::1;38076:18;;:26;;;;;;;;;;;;;;;;;;38009:101:::0;:::o;12564:393::-;12682:4;12699:228;12722:12;:10;:12::i;:::-;12749:7;12771:145;12828:15;12771:145;;;;;;;;;;;;;;;;;:11;:25;12783:12;:10;:12::i;:::-;12771:25;;;;;;;;;;;;;;;:34;12797:7;12771:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;12699:8;:228::i;:::-;12945:4;12938:11;;12564:393;;;;:::o;31385:37::-;;;;;;;;;;;;;:::o;9643:200::-;9754:4;9771:42;9781:12;:10;:12::i;:::-;9795:9;9806:6;9771:9;:42::i;:::-;9831:4;9824:11;;9643:200;;;;:::o;38118:224::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38271:15:::1;;;;;;;;;;;38228:59;;38251:18;38228:59;;;;;;;;;;;;38316:18;38298:15;;:36;;;;;;;;;;;;;;;;;;38118:224:::0;:::o;32734:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;31307:33::-;;;;;;;;;;;;;:::o;40537:182::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40653:8:::1;40622:19;:28;40642:7;40622:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40693:7;40677:34;;;40702:8;40677:34;;;;;;:::i;:::-;;;;;;;;40537:182:::0;;:::o;38350:259::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38491:4:::1;38483;38477:2;38461:13;:11;:13::i;:::-;:18;;;;:::i;:::-;38460:27;;;;:::i;:::-;38459:36;;;;:::i;:::-;38449:6;:46;;38427:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;38592:8;38582:6;:19;;;;:::i;:::-;38570:9;:31;;;;38350:259:::0;:::o;31771:39::-;;;;;;;;;;;;;:::o;31152:35::-;;;;:::o;36047:481::-;36144:4;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36218:6:::1;36213:1;36197:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36196:28;;;;:::i;:::-;36183:9;:41;;36161:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;36373:4;36368:1;36352:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36351:26;;;;:::i;:::-;36338:9;:39;;36316:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;36489:9;36468:18;:30;;;;36516:4;36509:11;;36047:481:::0;;;:::o;31819:27::-;;;;:::o;9906:176::-;10020:7;10047:11;:18;10059:5;10047:18;;;;;;;;;;;;;;;:27;10066:7;10047:27;;;;;;;;;;;;;;;;10040:34;;9906:176;;;;:::o;31194:33::-;;;;:::o;37455:135::-;37515:4;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37555:5:::1;37532:20;;:28;;;;;;;;;;;;;;;;;;37578:4;37571:11;;37455:135:::0;:::o;31890:30::-;;;;:::o;23349:281::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23472:1:::1;23452:22;;:8;:22;;::::0;23430:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23585:8;23556:38;;23577:6;;;;;;;;;;;23556:38;;;;;;;;;;;;23614:8;23605:6;;:17;;;;;;;;;;;;;;;;;;23349:281:::0;:::o;45906:101::-;45957:7;45984:15;;45977:22;;45906:101;:::o;32033:31::-;;;;:::o;31234:24::-;;;;:::o;39725:608::-;22626:12;:10;:12::i;:::-;22616:22;;:6;;;;;;;;;;;:22;;;22608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39977:13:::1;39958:16;:32;;;;40020:13;40001:16;:32;;;;40057:7;40044:10;:20;;;;40099:22;40075:21;:46;;;;40156:22;40132:21;:46;;;;40243:10;;40224:16;;40205;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40189:13;:64;;;;40289:2;40272:13;;:19;;40264:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39725:608:::0;;;;;:::o;167:98::-;220:7;247:10;240:17;;167:98;:::o;15948:380::-;16101:1;16084:19;;:5;:19;;;16076:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16182:1;16163:21;;:7;:21;;;16155:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16266:6;16236:11;:18;16248:5;16236:18;;;;;;;;;;;;;;;:27;16255:7;16236:27;;;;;;;;;;;;;;;:36;;;;16304:7;16288:32;;16297:5;16288:32;;;16313:6;16288:32;;;;;;:::i;:::-;;;;;;;;15948:380;;;:::o;40777:5121::-;40925:1;40909:18;;:4;:18;;;40901:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41002:1;40988:16;;:2;:16;;;40980:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41078:10;:14;41089:2;41078:14;;;;;;;;;;;;;;;;;;;;;;;;;41077:15;:36;;;;;41097:10;:16;41108:4;41097:16;;;;;;;;;;;;;;;;;;;;;;;;;41096:17;41077:36;41055:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;41215:1;41205:6;:11;41201:93;;41233:28;41249:4;41255:2;41259:1;41233:15;:28::i;:::-;41276:7;;41201:93;41310:14;;;;;;;;;;;41306:2487;;;41371:7;:5;:7::i;:::-;41363:15;;:4;:15;;;;:49;;;;;41405:7;:5;:7::i;:::-;41399:13;;:2;:13;;;;41363:49;:86;;;;;41447:1;41433:16;;:2;:16;;;;41363:86;:128;;;;;41484:6;41470:21;;:2;:21;;;;41363:128;:158;;;;;41513:8;;;;;;;;;;;41512:9;41363:158;41341:2441;;;41561:13;;;;;;;;;;;41556:223;;41633:19;:25;41653:4;41633:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41662:19;:23;41682:2;41662:23;;;;;;;;;;;;;;;;;;;;;;;;;41633:52;41599:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41556:223;41935:20;;;;;;;;;;;41931:641;;;42016:7;:5;:7::i;:::-;42010:13;;:2;:13;;;;:72;;;;;42066:15;42052:30;;:2;:30;;;;42010:72;:129;;;;;42125:13;42111:28;;:2;:28;;;;42010:129;41980:573;;;42303:12;42228:28;:39;42257:9;42228:39;;;;;;;;;;;;;;;;:87;42190:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42517:12;42475:28;:39;42504:9;42475:39;;;;;;;;;;;;;;;:54;;;;41980:573;41931:641;42646:25;:31;42672:4;42646:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42703:31;:35;42735:2;42703:35;;;;;;;;;;;;;;;;;;;;;;;;;42702:36;42646:92;42620:1147;;;42825:20;;42815:6;:30;;42781:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43033:9;;43016:13;43026:2;43016:9;:13::i;:::-;43007:6;:22;;;;:::i;:::-;:35;;42973:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42620:1147;;;43211:25;:29;43237:2;43211:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43266:31;:37;43298:4;43266:37;;;;;;;;;;;;;;;;;;;;;;;;;43265:38;43211:92;43185:582;;;43390:20;;43380:6;:30;;43346:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43185:582;;;43547:31;:35;43579:2;43547:35;;;;;;;;;;;;;;;;;;;;;;;;;43542:225;;43667:9;;43650:13;43660:2;43650:9;:13::i;:::-;43641:6;:22;;;;:::i;:::-;:35;;43607:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43542:225;43185:582;42620:1147;41341:2441;41306:2487;43880:1;43867:10;;:14;;;;:::i;:::-;43850:12;:32;;:68;;;;;43905:13;43899:19;;:2;:19;;;;43850:68;:142;;;;;43949:42;43935:57;;:2;:57;;;;43850:142;43832:221;;;44036:5;44019:10;:14;44030:2;44019:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;43832:221;44065:28;44096:24;44114:4;44096:9;:24::i;:::-;44065:55;;44133:12;44172:18;;44148:20;:42;;44133:57;;44221:7;:35;;;;;44245:11;;;;;;;;;;;44221:35;:61;;;;;44274:8;;;;;;;;;;;44273:9;44221:61;:110;;;;;44300:25;:31;44326:4;44300:31;;;;;;;;;;;;;;;;;;;;;;;;;44299:32;44221:110;:153;;;;;44349:19;:25;44369:4;44349:25;;;;;;;;;;;;;;;;;;;;;;;;;44348:26;44221:153;:194;;;;;44392:19;:23;44412:2;44392:23;;;;;;;;;;;;;;;;;;;;;;;;;44391:24;44221:194;44203:326;;;44453:4;44442:8;;:15;;;;;;;;;;;;;;;;;;44474:10;:8;:10::i;:::-;44512:5;44501:8;;:16;;;;;;;;;;;;;;;;;;44203:326;44541:12;44557:8;;;;;;;;;;;44556:9;44541:24;;44667:19;:25;44687:4;44667:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44696:19;:23;44716:2;44696:23;;;;;;;;;;;;;;;;;;;;;;;;;44667:52;44663:100;;;44746:5;44736:15;;44663:100;44775:12;44880:7;44876:969;;;44932:25;:29;44958:2;44932:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44981:1;44965:13;;:17;44932:50;44928:768;;;45010:34;45040:3;45010:25;45021:13;;45010:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45003:41;;45113:13;;45093:16;;45086:4;:23;;;;:::i;:::-;45085:41;;;;:::i;:::-;45063:18;;:63;;;;;;;:::i;:::-;;;;;;;;45183:13;;45169:10;;45162:4;:17;;;;:::i;:::-;45161:35;;;;:::i;:::-;45145:12;;:51;;;;;;;:::i;:::-;;;;;;;;45265:13;;45245:16;;45238:4;:23;;;;:::i;:::-;45237:41;;;;:::i;:::-;45215:18;;:63;;;;;;;:::i;:::-;;;;;;;;44928:768;;;45340:25;:31;45366:4;45340:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45390:1;45375:12;;:16;45340:51;45336:360;;;45419:33;45448:3;45419:24;45430:12;;45419:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45412:40;;45520:12;;45501:15;;45494:4;:22;;;;:::i;:::-;45493:39;;;;:::i;:::-;45471:18;;:61;;;;;;;:::i;:::-;;;;;;;;45588:12;;45575:9;;45568:4;:16;;;;:::i;:::-;45567:33;;;;:::i;:::-;45551:12;;:49;;;;;;;:::i;:::-;;;;;;;;45668:12;;45649:15;;45642:4;:22;;;;:::i;:::-;45641:39;;;;:::i;:::-;45619:18;;:61;;;;;;;:::i;:::-;;;;;;;;45336:360;44928:768;45723:1;45716:4;:8;45712:91;;;45745:42;45761:4;45775;45782;45745:15;:42::i;:::-;45712:91;45829:4;45819:14;;;;;:::i;:::-;;;44876:969;45857:33;45873:4;45879:2;45883:6;45857:15;:33::i;:::-;40890:5008;;;;40777:5121;;;;:::o;18229:226::-;18349:7;18382:1;18377;:6;;18385:12;18369:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18409:9;18425:1;18421;:5;;;;:::i;:::-;18409:17;;18446:1;18439:8;;;18229:226;;;;;:::o;17326:181::-;17384:7;17404:9;17420:1;17416;:5;;;;:::i;:::-;17404:17;;17445:1;17440;:6;;17432:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;17498:1;17491:8;;;17326:181;;;;:::o;40341:188::-;40458:5;40424:25;:31;40450:4;40424:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40515:5;40481:40;;40509:4;40481:40;;;;;;;;;;;;40341:188;;:::o;13447:610::-;13605:1;13587:20;;:6;:20;;;13579:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13689:1;13668:23;;:9;:23;;;13660:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13744:47;13765:6;13773:9;13784:6;13744:20;:47::i;:::-;13824:108;13860:6;13824:108;;;;;;;;;;;;;;;;;:9;:17;13834:6;13824:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;13804:9;:17;13814:6;13804:17;;;;;;;;;;;;;;;:128;;;;13966:32;13991:6;13966:9;:20;13976:9;13966:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13943:9;:20;13953:9;13943:20;;;;;;;;;;;;;;;:55;;;;14031:9;14014:35;;14023:6;14014:35;;;14042:6;14014:35;;;;;;:::i;:::-;;;;;;;;13447:610;;;:::o;46526:1220::-;46565:23;46591:24;46609:4;46591:9;:24::i;:::-;46565:50;;46626:25;46722:12;;46688:18;;46654;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;46626:108;;46745:12;46793:1;46774:15;:20;:46;;;;46819:1;46798:17;:22;46774:46;46770:85;;;46837:7;;;;;46770:85;46910:2;46889:18;;:23;;;;:::i;:::-;46871:15;:41;46867:115;;;46968:2;46947:18;;:23;;;;:::i;:::-;46929:41;;46867:115;46994:23;47107:1;47074:17;47039:18;;47021:15;:36;;;;:::i;:::-;47020:71;;;;:::i;:::-;:88;;;;:::i;:::-;46994:114;;47119:26;47148:36;47168:15;47148;:19;;:36;;;;:::i;:::-;47119:65;;47197:25;47225:21;47197:49;;47259:36;47276:18;47259:16;:36::i;:::-;47308:18;47329:44;47355:17;47329:21;:25;;:44;;;;:::i;:::-;47308:65;;47386:17;47406:51;47439:17;47406:28;47421:12;;47406:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;47386:71;;47491:1;47470:18;:22;;;;47524:1;47503:18;:22;;;;47551:1;47536:12;:16;;;;47587:9;;;;;;;;;;;47579:23;;47610:9;47579:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47565:59;;;;;47659:15;;;;;;;;;;;47651:29;;47702:21;47651:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47637:101;;;;;46554:1192;;;;;;;;46526:1220;:::o;18714:471::-;18772:7;19022:1;19017;:6;19013:47;;19047:1;19040:8;;;;19013:47;19072:9;19088:1;19084;:5;;;;:::i;:::-;19072:17;;19117:1;19112;19108;:5;;;;:::i;:::-;:10;19100:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;19176:1;19169:8;;;18714:471;;;;;:::o;19661:132::-;19719:7;19746:39;19750:1;19753;19746:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19739:46;;19661:132;;;;:::o;16931:125::-;;;;:::o;17790:136::-;17848:7;17875:43;17879:1;17882;17875:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17868:50;;17790:136;;;;:::o;46015:503::-;46081:21;46119:1;46105:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46081:40;;46150:4;46132;46137:1;46132:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46176:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46166:4;46171:1;46166:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46211:62;46228:4;46243:15;46261:11;46211:8;:62::i;:::-;46286:15;:66;;;46367:11;46393:1;46437:4;46464;46484:15;46286:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46070:448;46015:503;:::o;20289:312::-;20409:7;20441:1;20437;:5;20444:12;20429:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;20468:9;20484:1;20480;:5;;;;:::i;:::-;20468:17;;20592:1;20585:8;;;20289:312;;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:60::-;3702:3;3723:5;3716:12;;3674:60;;;:::o;3740:142::-;3790:9;3823:53;3841:34;3850:24;3868:5;3850:24;:::i;:::-;3841:34;:::i;:::-;3823:53;:::i;:::-;3810:66;;3740:142;;;:::o;3888:126::-;3938:9;3971:37;4002:5;3971:37;:::i;:::-;3958:50;;3888:126;;;:::o;4020:153::-;4097:9;4130:37;4161:5;4130:37;:::i;:::-;4117:50;;4020:153;;;:::o;4179:185::-;4293:64;4351:5;4293:64;:::i;:::-;4288:3;4281:77;4179:185;;:::o;4370:276::-;4490:4;4528:2;4517:9;4513:18;4505:26;;4541:98;4636:1;4625:9;4621:17;4612:6;4541:98;:::i;:::-;4370:276;;;;:::o;4652:118::-;4739:24;4757:5;4739:24;:::i;:::-;4734:3;4727:37;4652:118;;:::o;4776:222::-;4869:4;4907:2;4896:9;4892:18;4884:26;;4920:71;4988:1;4977:9;4973:17;4964:6;4920:71;:::i;:::-;4776:222;;;;:::o;5004:329::-;5063:6;5112:2;5100:9;5091:7;5087:23;5083:32;5080:119;;;5118:79;;:::i;:::-;5080:119;5238:1;5263:53;5308:7;5299:6;5288:9;5284:22;5263:53;:::i;:::-;5253:63;;5209:117;5004:329;;;;:::o;5339:619::-;5416:6;5424;5432;5481:2;5469:9;5460:7;5456:23;5452:32;5449:119;;;5487:79;;:::i;:::-;5449:119;5607:1;5632:53;5677:7;5668:6;5657:9;5653:22;5632:53;:::i;:::-;5622:63;;5578:117;5734:2;5760:53;5805:7;5796:6;5785:9;5781:22;5760:53;:::i;:::-;5750:63;;5705:118;5862:2;5888:53;5933:7;5924:6;5913:9;5909:22;5888:53;:::i;:::-;5878:63;;5833:118;5339:619;;;;;:::o;5964:116::-;6034:21;6049:5;6034:21;:::i;:::-;6027:5;6024:32;6014:60;;6070:1;6067;6060:12;6014:60;5964:116;:::o;6086:133::-;6129:5;6167:6;6154:20;6145:29;;6183:30;6207:5;6183:30;:::i;:::-;6086:133;;;;:::o;6225:468::-;6290:6;6298;6347:2;6335:9;6326:7;6322:23;6318:32;6315:119;;;6353:79;;:::i;:::-;6315:119;6473:1;6498:53;6543:7;6534:6;6523:9;6519:22;6498:53;:::i;:::-;6488:63;;6444:117;6600:2;6626:50;6668:7;6659:6;6648:9;6644:22;6626:50;:::i;:::-;6616:60;;6571:115;6225:468;;;;;:::o;6699:86::-;6734:7;6774:4;6767:5;6763:16;6752:27;;6699:86;;;:::o;6791:112::-;6874:22;6890:5;6874:22;:::i;:::-;6869:3;6862:35;6791:112;;:::o;6909:214::-;6998:4;7036:2;7025:9;7021:18;7013:26;;7049:67;7113:1;7102:9;7098:17;7089:6;7049:67;:::i;:::-;6909:214;;;;:::o;7129:118::-;7216:24;7234:5;7216:24;:::i;:::-;7211:3;7204:37;7129:118;;:::o;7253:222::-;7346:4;7384:2;7373:9;7369:18;7361:26;;7397:71;7465:1;7454:9;7450:17;7441:6;7397:71;:::i;:::-;7253:222;;;;:::o;7481:619::-;7558:6;7566;7574;7623:2;7611:9;7602:7;7598:23;7594:32;7591:119;;;7629:79;;:::i;:::-;7591:119;7749:1;7774:53;7819:7;7810:6;7799:9;7795:22;7774:53;:::i;:::-;7764:63;;7720:117;7876:2;7902:53;7947:7;7938:6;7927:9;7923:22;7902:53;:::i;:::-;7892:63;;7847:118;8004:2;8030:53;8075:7;8066:6;8055:9;8051:22;8030:53;:::i;:::-;8020:63;;7975:118;7481:619;;;;;:::o;8106:323::-;8162:6;8211:2;8199:9;8190:7;8186:23;8182:32;8179:119;;;8217:79;;:::i;:::-;8179:119;8337:1;8362:50;8404:7;8395:6;8384:9;8380:22;8362:50;:::i;:::-;8352:60;;8308:114;8106:323;;;;:::o;8435:474::-;8503:6;8511;8560:2;8548:9;8539:7;8535:23;8531:32;8528:119;;;8566:79;;:::i;:::-;8528:119;8686:1;8711:53;8756:7;8747:6;8736:9;8732:22;8711:53;:::i;:::-;8701:63;;8657:117;8813:2;8839:53;8884:7;8875:6;8864:9;8860:22;8839:53;:::i;:::-;8829:63;;8784:118;8435:474;;;;;:::o;8915:911::-;9010:6;9018;9026;9034;9042;9091:3;9079:9;9070:7;9066:23;9062:33;9059:120;;;9098:79;;:::i;:::-;9059:120;9218:1;9243:53;9288:7;9279:6;9268:9;9264:22;9243:53;:::i;:::-;9233:63;;9189:117;9345:2;9371:53;9416:7;9407:6;9396:9;9392:22;9371:53;:::i;:::-;9361:63;;9316:118;9473:2;9499:53;9544:7;9535:6;9524:9;9520:22;9499:53;:::i;:::-;9489:63;;9444:118;9601:2;9627:53;9672:7;9663:6;9652:9;9648:22;9627:53;:::i;:::-;9617:63;;9572:118;9729:3;9756:53;9801:7;9792:6;9781:9;9777:22;9756:53;:::i;:::-;9746:63;;9700:119;8915:911;;;;;;;;:::o;9832:180::-;9880:77;9877:1;9870:88;9977:4;9974:1;9967:15;10001:4;9998:1;9991:15;10018:320;10062:6;10099:1;10093:4;10089:12;10079:22;;10146:1;10140:4;10136:12;10167:18;10157:81;;10223:4;10215:6;10211:17;10201:27;;10157:81;10285:2;10277:6;10274:14;10254:18;10251:38;10248:84;;10304:18;;:::i;:::-;10248:84;10069:269;10018:320;;;:::o;10344:182::-;10484:34;10480:1;10472:6;10468:14;10461:58;10344:182;:::o;10532:366::-;10674:3;10695:67;10759:2;10754:3;10695:67;:::i;:::-;10688:74;;10771:93;10860:3;10771:93;:::i;:::-;10889:2;10884:3;10880:12;10873:19;;10532:366;;;:::o;10904:419::-;11070:4;11108:2;11097:9;11093:18;11085:26;;11157:9;11151:4;11147:20;11143:1;11132:9;11128:17;11121:47;11185:131;11311:4;11185:131;:::i;:::-;11177:139;;10904:419;;;:::o;11329:180::-;11377:77;11374:1;11367:88;11474:4;11471:1;11464:15;11498:4;11495:1;11488:15;11515:410;11555:7;11578:20;11596:1;11578:20;:::i;:::-;11573:25;;11612:20;11630:1;11612:20;:::i;:::-;11607:25;;11667:1;11664;11660:9;11689:30;11707:11;11689:30;:::i;:::-;11678:41;;11868:1;11859:7;11855:15;11852:1;11849:22;11829:1;11822:9;11802:83;11779:139;;11898:18;;:::i;:::-;11779:139;11563:362;11515:410;;;;:::o;11931:180::-;11979:77;11976:1;11969:88;12076:4;12073:1;12066:15;12100:4;12097:1;12090:15;12117:185;12157:1;12174:20;12192:1;12174:20;:::i;:::-;12169:25;;12208:20;12226:1;12208:20;:::i;:::-;12203:25;;12247:1;12237:35;;12252:18;;:::i;:::-;12237:35;12294:1;12291;12287:9;12282:14;;12117:185;;;;:::o;12308:234::-;12448:34;12444:1;12436:6;12432:14;12425:58;12517:17;12512:2;12504:6;12500:15;12493:42;12308:234;:::o;12548:366::-;12690:3;12711:67;12775:2;12770:3;12711:67;:::i;:::-;12704:74;;12787:93;12876:3;12787:93;:::i;:::-;12905:2;12900:3;12896:12;12889:19;;12548:366;;;:::o;12920:419::-;13086:4;13124:2;13113:9;13109:18;13101:26;;13173:9;13167:4;13163:20;13159:1;13148:9;13144:17;13137:47;13201:131;13327:4;13201:131;:::i;:::-;13193:139;;12920:419;;;:::o;13345:191::-;13385:3;13404:20;13422:1;13404:20;:::i;:::-;13399:25;;13438:20;13456:1;13438:20;:::i;:::-;13433:25;;13481:1;13478;13474:9;13467:16;;13502:3;13499:1;13496:10;13493:36;;;13509:18;;:::i;:::-;13493:36;13345:191;;;;:::o;13542:179::-;13682:31;13678:1;13670:6;13666:14;13659:55;13542:179;:::o;13727:366::-;13869:3;13890:67;13954:2;13949:3;13890:67;:::i;:::-;13883:74;;13966:93;14055:3;13966:93;:::i;:::-;14084:2;14079:3;14075:12;14068:19;;13727:366;;;:::o;14099:419::-;14265:4;14303:2;14292:9;14288:18;14280:26;;14352:9;14346:4;14342:20;14338:1;14327:9;14323:17;14316:47;14380:131;14506:4;14380:131;:::i;:::-;14372:139;;14099:419;;;:::o;14524:244::-;14664:34;14660:1;14652:6;14648:14;14641:58;14733:27;14728:2;14720:6;14716:15;14709:52;14524:244;:::o;14774:366::-;14916:3;14937:67;15001:2;14996:3;14937:67;:::i;:::-;14930:74;;15013:93;15102:3;15013:93;:::i;:::-;15131:2;15126:3;15122:12;15115:19;;14774:366;;;:::o;15146:419::-;15312:4;15350:2;15339:9;15335:18;15327:26;;15399:9;15393:4;15389:20;15385:1;15374:9;15370:17;15363:47;15427:131;15553:4;15427:131;:::i;:::-;15419:139;;15146:419;;;:::o;15571:223::-;15711:34;15707:1;15699:6;15695:14;15688:58;15780:6;15775:2;15767:6;15763:15;15756:31;15571:223;:::o;15800:366::-;15942:3;15963:67;16027:2;16022:3;15963:67;:::i;:::-;15956:74;;16039:93;16128:3;16039:93;:::i;:::-;16157:2;16152:3;16148:12;16141:19;;15800:366;;;:::o;16172:419::-;16338:4;16376:2;16365:9;16361:18;16353:26;;16425:9;16419:4;16415:20;16411:1;16400:9;16396:17;16389:47;16453:131;16579:4;16453:131;:::i;:::-;16445:139;;16172:419;;;:::o;16597:240::-;16737:34;16733:1;16725:6;16721:14;16714:58;16806:23;16801:2;16793:6;16789:15;16782:48;16597:240;:::o;16843:366::-;16985:3;17006:67;17070:2;17065:3;17006:67;:::i;:::-;16999:74;;17082:93;17171:3;17082:93;:::i;:::-;17200:2;17195:3;17191:12;17184:19;;16843:366;;;:::o;17215:419::-;17381:4;17419:2;17408:9;17404:18;17396:26;;17468:9;17462:4;17458:20;17454:1;17443:9;17439:17;17432:47;17496:131;17622:4;17496:131;:::i;:::-;17488:139;;17215:419;;;:::o;17640:239::-;17780:34;17776:1;17768:6;17764:14;17757:58;17849:22;17844:2;17836:6;17832:15;17825:47;17640:239;:::o;17885:366::-;18027:3;18048:67;18112:2;18107:3;18048:67;:::i;:::-;18041:74;;18124:93;18213:3;18124:93;:::i;:::-;18242:2;18237:3;18233:12;18226:19;;17885:366;;;:::o;18257:419::-;18423:4;18461:2;18450:9;18446:18;18438:26;;18510:9;18504:4;18500:20;18496:1;18485:9;18481:17;18474:47;18538:131;18664:4;18538:131;:::i;:::-;18530:139;;18257:419;;;:::o;18682:225::-;18822:34;18818:1;18810:6;18806:14;18799:58;18891:8;18886:2;18878:6;18874:15;18867:33;18682:225;:::o;18913:366::-;19055:3;19076:67;19140:2;19135:3;19076:67;:::i;:::-;19069:74;;19152:93;19241:3;19152:93;:::i;:::-;19270:2;19265:3;19261:12;19254:19;;18913:366;;;:::o;19285:419::-;19451:4;19489:2;19478:9;19474:18;19466:26;;19538:9;19532:4;19528:20;19524:1;19513:9;19509:17;19502:47;19566:131;19692:4;19566:131;:::i;:::-;19558:139;;19285:419;;;:::o;19710:179::-;19850:31;19846:1;19838:6;19834:14;19827:55;19710:179;:::o;19895:366::-;20037:3;20058:67;20122:2;20117:3;20058:67;:::i;:::-;20051:74;;20134:93;20223:3;20134:93;:::i;:::-;20252:2;20247:3;20243:12;20236:19;;19895:366;;;:::o;20267:419::-;20433:4;20471:2;20460:9;20456:18;20448:26;;20520:9;20514:4;20510:20;20506:1;20495:9;20491:17;20484:47;20548:131;20674:4;20548:131;:::i;:::-;20540:139;;20267:419;;;:::o;20692:223::-;20832:34;20828:1;20820:6;20816:14;20809:58;20901:6;20896:2;20888:6;20884:15;20877:31;20692:223;:::o;20921:366::-;21063:3;21084:67;21148:2;21143:3;21084:67;:::i;:::-;21077:74;;21160:93;21249:3;21160:93;:::i;:::-;21278:2;21273:3;21269:12;21262:19;;20921:366;;;:::o;21293:419::-;21459:4;21497:2;21486:9;21482:18;21474:26;;21546:9;21540:4;21536:20;21532:1;21521:9;21517:17;21510:47;21574:131;21700:4;21574:131;:::i;:::-;21566:139;;21293:419;;;:::o;21718:221::-;21858:34;21854:1;21846:6;21842:14;21835:58;21927:4;21922:2;21914:6;21910:15;21903:29;21718:221;:::o;21945:366::-;22087:3;22108:67;22172:2;22167:3;22108:67;:::i;:::-;22101:74;;22184:93;22273:3;22184:93;:::i;:::-;22302:2;22297:3;22293:12;22286:19;;21945:366;;;:::o;22317:419::-;22483:4;22521:2;22510:9;22506:18;22498:26;;22570:9;22564:4;22560:20;22556:1;22545:9;22541:17;22534:47;22598:131;22724:4;22598:131;:::i;:::-;22590:139;;22317:419;;;:::o;22742:224::-;22882:34;22878:1;22870:6;22866:14;22859:58;22951:7;22946:2;22938:6;22934:15;22927:32;22742:224;:::o;22972:366::-;23114:3;23135:67;23199:2;23194:3;23135:67;:::i;:::-;23128:74;;23211:93;23300:3;23211:93;:::i;:::-;23329:2;23324:3;23320:12;23313:19;;22972:366;;;:::o;23344:419::-;23510:4;23548:2;23537:9;23533:18;23525:26;;23597:9;23591:4;23587:20;23583:1;23572:9;23568:17;23561:47;23625:131;23751:4;23625:131;:::i;:::-;23617:139;;23344:419;;;:::o;23769:222::-;23909:34;23905:1;23897:6;23893:14;23886:58;23978:5;23973:2;23965:6;23961:15;23954:30;23769:222;:::o;23997:366::-;24139:3;24160:67;24224:2;24219:3;24160:67;:::i;:::-;24153:74;;24236:93;24325:3;24236:93;:::i;:::-;24354:2;24349:3;24345:12;24338:19;;23997:366;;;:::o;24369:419::-;24535:4;24573:2;24562:9;24558:18;24550:26;;24622:9;24616:4;24612:20;24608:1;24597:9;24593:17;24586:47;24650:131;24776:4;24650:131;:::i;:::-;24642:139;;24369:419;;;:::o;24794:236::-;24934:34;24930:1;24922:6;24918:14;24911:58;25003:19;24998:2;24990:6;24986:15;24979:44;24794:236;:::o;25036:366::-;25178:3;25199:67;25263:2;25258:3;25199:67;:::i;:::-;25192:74;;25275:93;25364:3;25275:93;:::i;:::-;25393:2;25388:3;25384:12;25377:19;;25036:366;;;:::o;25408:419::-;25574:4;25612:2;25601:9;25597:18;25589:26;;25661:9;25655:4;25651:20;25647:1;25636:9;25632:17;25625:47;25689:131;25815:4;25689:131;:::i;:::-;25681:139;;25408:419;;;:::o;25833:172::-;25973:24;25969:1;25961:6;25957:14;25950:48;25833:172;:::o;26011:366::-;26153:3;26174:67;26238:2;26233:3;26174:67;:::i;:::-;26167:74;;26250:93;26339:3;26250:93;:::i;:::-;26368:2;26363:3;26359:12;26352:19;;26011:366;;;:::o;26383:419::-;26549:4;26587:2;26576:9;26572:18;26564:26;;26636:9;26630:4;26626:20;26622:1;26611:9;26607:17;26600:47;26664:131;26790:4;26664:131;:::i;:::-;26656:139;;26383:419;;;:::o;26808:297::-;26948:34;26944:1;26936:6;26932:14;26925:58;27017:34;27012:2;27004:6;27000:15;26993:59;27086:11;27081:2;27073:6;27069:15;27062:36;26808:297;:::o;27111:366::-;27253:3;27274:67;27338:2;27333:3;27274:67;:::i;:::-;27267:74;;27350:93;27439:3;27350:93;:::i;:::-;27468:2;27463:3;27459:12;27452:19;;27111:366;;;:::o;27483:419::-;27649:4;27687:2;27676:9;27672:18;27664:26;;27736:9;27730:4;27726:20;27722:1;27711:9;27707:17;27700:47;27764:131;27890:4;27764:131;:::i;:::-;27756:139;;27483:419;;;:::o;27908:240::-;28048:34;28044:1;28036:6;28032:14;28025:58;28117:23;28112:2;28104:6;28100:15;28093:48;27908:240;:::o;28154:366::-;28296:3;28317:67;28381:2;28376:3;28317:67;:::i;:::-;28310:74;;28393:93;28482:3;28393:93;:::i;:::-;28511:2;28506:3;28502:12;28495:19;;28154:366;;;:::o;28526:419::-;28692:4;28730:2;28719:9;28715:18;28707:26;;28779:9;28773:4;28769:20;28765:1;28754:9;28750:17;28743:47;28807:131;28933:4;28807:131;:::i;:::-;28799:139;;28526:419;;;:::o;28951:169::-;29091:21;29087:1;29079:6;29075:14;29068:45;28951:169;:::o;29126:366::-;29268:3;29289:67;29353:2;29348:3;29289:67;:::i;:::-;29282:74;;29365:93;29454:3;29365:93;:::i;:::-;29483:2;29478:3;29474:12;29467:19;;29126:366;;;:::o;29498:419::-;29664:4;29702:2;29691:9;29687:18;29679:26;;29751:9;29745:4;29741:20;29737:1;29726:9;29722:17;29715:47;29779:131;29905:4;29779:131;:::i;:::-;29771:139;;29498:419;;;:::o;29923:241::-;30063:34;30059:1;30051:6;30047:14;30040:58;30132:24;30127:2;30119:6;30115:15;30108:49;29923:241;:::o;30170:366::-;30312:3;30333:67;30397:2;30392:3;30333:67;:::i;:::-;30326:74;;30409:93;30498:3;30409:93;:::i;:::-;30527:2;30522:3;30518:12;30511:19;;30170:366;;;:::o;30542:419::-;30708:4;30746:2;30735:9;30731:18;30723:26;;30795:9;30789:4;30785:20;30781:1;30770:9;30766:17;30759:47;30823:131;30949:4;30823:131;:::i;:::-;30815:139;;30542:419;;;:::o;30967:194::-;31007:4;31027:20;31045:1;31027:20;:::i;:::-;31022:25;;31061:20;31079:1;31061:20;:::i;:::-;31056:25;;31105:1;31102;31098:9;31090:17;;31129:1;31123:4;31120:11;31117:37;;;31134:18;;:::i;:::-;31117:37;30967:194;;;;:::o;31167:177::-;31307:29;31303:1;31295:6;31291:14;31284:53;31167:177;:::o;31350:366::-;31492:3;31513:67;31577:2;31572:3;31513:67;:::i;:::-;31506:74;;31589:93;31678:3;31589:93;:::i;:::-;31707:2;31702:3;31698:12;31691:19;;31350:366;;;:::o;31722:419::-;31888:4;31926:2;31915:9;31911:18;31903:26;;31975:9;31969:4;31965:20;31961:1;31950:9;31946:17;31939:47;32003:131;32129:4;32003:131;:::i;:::-;31995:139;;31722:419;;;:::o;32147:147::-;32248:11;32285:3;32270:18;;32147:147;;;;:::o;32300:114::-;;:::o;32420:398::-;32579:3;32600:83;32681:1;32676:3;32600:83;:::i;:::-;32593:90;;32692:93;32781:3;32692:93;:::i;:::-;32810:1;32805:3;32801:11;32794:18;;32420:398;;;:::o;32824:379::-;33008:3;33030:147;33173:3;33030:147;:::i;:::-;33023:154;;33194:3;33187:10;;32824:379;;;:::o;33209:220::-;33349:34;33345:1;33337:6;33333:14;33326:58;33418:3;33413:2;33405:6;33401:15;33394:28;33209:220;:::o;33435:366::-;33577:3;33598:67;33662:2;33657:3;33598:67;:::i;:::-;33591:74;;33674:93;33763:3;33674:93;:::i;:::-;33792:2;33787:3;33783:12;33776:19;;33435:366;;;:::o;33807:419::-;33973:4;34011:2;34000:9;33996:18;33988:26;;34060:9;34054:4;34050:20;34046:1;34035:9;34031:17;34024:47;34088:131;34214:4;34088:131;:::i;:::-;34080:139;;33807:419;;;:::o;34232:180::-;34280:77;34277:1;34270:88;34377:4;34374:1;34367:15;34401:4;34398:1;34391:15;34418:180;34466:77;34463:1;34456:88;34563:4;34560:1;34553:15;34587:4;34584:1;34577:15;34604:143;34661:5;34692:6;34686:13;34677:22;;34708:33;34735:5;34708:33;:::i;:::-;34604:143;;;;:::o;34753:351::-;34823:6;34872:2;34860:9;34851:7;34847:23;34843:32;34840:119;;;34878:79;;:::i;:::-;34840:119;34998:1;35023:64;35079:7;35070:6;35059:9;35055:22;35023:64;:::i;:::-;35013:74;;34969:128;34753:351;;;;:::o;35110:85::-;35155:7;35184:5;35173:16;;35110:85;;;:::o;35201:158::-;35259:9;35292:61;35310:42;35319:32;35345:5;35319:32;:::i;:::-;35310:42;:::i;:::-;35292:61;:::i;:::-;35279:74;;35201:158;;;:::o;35365:147::-;35460:45;35499:5;35460:45;:::i;:::-;35455:3;35448:58;35365:147;;:::o;35518:114::-;35585:6;35619:5;35613:12;35603:22;;35518:114;;;:::o;35638:184::-;35737:11;35771:6;35766:3;35759:19;35811:4;35806:3;35802:14;35787:29;;35638:184;;;;:::o;35828:132::-;35895:4;35918:3;35910:11;;35948:4;35943:3;35939:14;35931:22;;35828:132;;;:::o;35966:108::-;36043:24;36061:5;36043:24;:::i;:::-;36038:3;36031:37;35966:108;;:::o;36080:179::-;36149:10;36170:46;36212:3;36204:6;36170:46;:::i;:::-;36248:4;36243:3;36239:14;36225:28;;36080:179;;;;:::o;36265:113::-;36335:4;36367;36362:3;36358:14;36350:22;;36265:113;;;:::o;36414:732::-;36533:3;36562:54;36610:5;36562:54;:::i;:::-;36632:86;36711:6;36706:3;36632:86;:::i;:::-;36625:93;;36742:56;36792:5;36742:56;:::i;:::-;36821:7;36852:1;36837:284;36862:6;36859:1;36856:13;36837:284;;;36938:6;36932:13;36965:63;37024:3;37009:13;36965:63;:::i;:::-;36958:70;;37051:60;37104:6;37051:60;:::i;:::-;37041:70;;36897:224;36884:1;36881;36877:9;36872:14;;36837:284;;;36841:14;37137:3;37130:10;;36538:608;;;36414:732;;;;:::o;37152:831::-;37415:4;37453:3;37442:9;37438:19;37430:27;;37467:71;37535:1;37524:9;37520:17;37511:6;37467:71;:::i;:::-;37548:80;37624:2;37613:9;37609:18;37600:6;37548:80;:::i;:::-;37675:9;37669:4;37665:20;37660:2;37649:9;37645:18;37638:48;37703:108;37806:4;37797:6;37703:108;:::i;:::-;37695:116;;37821:72;37889:2;37878:9;37874:18;37865:6;37821:72;:::i;:::-;37903:73;37971:3;37960:9;37956:19;37947:6;37903:73;:::i;:::-;37152:831;;;;;;;;:::o

Swarm Source

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