ETH Price: $2,303.19 (+0.92%)

Token

Ypro (YPRO)
 

Overview

Max Total Supply

500,000,000,000 YPRO

Holders

276

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
rr0xnft.eth
Balance
40,913,570.73 YPRO

Value
$0.00
0xd8fd1D0abBB658994a99961eC90e0c14bd6513a3
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:
Ypro

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-09
*/

/**
   
**/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

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

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(address(0));
    }

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public revShareWallet;
    address public teamWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyRevShareFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellRevShareFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForRevShare;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

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

    bool public preMigrationPhase = true;
    mapping(address => bool) public preMigrationTransferrable;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("Ypro", "YPRO") {
        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 _buyRevShareFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 2;

        uint256 _sellRevShareFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 2;

        uint256 totalSupply = 500_000_000_000 * 1e18;

        maxTransactionAmount = 10_000 * 1e18; // 1%
        maxWallet = 10_000 * 1e18; // 1% 
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% 

        buyRevShareFee = _buyRevShareFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;

        sellRevShareFee = _sellRevShareFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;

        revShareWallet = address(0xc8a61fdDd6549c537e996cA730fE7DBB0bF16B3d); // set as revShare wallet
        teamWallet = owner(); // set as team 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);

        preMigrationTransferrable[owner()] = 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 {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        preMigrationPhase = false;
    }

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyRevShareFee = _revShareFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    function updateSellFees(
        uint256 _revShareFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellRevShareFee = _revShareFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateRevShareWallet(address newRevShareWallet) external onlyOwner {
        emit revShareWalletUpdated(newRevShareWallet, revShareWallet);
        revShareWallet = newRevShareWallet;
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    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(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

        if (preMigrationPhase) {
            require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration.");
        }

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

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

        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;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

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

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

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

        // Halve the amount of liquidity tokens
        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 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam;

        tokensForLiquidity = 0;
        tokensForRevShare = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function withdrawStuckHouse() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }

    function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner {
        preMigrationTransferrable[_addr] = isAuthorized;
        excludeFromFees(_addr, isAuthorized);
        excludeFromMaxTransaction(_addr, isAuthorized);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"revShareWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","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":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":[{"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","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":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","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":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":[{"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","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":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","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"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckHouse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055505f600b60036101000a81548160ff0219169083151502179055506001601b5f6101000a81548160ff02191690831515021790555034801562000092575f80fd5b506040518060400160405280600481526020017f5970726f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5950524f00000000000000000000000000000000000000000000000000000000815250816003908162000110919062000d93565b50806004908162000122919062000d93565b50505062000145620001396200060760201b60201c565b6200060e60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000170816001620006d160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000214919062000edc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002a0919062000edc565b6040518363ffffffff1660e01b8152600401620002bf92919062000f1d565b6020604051808303815f875af1158015620002dc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000302919062000edc565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034a60a0516001620006d160201b60201c565b6200035f60a0516001620007b860201b60201c565b5f600290505f600190505f600290505f600290505f600190505f600290505f6c064f964e68233a76f520000000905069021e19e0c9bab240000060088190555069021e19e0c9bab2400000600a81905550612710600582620003c2919062000f75565b620003ce919062000fec565b60098190555086600e8190555085600f8190555084601081905550601054600f54600e54620003fe919062001023565b6200040a919062001023565b600d819055508360128190555082601381905550816014819055506014546013546012546200043a919062001023565b62000446919062001023565b60118190555073c8a61fddd6549c537e996ca730fe7dbb0bf16b3d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004b06200085660201b60201c565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000511620005036200085660201b60201c565b60016200087e60201b60201c565b620005243060016200087e60201b60201c565b6200053961dead60016200087e60201b60201c565b6200055b6200054d6200085660201b60201c565b6001620006d160201b60201c565b6200056e306001620006d160201b60201c565b6200058361dead6001620006d160201b60201c565b6001601c5f620005986200085660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620005f93382620009b560201b60201c565b5050505050505050620011ac565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006e16200060760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007076200085660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000760576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075790620010bb565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200088e6200060760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b46200085660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200090d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090490620010bb565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009a99190620010f7565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a1d9062001160565b60405180910390fd5b62000a395f838362000b2560201b60201c565b8060025f82825462000a4c919062001023565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000aa0919062001023565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b06919062001191565b60405180910390a362000b215f838362000b2a60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bab57607f821691505b60208210810362000bc15762000bc062000b66565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000be8565b62000c31868362000be8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c7b62000c7562000c6f8462000c49565b62000c52565b62000c49565b9050919050565b5f819050919050565b62000c968362000c5b565b62000cae62000ca58262000c82565b84845462000bf4565b825550505050565b5f90565b62000cc462000cb6565b62000cd181848462000c8b565b505050565b5b8181101562000cf85762000cec5f8262000cba565b60018101905062000cd7565b5050565b601f82111562000d475762000d118162000bc7565b62000d1c8462000bd9565b8101602085101562000d2c578190505b62000d4462000d3b8562000bd9565b83018262000cd6565b50505b505050565b5f82821c905092915050565b5f62000d695f198460080262000d4c565b1980831691505092915050565b5f62000d83838362000d58565b9150826002028217905092915050565b62000d9e8262000b2f565b67ffffffffffffffff81111562000dba5762000db962000b39565b5b62000dc6825462000b93565b62000dd382828562000cfc565b5f60209050601f83116001811462000e09575f841562000df4578287015190505b62000e00858262000d76565b86555062000e6f565b601f19841662000e198662000bc7565b5f5b8281101562000e425784890151825560018201915060208501945060208101905062000e1b565b8683101562000e62578489015162000e5e601f89168262000d58565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ea68262000e7b565b9050919050565b62000eb88162000e9a565b811462000ec3575f80fd5b50565b5f8151905062000ed68162000ead565b92915050565b5f6020828403121562000ef45762000ef362000e77565b5b5f62000f038482850162000ec6565b91505092915050565b62000f178162000e9a565b82525050565b5f60408201905062000f325f83018562000f0c565b62000f41602083018462000f0c565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f818262000c49565b915062000f8e8362000c49565b925082820262000f9e8162000c49565b9150828204841483151762000fb85762000fb762000f48565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ff88262000c49565b9150620010058362000c49565b92508262001018576200101762000fbf565b5b828204905092915050565b5f6200102f8262000c49565b91506200103c8362000c49565b925082820190508082111562001057576200105662000f48565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620010a36020836200105d565b9150620010b0826200106d565b602082019050919050565b5f6020820190508181035f830152620010d48162001095565b9050919050565b5f8115159050919050565b620010f181620010db565b82525050565b5f6020820190506200110c5f830184620010e6565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001148601f836200105d565b9150620011558262001112565b602082019050919050565b5f6020820190508181035f83015262001179816200113a565b9050919050565b6200118b8162000c49565b82525050565b5f602082019050620011a65f83018462001180565b92915050565b60805160a051615e8e620012065f395f81816112b501528181611d2a01528181612aa50152612db201525f8181610fad01528181614504015281816145e30152818161460a015281816146a001526146c70152615e8e5ff3fe6080604052600436106103c6575f3560e01c80638095d564116101f1578063c17b5b8c1161010c578063e2f456051161009f578063f8b45b051161006e578063f8b45b0514610e11578063f9f92be414610e3b578063fde83a3414610e63578063fe575a8714610e8d576103cd565b8063e2f4560514610d6b578063f11a24d314610d95578063f2fde38b14610dbf578063f637434214610de7576103cd565b8063d729715f116100db578063d729715f14610cb3578063d85ba06314610cdd578063dd62ed3e14610d07578063e19b282314610d43576103cd565b8063c17b5b8c14610bfd578063c18bc19514610c25578063c8c8ebe414610c4d578063d257b34f14610c77576103cd565b8063a9059cbb11610184578063b62496f511610153578063b62496f514610b47578063bbc0c74214610b83578063bc205ad314610bad578063c024666814610bd5576103cd565b8063a9059cbb14610aa5578063aa0e438814610ae1578063adee28ff14610b09578063ae8f31f314610b31576103cd565b806395d89b41116101c057806395d89b41146109ed5780639a7a23d614610a175780639c2e4ac614610a3f578063a457c2d714610a69576103cd565b80638095d5641461095d5780638a8c523c146109855780638da5cb5b1461099b578063924de9b7146109c5576103cd565b806349bd5a5e116102e157806370a082311161027457806375e3661e1161024357806375e3661e146108bb578063782c4e99146108e35780637ca8448a1461090d5780637cb332bb14610935576103cd565b806370a0823114610817578063715018a614610853578063751039fc146108695780637571336a14610893576103cd565b806359927044116102b057806359927044146107835780635f189361146107ad5780636a486a8e146107c35780636ddd1713146107ed576103cd565b806349bd5a5e146106b75780634a62bb65146106e15780634e29e5231461070b5780634fbee19314610747576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd578063313ce5671461062757806339509351146106515780633dc599ff1461068d576103cd565b80631a8145bb14610545578063203e727e1461056f57806323b872dd1461059757806324b9f3c1146105d3576103cd565b8063156c2f3511610395578063156c2f351461049d5780631694505e146104c757806318160ddd146104f157806319eab0421461051b576103cd565b806306fdde03146103d1578063095ea7b3146103fb5780630e922ca71461043757806310d5de5314610461576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610ec9565b6040516103f29190614802565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906148b3565b610f59565b60405161042e919061490b565b60405180910390f35b348015610442575f80fd5b5061044b610f76565b604051610458919061490b565b60405180910390f35b34801561046c575f80fd5b5061048760048036038101906104829190614924565b610f88565b604051610494919061490b565b60405180910390f35b3480156104a8575f80fd5b506104b1610fa5565b6040516104be919061495e565b60405180910390f35b3480156104d2575f80fd5b506104db610fab565b6040516104e891906149d2565b60405180910390f35b3480156104fc575f80fd5b50610505610fcf565b604051610512919061495e565b60405180910390f35b348015610526575f80fd5b5061052f610fd8565b60405161053c919061495e565b60405180910390f35b348015610550575f80fd5b50610559610fde565b604051610566919061495e565b60405180910390f35b34801561057a575f80fd5b50610595600480360381019061059091906149eb565b610fe4565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190614a16565b6110f3565b6040516105ca919061490b565b60405180910390f35b3480156105de575f80fd5b506105e76111e5565b6040516105f4919061495e565b60405180910390f35b348015610608575f80fd5b506106116111eb565b60405161061e9190614a75565b60405180910390f35b348015610632575f80fd5b5061063b6111f1565b6040516106489190614aa9565b60405180910390f35b34801561065c575f80fd5b50610677600480360381019061067291906148b3565b6111f9565b604051610684919061490b565b60405180910390f35b348015610698575f80fd5b506106a16112a0565b6040516106ae919061490b565b60405180910390f35b3480156106c2575f80fd5b506106cb6112b3565b6040516106d89190614a75565b60405180910390f35b3480156106ec575f80fd5b506106f56112d7565b604051610702919061490b565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c9190614924565b6112e9565b60405161073e919061490b565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190614924565b611306565b60405161077a919061490b565b60405180910390f35b34801561078e575f80fd5b50610797611358565b6040516107a49190614a75565b60405180910390f35b3480156107b8575f80fd5b506107c161137d565b005b3480156107ce575f80fd5b506107d7611416565b6040516107e4919061495e565b60405180910390f35b3480156107f8575f80fd5b5061080161141c565b60405161080e919061490b565b60405180910390f35b348015610822575f80fd5b5061083d60048036038101906108389190614924565b61142f565b60405161084a919061495e565b60405180910390f35b34801561085e575f80fd5b50610867611474565b005b348015610874575f80fd5b5061087d6114fb565b60405161088a919061490b565b60405180910390f35b34801561089e575f80fd5b506108b960048036038101906108b49190614aec565b611598565b005b3480156108c6575f80fd5b506108e160048036038101906108dc9190614924565b61166c565b005b3480156108ee575f80fd5b506108f761173f565b6040516109049190614a75565b60405180910390f35b348015610918575f80fd5b50610933600480360381019061092e9190614924565b611764565b005b348015610940575f80fd5b5061095b60048036038101906109569190614924565b611855565b005b348015610968575f80fd5b50610983600480360381019061097e9190614b2a565b61198f565b005b348015610990575f80fd5b50610999611a8e565b005b3480156109a6575f80fd5b506109af611b5b565b6040516109bc9190614a75565b60405180910390f35b3480156109d0575f80fd5b506109eb60048036038101906109e69190614b7a565b611b83565b005b3480156109f8575f80fd5b50610a01611c1c565b604051610a0e9190614802565b60405180910390f35b348015610a22575f80fd5b50610a3d6004803603810190610a389190614aec565b611cac565b005b348015610a4a575f80fd5b50610a53611dc4565b604051610a60919061495e565b60405180910390f35b348015610a74575f80fd5b50610a8f6004803603810190610a8a91906148b3565b611dca565b604051610a9c919061490b565b60405180910390f35b348015610ab0575f80fd5b50610acb6004803603810190610ac691906148b3565b611eb0565b604051610ad8919061490b565b60405180910390f35b348015610aec575f80fd5b50610b076004803603810190610b029190614aec565b611ecd565b005b348015610b14575f80fd5b50610b2f6004803603810190610b2a9190614924565b611fb5565b005b348015610b3c575f80fd5b50610b456120ef565b005b348015610b52575f80fd5b50610b6d6004803603810190610b689190614924565b6122a9565b604051610b7a919061490b565b60405180910390f35b348015610b8e575f80fd5b50610b976122c6565b604051610ba4919061490b565b60405180910390f35b348015610bb8575f80fd5b50610bd36004803603810190610bce9190614ba5565b6122d9565b005b348015610be0575f80fd5b50610bfb6004803603810190610bf69190614aec565b6124bf565b005b348015610c08575f80fd5b50610c236004803603810190610c1e9190614b2a565b6125e1565b005b348015610c30575f80fd5b50610c4b6004803603810190610c4691906149eb565b6126e0565b005b348015610c58575f80fd5b50610c616127ef565b604051610c6e919061495e565b60405180910390f35b348015610c82575f80fd5b50610c9d6004803603810190610c9891906149eb565b6127f5565b604051610caa919061490b565b60405180910390f35b348015610cbe575f80fd5b50610cc7612949565b604051610cd4919061495e565b60405180910390f35b348015610ce8575f80fd5b50610cf161294f565b604051610cfe919061495e565b60405180910390f35b348015610d12575f80fd5b50610d2d6004803603810190610d289190614ba5565b612955565b604051610d3a919061495e565b60405180910390f35b348015610d4e575f80fd5b50610d696004803603810190610d649190614924565b6129d7565b005b348015610d76575f80fd5b50610d7f612bd6565b604051610d8c919061495e565b60405180910390f35b348015610da0575f80fd5b50610da9612bdc565b604051610db6919061495e565b60405180910390f35b348015610dca575f80fd5b50610de56004803603810190610de09190614924565b612be2565b005b348015610df2575f80fd5b50610dfb612cd8565b604051610e08919061495e565b60405180910390f35b348015610e1c575f80fd5b50610e25612cde565b604051610e32919061495e565b60405180910390f35b348015610e46575f80fd5b50610e616004803603810190610e5c9190614924565b612ce4565b005b348015610e6e575f80fd5b50610e77612ee3565b604051610e84919061495e565b60405180910390f35b348015610e98575f80fd5b50610eb36004803603810190610eae9190614924565b612ee9565b604051610ec0919061490b565b60405180910390f35b606060038054610ed890614c10565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490614c10565b8015610f4f5780601f10610f2657610100808354040283529160200191610f4f565b820191905f5260205f20905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b5f610f6c610f65612f3b565b8484612f42565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60125481565b60165481565b610fec612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661100a611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614c8a565b60405180910390fd5b670de0b6b3a76400006103e86005611076610fcf565b6110809190614cd5565b61108a9190614d43565b6110949190614d43565b8110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614de3565b60405180910390fd5b670de0b6b3a7640000816110ea9190614cd5565b60088190555050565b5f6110ff848484613105565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611146612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614e71565b60405180910390fd5b6111d9856111d1612f3b565b858403612f42565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f611296611205612f3b565b848460015f611212612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112919190614e8f565b612f42565b6001905092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611385612f3b565b73ffffffffffffffffffffffffffffffffffffffff166113a3611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614c8a565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61147c612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661149a611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614c8a565b60405180910390fd5b6114f95f613d47565b565b5f611504612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611522611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90614c8a565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6115a0612f3b565b73ffffffffffffffffffffffffffffffffffffffff166115be611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614c8a565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611674612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611692611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614c8a565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176c612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661178a611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c8a565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161180590614eef565b5f6040518083038185875af1925050503d805f811461183f576040519150601f19603f3d011682016040523d82523d5f602084013e611844565b606091505b5050905080611851575f80fd5b5050565b61185d612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661187b611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614c8a565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611997612f3b565b73ffffffffffffffffffffffffffffffffffffffff166119b5611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614c8a565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a339190614e8f565b611a3d9190614e8f565b600d819055506005600d541115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f4d565b60405180910390fd5b505050565b611a96612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ab4611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614c8a565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b8b612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ba9611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690614c8a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611c2b90614c10565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5790614c10565b8015611ca25780601f10611c7957610100808354040283529160200191611ca2565b820191905f5260205f20905b815481529060010190602001808311611c8557829003601f168201915b5050505050905090565b611cb4612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611cd2611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90614c8a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614fdb565b60405180910390fd5b611dc08282613e0a565b5050565b60105481565b5f8060015f611dd7612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890615069565b60405180910390fd5b611ea5611e9c612f3b565b85858403612f42565b600191505092915050565b5f611ec3611ebc612f3b565b8484613105565b6001905092915050565b611ed5612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ef3611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4090614c8a565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611fa782826124bf565b611fb18282611598565b5050565b611fbd612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611fdb611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614c8a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6120f7612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612115611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290614c8a565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016121a59190614a75565b602060405180830381865afa1580156121c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121e4919061509b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016122219291906150c6565b6020604051808303815f875af115801561223d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122619190615101565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156122a5573d5f803e3d5ffd5b5050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6122e1612f3b565b73ffffffffffffffffffffffffffffffffffffffff166122ff611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614c8a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90615176565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016123fd9190614a75565b602060405180830381865afa158015612418573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061243c919061509b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016124799291906150c6565b6020604051808303815f875af1158015612495573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124b99190615101565b50505050565b6124c7612f3b565b73ffffffffffffffffffffffffffffffffffffffff166124e5611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614c8a565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516125d5919061490b565b60405180910390a25050565b6125e9612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612607611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614c8a565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546126859190614e8f565b61268f9190614e8f565b601181905550600560115411156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906151de565b60405180910390fd5b505050565b6126e8612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612706611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614c8a565b60405180910390fd5b670de0b6b3a76400006103e8600a612772610fcf565b61277c9190614cd5565b6127869190614d43565b6127909190614d43565b8110156127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c99061526c565b60405180910390fd5b670de0b6b3a7640000816127e69190614cd5565b600a8190555050565b60085481565b5f6127fe612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661281c611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614c8a565b60405180910390fd5b620186a06001612880610fcf565b61288a9190614cd5565b6128949190614d43565b8210156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd906152fa565b60405180910390fd5b6103e860056128e3610fcf565b6128ed9190614cd5565b6128f79190614d43565b821115612939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293090615388565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6129df612f3b565b73ffffffffffffffffffffffffffffffffffffffff166129fd611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614c8a565b60405180910390fd5b600b60039054906101000a900460ff1615612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a90615416565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b3f5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b75906154a4565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612bea612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612c08611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5590614c8a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc390615532565b60405180910390fd5b612cd581613d47565b50565b60135481565b600a5481565b612cec612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612d0a611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5790614c8a565b60405180910390fd5b600b60039054906101000a900460ff1615612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790615416565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e4c5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e82906154a4565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa7906155c0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361301e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130159061564e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516130f8919061495e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316a906156dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d89061576a565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561326b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613262906157d2565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ec9061583a565b60405180910390fd5b601b5f9054906101000a900460ff161561339357601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613389906158c8565b60405180910390fd5b5b5f81036133aa576133a583835f613ea8565b613d42565b600b5f9054906101000a900460ff161561388e576133c6611b5b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134345750613404611b5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134a6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134bf5750600560149054906101000a900460ff16155b1561388d57600b60019054906101000a900460ff166135b35760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613573575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6135b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a990615930565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613650575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156136f75760085481111561369a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613691906159be565b60405180910390fd5b600a546136a68361142f565b826136b19190614e8f565b11156136f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e990615a26565b60405180910390fd5b61388c565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613794575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156137e3576008548111156137de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d590615ab4565b60405180910390fd5b61388b565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661388a57600a5461383d8361142f565b826138489190614e8f565b1115613889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388090615a26565b60405180910390fd5b5b5b5b5b5b5f6138983061142f565b90505f60095482101590508080156138bc5750600b60029054906101000a900460ff165b80156138d55750600560149054906101000a900460ff16155b80156139285750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561397b575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139ce575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a11576001600560146101000a81548160ff0219169083151502179055506139f661411d565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613ac0575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613ac9575f90505b5f8115613d3257601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b2757505f601154115b15613bf157613b546064613b466011548861441e90919063ffffffff16565b61443390919063ffffffff16565b905060115460135482613b679190614cd5565b613b719190614d43565b60165f828254613b819190614e8f565b9250508190555060115460145482613b999190614cd5565b613ba39190614d43565b60175f828254613bb39190614e8f565b9250508190555060115460125482613bcb9190614cd5565b613bd59190614d43565b60155f828254613be59190614e8f565b92505081905550613d0f565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c4857505f600d54115b15613d0e57613c756064613c67600d548861441e90919063ffffffff16565b61443390919063ffffffff16565b9050600d54600f5482613c889190614cd5565b613c929190614d43565b60165f828254613ca29190614e8f565b92505081905550600d5460105482613cba9190614cd5565b613cc49190614d43565b60175f828254613cd49190614e8f565b92505081905550600d54600e5482613cec9190614cd5565b613cf69190614d43565b60155f828254613d069190614e8f565b925050819055505b5b5f811115613d2357613d22873083613ea8565b5b8085613d2f9190615ad2565b94505b613d3d878787613ea8565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0d906156dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f7b9061576a565b60405180910390fd5b613f8f838383614448565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400990615b75565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546140a09190614e8f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614104919061495e565b60405180910390a361411784848461444d565b50505050565b5f6141273061142f565b90505f60175460155460165461413d9190614e8f565b6141479190614e8f565b90505f8083148061415757505f82145b156141645750505061441c565b60146009546141739190614cd5565b83111561418c5760146009546141899190614cd5565b92505b5f6002836016548661419e9190614cd5565b6141a89190614d43565b6141b29190614d43565b90505f6141c8828661445290919063ffffffff16565b90505f4790506141d782614467565b5f6141eb824761445290919063ffffffff16565b90505f61422e60026016546142009190614d43565b8861420b9190615ad2565b6142206015548561441e90919063ffffffff16565b61443390919063ffffffff16565b90505f61427160026016546142439190614d43565b8961424e9190615ad2565b6142636017548661441e90919063ffffffff16565b61443390919063ffffffff16565b90505f8183856142819190615ad2565b61428b9190615ad2565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516142e790614eef565b5f6040518083038185875af1925050503d805f8114614321576040519150601f19603f3d011682016040523d82523d5f602084013e614326565b606091505b5050809850505f8711801561433a57505f81115b1561438757614349878261469a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161437e93929190615b93565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516143cc90614eef565b5f6040518083038185875af1925050503d805f8114614406576040519150601f19603f3d011682016040523d82523d5f602084013e61440b565b606091505b505080985050505050505050505050505b565b5f818361442b9190614cd5565b905092915050565b5f81836144409190614d43565b905092915050565b505050565b505050565b5f818361445f9190615ad2565b905092915050565b5f600267ffffffffffffffff81111561448357614482615bc8565b5b6040519080825280602002602001820160405280156144b15781602001602082028036833780820191505090505b50905030815f815181106144c8576144c7615bf5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561456b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061458f9190615c36565b816001815181106145a3576145a2615bf5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614608307f000000000000000000000000000000000000000000000000000000000000000084612f42565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614669959493929190615d51565b5f604051808303815f87803b158015614680575f80fd5b505af1158015614692573d5f803e3d5ffd5b505050505050565b6146c5307f000000000000000000000000000000000000000000000000000000000000000084612f42565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061470e611b5b565b426040518863ffffffff1660e01b815260040161473096959493929190615da9565b60606040518083038185885af115801561474c573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906147719190615e08565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156147af578082015181840152602081019050614794565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6147d482614778565b6147de8185614782565b93506147ee818560208601614792565b6147f7816147ba565b840191505092915050565b5f6020820190508181035f83015261481a81846147ca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61484f82614826565b9050919050565b61485f81614845565b8114614869575f80fd5b50565b5f8135905061487a81614856565b92915050565b5f819050919050565b61489281614880565b811461489c575f80fd5b50565b5f813590506148ad81614889565b92915050565b5f80604083850312156148c9576148c8614822565b5b5f6148d68582860161486c565b92505060206148e78582860161489f565b9150509250929050565b5f8115159050919050565b614905816148f1565b82525050565b5f60208201905061491e5f8301846148fc565b92915050565b5f6020828403121561493957614938614822565b5b5f6149468482850161486c565b91505092915050565b61495881614880565b82525050565b5f6020820190506149715f83018461494f565b92915050565b5f819050919050565b5f61499a61499561499084614826565b614977565b614826565b9050919050565b5f6149ab82614980565b9050919050565b5f6149bc826149a1565b9050919050565b6149cc816149b2565b82525050565b5f6020820190506149e55f8301846149c3565b92915050565b5f60208284031215614a00576149ff614822565b5b5f614a0d8482850161489f565b91505092915050565b5f805f60608486031215614a2d57614a2c614822565b5b5f614a3a8682870161486c565b9350506020614a4b8682870161486c565b9250506040614a5c8682870161489f565b9150509250925092565b614a6f81614845565b82525050565b5f602082019050614a885f830184614a66565b92915050565b5f60ff82169050919050565b614aa381614a8e565b82525050565b5f602082019050614abc5f830184614a9a565b92915050565b614acb816148f1565b8114614ad5575f80fd5b50565b5f81359050614ae681614ac2565b92915050565b5f8060408385031215614b0257614b01614822565b5b5f614b0f8582860161486c565b9250506020614b2085828601614ad8565b9150509250929050565b5f805f60608486031215614b4157614b40614822565b5b5f614b4e8682870161489f565b9350506020614b5f8682870161489f565b9250506040614b708682870161489f565b9150509250925092565b5f60208284031215614b8f57614b8e614822565b5b5f614b9c84828501614ad8565b91505092915050565b5f8060408385031215614bbb57614bba614822565b5b5f614bc88582860161486c565b9250506020614bd98582860161486c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c2757607f821691505b602082108103614c3a57614c39614be3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614c74602083614782565b9150614c7f82614c40565b602082019050919050565b5f6020820190508181035f830152614ca181614c68565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614cdf82614880565b9150614cea83614880565b9250828202614cf881614880565b91508282048414831517614d0f57614d0e614ca8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614d4d82614880565b9150614d5883614880565b925082614d6857614d67614d16565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614dcd602f83614782565b9150614dd882614d73565b604082019050919050565b5f6020820190508181035f830152614dfa81614dc1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614e5b602883614782565b9150614e6682614e01565b604082019050919050565b5f6020820190508181035f830152614e8881614e4f565b9050919050565b5f614e9982614880565b9150614ea483614880565b9250828201905080821115614ebc57614ebb614ca8565b5b92915050565b5f81905092915050565b50565b5f614eda5f83614ec2565b9150614ee582614ecc565b5f82019050919050565b5f614ef982614ecf565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f614f37601683614782565b9150614f4282614f03565b602082019050919050565b5f6020820190508181035f830152614f6481614f2b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614fc5603983614782565b9150614fd082614f6b565b604082019050919050565b5f6020820190508181035f830152614ff281614fb9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f615053602583614782565b915061505e82614ff9565b604082019050919050565b5f6020820190508181035f83015261508081615047565b9050919050565b5f8151905061509581614889565b92915050565b5f602082840312156150b0576150af614822565b5b5f6150bd84828501615087565b91505092915050565b5f6040820190506150d95f830185614a66565b6150e6602083018461494f565b9392505050565b5f815190506150fb81614ac2565b92915050565b5f6020828403121561511657615115614822565b5b5f615123848285016150ed565b91505092915050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f615160601a83614782565b915061516b8261512c565b602082019050919050565b5f6020820190508181035f83015261518d81615154565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6151c8601783614782565b91506151d382615194565b602082019050919050565b5f6020820190508181035f8301526151f5816151bc565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f615256602483614782565b9150615261826151fc565b604082019050919050565b5f6020820190508181035f8301526152838161524a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6152e4603583614782565b91506152ef8261528a565b604082019050919050565b5f6020820190508181035f830152615311816152d8565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f615372603483614782565b915061537d82615318565b604082019050919050565b5f6020820190508181035f83015261539f81615366565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f615400602183614782565b915061540b826153a6565b604082019050919050565b5f6020820190508181035f83015261542d816153f4565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f61548e602e83614782565b915061549982615434565b604082019050919050565b5f6020820190508181035f8301526154bb81615482565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61551c602683614782565b9150615527826154c2565b604082019050919050565b5f6020820190508181035f83015261554981615510565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155aa602483614782565b91506155b582615550565b604082019050919050565b5f6020820190508181035f8301526155d78161559e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615638602283614782565b9150615643826155de565b604082019050919050565b5f6020820190508181035f8301526156658161562c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6156c6602583614782565b91506156d18261566c565b604082019050919050565b5f6020820190508181035f8301526156f3816156ba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615754602383614782565b915061575f826156fa565b604082019050919050565b5f6020820190508181035f83015261578181615748565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6157bc601283614782565b91506157c782615788565b602082019050919050565b5f6020820190508181035f8301526157e9816157b0565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f615824601483614782565b915061582f826157f0565b602082019050919050565b5f6020820190508181035f83015261585181615818565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6158b2602983614782565b91506158bd82615858565b604082019050919050565b5f6020820190508181035f8301526158df816158a6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61591a601683614782565b9150615925826158e6565b602082019050919050565b5f6020820190508181035f8301526159478161590e565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6159a8603583614782565b91506159b38261594e565b604082019050919050565b5f6020820190508181035f8301526159d58161599c565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a10601383614782565b9150615a1b826159dc565b602082019050919050565b5f6020820190508181035f830152615a3d81615a04565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615a9e603683614782565b9150615aa982615a44565b604082019050919050565b5f6020820190508181035f830152615acb81615a92565b9050919050565b5f615adc82614880565b9150615ae783614880565b9250828203905081811115615aff57615afe614ca8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615b5f602683614782565b9150615b6a82615b05565b604082019050919050565b5f6020820190508181035f830152615b8c81615b53565b9050919050565b5f606082019050615ba65f83018661494f565b615bb3602083018561494f565b615bc0604083018461494f565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c3081614856565b92915050565b5f60208284031215615c4b57615c4a614822565b5b5f615c5884828501615c22565b91505092915050565b5f819050919050565b5f615c84615c7f615c7a84615c61565b614977565b614880565b9050919050565b615c9481615c6a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615ccc81614845565b82525050565b5f615cdd8383615cc3565b60208301905092915050565b5f602082019050919050565b5f615cff82615c9a565b615d098185615ca4565b9350615d1483615cb4565b805f5b83811015615d44578151615d2b8882615cd2565b9750615d3683615ce9565b925050600181019050615d17565b5085935050505092915050565b5f60a082019050615d645f83018861494f565b615d716020830187615c8b565b8181036040830152615d838186615cf5565b9050615d926060830185614a66565b615d9f608083018461494f565b9695505050505050565b5f60c082019050615dbc5f830189614a66565b615dc9602083018861494f565b615dd66040830187615c8b565b615de36060830186615c8b565b615df06080830185614a66565b615dfd60a083018461494f565b979650505050505050565b5f805f60608486031215615e1f57615e1e614822565b5b5f615e2c86828701615087565b9350506020615e3d86828701615087565b9250506040615e4e86828701615087565b915050925092509256fea2646970667358221220307b6349b116c5b79acd7e2762649f8cd4b63cbb8fd9a650bbcc530b84140d9f64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103c6575f3560e01c80638095d564116101f1578063c17b5b8c1161010c578063e2f456051161009f578063f8b45b051161006e578063f8b45b0514610e11578063f9f92be414610e3b578063fde83a3414610e63578063fe575a8714610e8d576103cd565b8063e2f4560514610d6b578063f11a24d314610d95578063f2fde38b14610dbf578063f637434214610de7576103cd565b8063d729715f116100db578063d729715f14610cb3578063d85ba06314610cdd578063dd62ed3e14610d07578063e19b282314610d43576103cd565b8063c17b5b8c14610bfd578063c18bc19514610c25578063c8c8ebe414610c4d578063d257b34f14610c77576103cd565b8063a9059cbb11610184578063b62496f511610153578063b62496f514610b47578063bbc0c74214610b83578063bc205ad314610bad578063c024666814610bd5576103cd565b8063a9059cbb14610aa5578063aa0e438814610ae1578063adee28ff14610b09578063ae8f31f314610b31576103cd565b806395d89b41116101c057806395d89b41146109ed5780639a7a23d614610a175780639c2e4ac614610a3f578063a457c2d714610a69576103cd565b80638095d5641461095d5780638a8c523c146109855780638da5cb5b1461099b578063924de9b7146109c5576103cd565b806349bd5a5e116102e157806370a082311161027457806375e3661e1161024357806375e3661e146108bb578063782c4e99146108e35780637ca8448a1461090d5780637cb332bb14610935576103cd565b806370a0823114610817578063715018a614610853578063751039fc146108695780637571336a14610893576103cd565b806359927044116102b057806359927044146107835780635f189361146107ad5780636a486a8e146107c35780636ddd1713146107ed576103cd565b806349bd5a5e146106b75780634a62bb65146106e15780634e29e5231461070b5780634fbee19314610747576103cd565b80631a8145bb1161035957806327c8f8351161032857806327c8f835146105fd578063313ce5671461062757806339509351146106515780633dc599ff1461068d576103cd565b80631a8145bb14610545578063203e727e1461056f57806323b872dd1461059757806324b9f3c1146105d3576103cd565b8063156c2f3511610395578063156c2f351461049d5780631694505e146104c757806318160ddd146104f157806319eab0421461051b576103cd565b806306fdde03146103d1578063095ea7b3146103fb5780630e922ca71461043757806310d5de5314610461576103cd565b366103cd57005b5f80fd5b3480156103dc575f80fd5b506103e5610ec9565b6040516103f29190614802565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906148b3565b610f59565b60405161042e919061490b565b60405180910390f35b348015610442575f80fd5b5061044b610f76565b604051610458919061490b565b60405180910390f35b34801561046c575f80fd5b5061048760048036038101906104829190614924565b610f88565b604051610494919061490b565b60405180910390f35b3480156104a8575f80fd5b506104b1610fa5565b6040516104be919061495e565b60405180910390f35b3480156104d2575f80fd5b506104db610fab565b6040516104e891906149d2565b60405180910390f35b3480156104fc575f80fd5b50610505610fcf565b604051610512919061495e565b60405180910390f35b348015610526575f80fd5b5061052f610fd8565b60405161053c919061495e565b60405180910390f35b348015610550575f80fd5b50610559610fde565b604051610566919061495e565b60405180910390f35b34801561057a575f80fd5b50610595600480360381019061059091906149eb565b610fe4565b005b3480156105a2575f80fd5b506105bd60048036038101906105b89190614a16565b6110f3565b6040516105ca919061490b565b60405180910390f35b3480156105de575f80fd5b506105e76111e5565b6040516105f4919061495e565b60405180910390f35b348015610608575f80fd5b506106116111eb565b60405161061e9190614a75565b60405180910390f35b348015610632575f80fd5b5061063b6111f1565b6040516106489190614aa9565b60405180910390f35b34801561065c575f80fd5b50610677600480360381019061067291906148b3565b6111f9565b604051610684919061490b565b60405180910390f35b348015610698575f80fd5b506106a16112a0565b6040516106ae919061490b565b60405180910390f35b3480156106c2575f80fd5b506106cb6112b3565b6040516106d89190614a75565b60405180910390f35b3480156106ec575f80fd5b506106f56112d7565b604051610702919061490b565b60405180910390f35b348015610716575f80fd5b50610731600480360381019061072c9190614924565b6112e9565b60405161073e919061490b565b60405180910390f35b348015610752575f80fd5b5061076d60048036038101906107689190614924565b611306565b60405161077a919061490b565b60405180910390f35b34801561078e575f80fd5b50610797611358565b6040516107a49190614a75565b60405180910390f35b3480156107b8575f80fd5b506107c161137d565b005b3480156107ce575f80fd5b506107d7611416565b6040516107e4919061495e565b60405180910390f35b3480156107f8575f80fd5b5061080161141c565b60405161080e919061490b565b60405180910390f35b348015610822575f80fd5b5061083d60048036038101906108389190614924565b61142f565b60405161084a919061495e565b60405180910390f35b34801561085e575f80fd5b50610867611474565b005b348015610874575f80fd5b5061087d6114fb565b60405161088a919061490b565b60405180910390f35b34801561089e575f80fd5b506108b960048036038101906108b49190614aec565b611598565b005b3480156108c6575f80fd5b506108e160048036038101906108dc9190614924565b61166c565b005b3480156108ee575f80fd5b506108f761173f565b6040516109049190614a75565b60405180910390f35b348015610918575f80fd5b50610933600480360381019061092e9190614924565b611764565b005b348015610940575f80fd5b5061095b60048036038101906109569190614924565b611855565b005b348015610968575f80fd5b50610983600480360381019061097e9190614b2a565b61198f565b005b348015610990575f80fd5b50610999611a8e565b005b3480156109a6575f80fd5b506109af611b5b565b6040516109bc9190614a75565b60405180910390f35b3480156109d0575f80fd5b506109eb60048036038101906109e69190614b7a565b611b83565b005b3480156109f8575f80fd5b50610a01611c1c565b604051610a0e9190614802565b60405180910390f35b348015610a22575f80fd5b50610a3d6004803603810190610a389190614aec565b611cac565b005b348015610a4a575f80fd5b50610a53611dc4565b604051610a60919061495e565b60405180910390f35b348015610a74575f80fd5b50610a8f6004803603810190610a8a91906148b3565b611dca565b604051610a9c919061490b565b60405180910390f35b348015610ab0575f80fd5b50610acb6004803603810190610ac691906148b3565b611eb0565b604051610ad8919061490b565b60405180910390f35b348015610aec575f80fd5b50610b076004803603810190610b029190614aec565b611ecd565b005b348015610b14575f80fd5b50610b2f6004803603810190610b2a9190614924565b611fb5565b005b348015610b3c575f80fd5b50610b456120ef565b005b348015610b52575f80fd5b50610b6d6004803603810190610b689190614924565b6122a9565b604051610b7a919061490b565b60405180910390f35b348015610b8e575f80fd5b50610b976122c6565b604051610ba4919061490b565b60405180910390f35b348015610bb8575f80fd5b50610bd36004803603810190610bce9190614ba5565b6122d9565b005b348015610be0575f80fd5b50610bfb6004803603810190610bf69190614aec565b6124bf565b005b348015610c08575f80fd5b50610c236004803603810190610c1e9190614b2a565b6125e1565b005b348015610c30575f80fd5b50610c4b6004803603810190610c4691906149eb565b6126e0565b005b348015610c58575f80fd5b50610c616127ef565b604051610c6e919061495e565b60405180910390f35b348015610c82575f80fd5b50610c9d6004803603810190610c9891906149eb565b6127f5565b604051610caa919061490b565b60405180910390f35b348015610cbe575f80fd5b50610cc7612949565b604051610cd4919061495e565b60405180910390f35b348015610ce8575f80fd5b50610cf161294f565b604051610cfe919061495e565b60405180910390f35b348015610d12575f80fd5b50610d2d6004803603810190610d289190614ba5565b612955565b604051610d3a919061495e565b60405180910390f35b348015610d4e575f80fd5b50610d696004803603810190610d649190614924565b6129d7565b005b348015610d76575f80fd5b50610d7f612bd6565b604051610d8c919061495e565b60405180910390f35b348015610da0575f80fd5b50610da9612bdc565b604051610db6919061495e565b60405180910390f35b348015610dca575f80fd5b50610de56004803603810190610de09190614924565b612be2565b005b348015610df2575f80fd5b50610dfb612cd8565b604051610e08919061495e565b60405180910390f35b348015610e1c575f80fd5b50610e25612cde565b604051610e32919061495e565b60405180910390f35b348015610e46575f80fd5b50610e616004803603810190610e5c9190614924565b612ce4565b005b348015610e6e575f80fd5b50610e77612ee3565b604051610e84919061495e565b60405180910390f35b348015610e98575f80fd5b50610eb36004803603810190610eae9190614924565b612ee9565b604051610ec0919061490b565b60405180910390f35b606060038054610ed890614c10565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490614c10565b8015610f4f5780601f10610f2657610100808354040283529160200191610f4f565b820191905f5260205f20905b815481529060010190602001808311610f3257829003601f168201915b5050505050905090565b5f610f6c610f65612f3b565b8484612f42565b6001905092915050565b601b5f9054906101000a900460ff1681565b6019602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60125481565b60165481565b610fec612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661100a611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614c8a565b60405180910390fd5b670de0b6b3a76400006103e86005611076610fcf565b6110809190614cd5565b61108a9190614d43565b6110949190614d43565b8110156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90614de3565b60405180910390fd5b670de0b6b3a7640000816110ea9190614cd5565b60088190555050565b5f6110ff848484613105565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611146612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614e71565b60405180910390fd5b6111d9856111d1612f3b565b858403612f42565b60019150509392505050565b60155481565b61dead81565b5f6012905090565b5f611296611205612f3b565b848460015f611212612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112919190614e8f565b612f42565b6001905092915050565b600b60039054906101000a900460ff1681565b7f000000000000000000000000df4ca4ca049dbe5f44570f7433cd29253d34f89281565b600b5f9054906101000a900460ff1681565b601c602052805f5260405f205f915054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611385612f3b565b73ffffffffffffffffffffffffffffffffffffffff166113a3611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090614c8a565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b60115481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61147c612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661149a611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614c8a565b60405180910390fd5b6114f95f613d47565b565b5f611504612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611522611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90614c8a565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6115a0612f3b565b73ffffffffffffffffffffffffffffffffffffffff166115be611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614c8a565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611674612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611692611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90614c8a565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61176c612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661178a611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c8a565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161180590614eef565b5f6040518083038185875af1925050503d805f811461183f576040519150601f19603f3d011682016040523d82523d5f602084013e611844565b606091505b5050905080611851575f80fd5b5050565b61185d612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661187b611b5b565b73ffffffffffffffffffffffffffffffffffffffff16146118d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c890614c8a565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611997612f3b565b73ffffffffffffffffffffffffffffffffffffffff166119b5611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614c8a565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a339190614e8f565b611a3d9190614e8f565b600d819055506005600d541115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614f4d565b60405180910390fd5b505050565b611a96612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ab4611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190614c8a565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055505f601b5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b8b612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ba9611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf690614c8a565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611c2b90614c10565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5790614c10565b8015611ca25780601f10611c7957610100808354040283529160200191611ca2565b820191905f5260205f20905b815481529060010190602001808311611c8557829003601f168201915b5050505050905090565b611cb4612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611cd2611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f90614c8a565b60405180910390fd5b7f000000000000000000000000df4ca4ca049dbe5f44570f7433cd29253d34f89273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614fdb565b60405180910390fd5b611dc08282613e0a565b5050565b60105481565b5f8060015f611dd7612f3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890615069565b60405180910390fd5b611ea5611e9c612f3b565b85858403612f42565b600191505092915050565b5f611ec3611ebc612f3b565b8484613105565b6001905092915050565b611ed5612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611ef3611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4090614c8a565b60405180910390fd5b80601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611fa782826124bf565b611fb18282611598565b5050565b611fbd612f3b565b73ffffffffffffffffffffffffffffffffffffffff16611fdb611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614c8a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6120f7612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612115611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290614c8a565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016121a59190614a75565b602060405180830381865afa1580156121c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121e4919061509b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016122219291906150c6565b6020604051808303815f875af115801561223d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122619190615101565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156122a5573d5f803e3d5ffd5b5050565b601a602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6122e1612f3b565b73ffffffffffffffffffffffffffffffffffffffff166122ff611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234c90614c8a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90615176565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016123fd9190614a75565b602060405180830381865afa158015612418573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061243c919061509b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016124799291906150c6565b6020604051808303815f875af1158015612495573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124b99190615101565b50505050565b6124c7612f3b565b73ffffffffffffffffffffffffffffffffffffffff166124e5611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290614c8a565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516125d5919061490b565b60405180910390a25050565b6125e9612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612607611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265490614c8a565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546126859190614e8f565b61268f9190614e8f565b601181905550600560115411156126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d2906151de565b60405180910390fd5b505050565b6126e8612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612706611b5b565b73ffffffffffffffffffffffffffffffffffffffff161461275c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275390614c8a565b60405180910390fd5b670de0b6b3a76400006103e8600a612772610fcf565b61277c9190614cd5565b6127869190614d43565b6127909190614d43565b8110156127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c99061526c565b60405180910390fd5b670de0b6b3a7640000816127e69190614cd5565b600a8190555050565b60085481565b5f6127fe612f3b565b73ffffffffffffffffffffffffffffffffffffffff1661281c611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990614c8a565b60405180910390fd5b620186a06001612880610fcf565b61288a9190614cd5565b6128949190614d43565b8210156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd906152fa565b60405180910390fd5b6103e860056128e3610fcf565b6128ed9190614cd5565b6128f79190614d43565b821115612939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293090615388565b60405180910390fd5b8160098190555060019050919050565b60145481565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6129df612f3b565b73ffffffffffffffffffffffffffffffffffffffff166129fd611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614c8a565b60405180910390fd5b600b60039054906101000a900460ff1615612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a90615416565b60405180910390fd5b7f000000000000000000000000df4ca4ca049dbe5f44570f7433cd29253d34f89273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612b3f5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b75906154a4565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b600f5481565b612bea612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612c08611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5590614c8a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc390615532565b60405180910390fd5b612cd581613d47565b50565b60135481565b600a5481565b612cec612f3b565b73ffffffffffffffffffffffffffffffffffffffff16612d0a611b5b565b73ffffffffffffffffffffffffffffffffffffffff1614612d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5790614c8a565b60405180910390fd5b600b60039054906101000a900460ff1615612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790615416565b60405180910390fd5b7f000000000000000000000000df4ca4ca049dbe5f44570f7433cd29253d34f89273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612e4c5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e82906154a4565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60175481565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa7906155c0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361301e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130159061564e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516130f8919061495e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316a906156dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d89061576a565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561326b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613262906157d2565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156132f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ec9061583a565b60405180910390fd5b601b5f9054906101000a900460ff161561339357601c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16613392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613389906158c8565b60405180910390fd5b5b5f81036133aa576133a583835f613ea8565b613d42565b600b5f9054906101000a900460ff161561388e576133c6611b5b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156134345750613404611b5b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561346c57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134a6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156134bf5750600560149054906101000a900460ff16155b1561388d57600b60019054906101000a900460ff166135b35760185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613573575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6135b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a990615930565b60405180910390fd5b5b601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613650575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156136f75760085481111561369a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613691906159be565b60405180910390fd5b600a546136a68361142f565b826136b19190614e8f565b11156136f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e990615a26565b60405180910390fd5b61388c565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613794575060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156137e3576008548111156137de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d590615ab4565b60405180910390fd5b61388b565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661388a57600a5461383d8361142f565b826138489190614e8f565b1115613889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388090615a26565b60405180910390fd5b5b5b5b5b5b5f6138983061142f565b90505f60095482101590508080156138bc5750600b60029054906101000a900460ff165b80156138d55750600560149054906101000a900460ff16155b80156139285750601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561397b575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156139ce575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613a11576001600560146101000a81548160ff0219169083151502179055506139f661411d565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613ac0575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15613ac9575f90505b5f8115613d3257601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613b2757505f601154115b15613bf157613b546064613b466011548861441e90919063ffffffff16565b61443390919063ffffffff16565b905060115460135482613b679190614cd5565b613b719190614d43565b60165f828254613b819190614e8f565b9250508190555060115460145482613b999190614cd5565b613ba39190614d43565b60175f828254613bb39190614e8f565b9250508190555060115460125482613bcb9190614cd5565b613bd59190614d43565b60155f828254613be59190614e8f565b92505081905550613d0f565b601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613c4857505f600d54115b15613d0e57613c756064613c67600d548861441e90919063ffffffff16565b61443390919063ffffffff16565b9050600d54600f5482613c889190614cd5565b613c929190614d43565b60165f828254613ca29190614e8f565b92505081905550600d5460105482613cba9190614cd5565b613cc49190614d43565b60175f828254613cd49190614e8f565b92505081905550600d54600e5482613cec9190614cd5565b613cf69190614d43565b60155f828254613d069190614e8f565b925050819055505b5b5f811115613d2357613d22873083613ea8565b5b8085613d2f9190615ad2565b94505b613d3d878787613ea8565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0d906156dc565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f7b9061576a565b60405180910390fd5b613f8f838383614448565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015614012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161400990615b75565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546140a09190614e8f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051614104919061495e565b60405180910390a361411784848461444d565b50505050565b5f6141273061142f565b90505f60175460155460165461413d9190614e8f565b6141479190614e8f565b90505f8083148061415757505f82145b156141645750505061441c565b60146009546141739190614cd5565b83111561418c5760146009546141899190614cd5565b92505b5f6002836016548661419e9190614cd5565b6141a89190614d43565b6141b29190614d43565b90505f6141c8828661445290919063ffffffff16565b90505f4790506141d782614467565b5f6141eb824761445290919063ffffffff16565b90505f61422e60026016546142009190614d43565b8861420b9190615ad2565b6142206015548561441e90919063ffffffff16565b61443390919063ffffffff16565b90505f61427160026016546142439190614d43565b8961424e9190615ad2565b6142636017548661441e90919063ffffffff16565b61443390919063ffffffff16565b90505f8183856142819190615ad2565b61428b9190615ad2565b90505f6016819055505f6015819055505f60178190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516142e790614eef565b5f6040518083038185875af1925050503d805f8114614321576040519150601f19603f3d011682016040523d82523d5f602084013e614326565b606091505b5050809850505f8711801561433a57505f81115b1561438757614349878261469a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161437e93929190615b93565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516143cc90614eef565b5f6040518083038185875af1925050503d805f8114614406576040519150601f19603f3d011682016040523d82523d5f602084013e61440b565b606091505b505080985050505050505050505050505b565b5f818361442b9190614cd5565b905092915050565b5f81836144409190614d43565b905092915050565b505050565b505050565b5f818361445f9190615ad2565b905092915050565b5f600267ffffffffffffffff81111561448357614482615bc8565b5b6040519080825280602002602001820160405280156144b15781602001602082028036833780820191505090505b50905030815f815181106144c8576144c7615bf5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561456b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061458f9190615c36565b816001815181106145a3576145a2615bf5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614608307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f42565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401614669959493929190615d51565b5f604051808303815f87803b158015614680575f80fd5b505af1158015614692573d5f803e3d5ffd5b505050505050565b6146c5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612f42565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061470e611b5b565b426040518863ffffffff1660e01b815260040161473096959493929190615da9565b60606040518083038185885af115801561474c573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906147719190615e08565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156147af578082015181840152602081019050614794565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6147d482614778565b6147de8185614782565b93506147ee818560208601614792565b6147f7816147ba565b840191505092915050565b5f6020820190508181035f83015261481a81846147ca565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61484f82614826565b9050919050565b61485f81614845565b8114614869575f80fd5b50565b5f8135905061487a81614856565b92915050565b5f819050919050565b61489281614880565b811461489c575f80fd5b50565b5f813590506148ad81614889565b92915050565b5f80604083850312156148c9576148c8614822565b5b5f6148d68582860161486c565b92505060206148e78582860161489f565b9150509250929050565b5f8115159050919050565b614905816148f1565b82525050565b5f60208201905061491e5f8301846148fc565b92915050565b5f6020828403121561493957614938614822565b5b5f6149468482850161486c565b91505092915050565b61495881614880565b82525050565b5f6020820190506149715f83018461494f565b92915050565b5f819050919050565b5f61499a61499561499084614826565b614977565b614826565b9050919050565b5f6149ab82614980565b9050919050565b5f6149bc826149a1565b9050919050565b6149cc816149b2565b82525050565b5f6020820190506149e55f8301846149c3565b92915050565b5f60208284031215614a00576149ff614822565b5b5f614a0d8482850161489f565b91505092915050565b5f805f60608486031215614a2d57614a2c614822565b5b5f614a3a8682870161486c565b9350506020614a4b8682870161486c565b9250506040614a5c8682870161489f565b9150509250925092565b614a6f81614845565b82525050565b5f602082019050614a885f830184614a66565b92915050565b5f60ff82169050919050565b614aa381614a8e565b82525050565b5f602082019050614abc5f830184614a9a565b92915050565b614acb816148f1565b8114614ad5575f80fd5b50565b5f81359050614ae681614ac2565b92915050565b5f8060408385031215614b0257614b01614822565b5b5f614b0f8582860161486c565b9250506020614b2085828601614ad8565b9150509250929050565b5f805f60608486031215614b4157614b40614822565b5b5f614b4e8682870161489f565b9350506020614b5f8682870161489f565b9250506040614b708682870161489f565b9150509250925092565b5f60208284031215614b8f57614b8e614822565b5b5f614b9c84828501614ad8565b91505092915050565b5f8060408385031215614bbb57614bba614822565b5b5f614bc88582860161486c565b9250506020614bd98582860161486c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680614c2757607f821691505b602082108103614c3a57614c39614be3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614c74602083614782565b9150614c7f82614c40565b602082019050919050565b5f6020820190508181035f830152614ca181614c68565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614cdf82614880565b9150614cea83614880565b9250828202614cf881614880565b91508282048414831517614d0f57614d0e614ca8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614d4d82614880565b9150614d5883614880565b925082614d6857614d67614d16565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f614dcd602f83614782565b9150614dd882614d73565b604082019050919050565b5f6020820190508181035f830152614dfa81614dc1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614e5b602883614782565b9150614e6682614e01565b604082019050919050565b5f6020820190508181035f830152614e8881614e4f565b9050919050565b5f614e9982614880565b9150614ea483614880565b9250828201905080821115614ebc57614ebb614ca8565b5b92915050565b5f81905092915050565b50565b5f614eda5f83614ec2565b9150614ee582614ecc565b5f82019050919050565b5f614ef982614ecf565b9150819050919050565b7f4275792066656573206d757374206265203c3d20352e000000000000000000005f82015250565b5f614f37601683614782565b9150614f4282614f03565b602082019050919050565b5f6020820190508181035f830152614f6481614f2b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614fc5603983614782565b9150614fd082614f6b565b604082019050919050565b5f6020820190508181035f830152614ff281614fb9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f615053602583614782565b915061505e82614ff9565b604082019050919050565b5f6020820190508181035f83015261508081615047565b9050919050565b5f8151905061509581614889565b92915050565b5f602082840312156150b0576150af614822565b5b5f6150bd84828501615087565b91505092915050565b5f6040820190506150d95f830185614a66565b6150e6602083018461494f565b9392505050565b5f815190506150fb81614ac2565b92915050565b5f6020828403121561511657615115614822565b5b5f615123848285016150ed565b91505092915050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f615160601a83614782565b915061516b8261512c565b602082019050919050565b5f6020820190508181035f83015261518d81615154565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e0000000000000000005f82015250565b5f6151c8601783614782565b91506151d382615194565b602082019050919050565b5f6020820190508181035f8301526151f5816151bc565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f615256602483614782565b9150615261826151fc565b604082019050919050565b5f6020820190508181035f8301526152838161524a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6152e4603583614782565b91506152ef8261528a565b604082019050919050565b5f6020820190508181035f830152615311816152d8565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f615372603483614782565b915061537d82615318565b604082019050919050565b5f6020820190508181035f83015261539f81615366565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f615400602183614782565b915061540b826153a6565b604082019050919050565b5f6020820190508181035f83015261542d816153f4565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f61548e602e83614782565b915061549982615434565b604082019050919050565b5f6020820190508181035f8301526154bb81615482565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61551c602683614782565b9150615527826154c2565b604082019050919050565b5f6020820190508181035f83015261554981615510565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6155aa602483614782565b91506155b582615550565b604082019050919050565b5f6020820190508181035f8301526155d78161559e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f615638602283614782565b9150615643826155de565b604082019050919050565b5f6020820190508181035f8301526156658161562c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6156c6602583614782565b91506156d18261566c565b604082019050919050565b5f6020820190508181035f8301526156f3816156ba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f615754602383614782565b915061575f826156fa565b604082019050919050565b5f6020820190508181035f83015261578181615748565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f6157bc601283614782565b91506157c782615788565b602082019050919050565b5f6020820190508181035f8301526157e9816157b0565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f615824601483614782565b915061582f826157f0565b602082019050919050565b5f6020820190508181035f83015261585181615818565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d5f8201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b5f6158b2602983614782565b91506158bd82615858565b604082019050919050565b5f6020820190508181035f8301526158df816158a6565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61591a601683614782565b9150615925826158e6565b602082019050919050565b5f6020820190508181035f8301526159478161590e565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6159a8603583614782565b91506159b38261594e565b604082019050919050565b5f6020820190508181035f8301526159d58161599c565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615a10601383614782565b9150615a1b826159dc565b602082019050919050565b5f6020820190508181035f830152615a3d81615a04565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615a9e603683614782565b9150615aa982615a44565b604082019050919050565b5f6020820190508181035f830152615acb81615a92565b9050919050565b5f615adc82614880565b9150615ae783614880565b9250828203905081811115615aff57615afe614ca8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615b5f602683614782565b9150615b6a82615b05565b604082019050919050565b5f6020820190508181035f830152615b8c81615b53565b9050919050565b5f606082019050615ba65f83018661494f565b615bb3602083018561494f565b615bc0604083018461494f565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615c3081614856565b92915050565b5f60208284031215615c4b57615c4a614822565b5b5f615c5884828501615c22565b91505092915050565b5f819050919050565b5f615c84615c7f615c7a84615c61565b614977565b614880565b9050919050565b615c9481615c6a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b615ccc81614845565b82525050565b5f615cdd8383615cc3565b60208301905092915050565b5f602082019050919050565b5f615cff82615c9a565b615d098185615ca4565b9350615d1483615cb4565b805f5b83811015615d44578151615d2b8882615cd2565b9750615d3683615ce9565b925050600181019050615d17565b5085935050505092915050565b5f60a082019050615d645f83018861494f565b615d716020830187615c8b565b8181036040830152615d838186615cf5565b9050615d926060830185614a66565b615d9f608083018461494f565b9695505050505050565b5f60c082019050615dbc5f830189614a66565b615dc9602083018861494f565b615dd66040830187615c8b565b615de36060830186615c8b565b615df06080830185614a66565b615dfd60a083018461494f565b979650505050505050565b5f805f60608486031215615e1f57615e1e614822565b5b5f615e2c86828701615087565b9350506020615e3d86828701615087565b9250506040615e4e86828701615087565b915050925092509256fea2646970667358221220307b6349b116c5b79acd7e2762649f8cd4b63cbb8fd9a650bbcc530b84140d9f64736f6c63430008140033

Deployed Bytecode Sourcemap

30960:17938:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8919:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11086:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32510:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32223:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31715:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31034:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31857:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32006:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36448:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11737:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31967:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31137:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9881:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12638:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31534:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31092;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31414:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32553:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39259:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31265:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47420:90;;;;;;;;;;;;;:::i;:::-;;31822:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31494:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10210:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2436:103;;;;;;;;;;;;;:::i;:::-;;35752:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36996:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48531:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31229:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47170:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39090:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37367:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35552:148;;;;;;;;;;;;;:::i;:::-;;1785:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37259:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9138:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38373:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31788:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13356:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10550:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48637:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38881:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46610:256;;;;;;;;;;;;;:::i;:::-;;32444:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31454:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46874:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38183:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37770:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36731:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31299:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35943:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31932:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31681:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10788:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47995:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31341:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31751:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2694:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31894:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31381:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47518:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32046:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39393:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8919:100;8973:13;9006:5;8999:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8919:100;:::o;11086:169::-;11169:4;11186:39;11195:12;:10;:12::i;:::-;11209:7;11218:6;11186:8;:39::i;:::-;11243:4;11236:11;;11086:169;;;;:::o;32510:36::-;;;;;;;;;;;;;:::o;32223:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31715:29::-;;;;:::o;31034:51::-;;;:::o;10039:108::-;10100:7;10127:12;;10120:19;;10039:108;:::o;31857:30::-;;;;:::o;32006:33::-;;;;:::o;36448:275::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36585:4:::1;36577;36572:1;36556:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36555:26;;;;:::i;:::-;36554:35;;;;:::i;:::-;36544:6;:45;;36522:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36708:6;36698;:17;;;;:::i;:::-;36675:20;:40;;;;36448:275:::0;:::o;11737:492::-;11877:4;11894:36;11904:6;11912:9;11923:6;11894:9;:36::i;:::-;11943:24;11970:11;:19;11982:6;11970:19;;;;;;;;;;;;;;;:33;11990:12;:10;:12::i;:::-;11970:33;;;;;;;;;;;;;;;;11943:60;;12042:6;12022:16;:26;;12014:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12129:57;12138:6;12146:12;:10;:12::i;:::-;12179:6;12160:16;:25;12129:8;:57::i;:::-;12217:4;12210:11;;;11737:492;;;;;:::o;31967:32::-;;;;:::o;31137:53::-;31183:6;31137:53;:::o;9881:93::-;9939:5;9964:2;9957:9;;9881:93;:::o;12638:215::-;12726:4;12743:80;12752:12;:10;:12::i;:::-;12766:7;12812:10;12775:11;:25;12787:12;:10;:12::i;:::-;12775:25;;;;;;;;;;;;;;;:34;12801:7;12775:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12743:8;:80::i;:::-;12841:4;12834:11;;12638:215;;;;:::o;31534:38::-;;;;;;;;;;;;;:::o;31092:::-;;;:::o;31414:33::-;;;;;;;;;;;;;:::o;32553:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;39259:126::-;39325:4;39349:19;:28;39369:7;39349:28;;;;;;;;;;;;;;;;;;;;;;;;;39342:35;;39259:126;;;:::o;31265:25::-;;;;;;;;;;;;;:::o;47420:90::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47498:4:::1;47477:18;;:25;;;;;;;;;;;;;;;;;;47420:90::o:0;31822:28::-;;;;:::o;31494:31::-;;;;;;;;;;;;;:::o;10210:127::-;10284:7;10311:9;:18;10321:7;10311:18;;;;;;;;;;;;;;;;10304:25;;10210:127;;;:::o;2436:103::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2501:30:::1;2528:1;2501:18;:30::i;:::-;2436:103::o:0;35752:121::-;35804:4;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35838:5:::1;35821:14;;:22;;;;;;;;;;;;;;;;;;35861:4;35854:11;;35752:121:::0;:::o;36996:167::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37151:4:::1;37109:31;:39;37141:6;37109:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36996:167:::0;;:::o;48531:98::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48616:5:::1;48595:11;:18;48607:5;48595:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;48531:98:::0;:::o;31229:29::-;;;;;;;;;;;;;:::o;47170:196::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47243:12:::1;47261:6;:11;;47294:21;47261:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47242:89;;;47350:7;47342:16;;;::::0;::::1;;47231:135;47170:196:::0;:::o;39090:161::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39199:10:::1;;;;;;;;;;;39170:40;;39188:9;39170:40;;;;;;;;;;;;39234:9;39221:10;;:22;;;;;;;;;;;;;;;;;;39090:161:::0;:::o;37367:395::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37534:12:::1;37517:14;:29;;;;37575:13;37557:15;:31;;;;37612:8;37599:10;:21;;;;37681:10;;37663:15;;37646:14;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;37631:12;:60;;;;37726:1;37710:12;;:17;;37702:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;37367:395:::0;;;:::o;35552:148::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35623:4:::1;35607:13;;:20;;;;;;;;;;;;;;;;;;35652:4;35638:11;;:18;;;;;;;;;;;;;;;;;;35687:5;35667:17;;:25;;;;;;;;;;;;;;;;;;35552:148::o:0;1785:87::-;1831:7;1858:6;;;;;;;;;;;1851:13;;1785:87;:::o;37259:100::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37344:7:::1;37330:11;;:21;;;;;;;;;;;;;;;;;;37259:100:::0;:::o;9138:104::-;9194:13;9227:7;9220:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9138:104;:::o;38373:304::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38517:13:::1;38509:21;;:4;:21;;::::0;38487:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38628:41;38657:4;38663:5;38628:28;:41::i;:::-;38373:304:::0;;:::o;31788:25::-;;;;:::o;13356:413::-;13449:4;13466:24;13493:11;:25;13505:12;:10;:12::i;:::-;13493:25;;;;;;;;;;;;;;;:34;13519:7;13493:34;;;;;;;;;;;;;;;;13466:61;;13566:15;13546:16;:35;;13538:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13659:67;13668:12;:10;:12::i;:::-;13682:7;13710:15;13691:16;:34;13659:8;:67::i;:::-;13757:4;13750:11;;;13356:413;;;;:::o;10550:175::-;10636:4;10653:42;10663:12;:10;:12::i;:::-;10677:9;10688:6;10653:9;:42::i;:::-;10713:4;10706:11;;10550:175;;;;:::o;48637:258::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48771:12:::1;48736:25;:32;48762:5;48736:32;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;48794:36;48810:5;48817:12;48794:15;:36::i;:::-;48841:46;48867:5;48874:12;48841:25;:46::i;:::-;48637:258:::0;;:::o;38881:201::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39014:14:::1;;;;;;;;;;;38973:56;;38995:17;38973:56;;;;;;;;;;;;39057:17;39040:14;;:34;;;;;;;;;;;;;;;;;;38881:201:::0;:::o;46610:256::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46670:15:::1;46703:4;46688:31;;;46728:4;46688:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46670:64;;46760:4;46745:30;;;46776:10;46788:7;46745:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46815:10;46807:28;;:51;46836:21;46807:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;46659:207;46610:256::o:0;32444:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;31454:33::-;;;;;;;;;;;;;:::o;46874:288::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46987:1:::1;46969:20;;:6;:20;;::::0;46961:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47031:24;47065:6;47058:24;;;47091:4;47058:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47031:66;;47115:6;47108:23;;;47132:3;47137:16;47108:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46950:212;46874:288:::0;;:::o;38183:182::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38299:8:::1;38268:19;:28;38288:7;38268:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38339:7;38323:34;;;38348:8;38323:34;;;;;;:::i;:::-;;;;;;;;38183:182:::0;;:::o;37770:405::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37939:12:::1;37921:15;:30;;;;37981:13;37962:16;:32;;;;38019:8;38005:11;:22;;;;38091:11;;38072:16;;38054:15;;:34;;;;:::i;:::-;:48;;;;:::i;:::-;38038:13;:64;;;;38138:1;38121:13;;:18;;38113:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;37770:405:::0;;;:::o;36731:257::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36872:4:::1;36864;36858:2;36842:13;:11;:13::i;:::-;:18;;;;:::i;:::-;36841:27;;;;:::i;:::-;36840:36;;;;:::i;:::-;36830:6;:46;;36808:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;36973:6;36963;:17;;;;:::i;:::-;36951:9;:29;;;;36731:257:::0;:::o;31299:35::-;;;;:::o;35943:497::-;36051:4;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36130:6:::1;36125:1;36109:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36108:28;;;;:::i;:::-;36095:9;:41;;36073:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;36285:4;36280:1;36264:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36263:26;;;;:::i;:::-;36250:9;:39;;36228:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;36401:9;36380:18;:30;;;;36428:4;36421:11;;35943:497:::0;;;:::o;31932:26::-;;;;:::o;31681:27::-;;;;:::o;10788:151::-;10877:7;10904:11;:18;10916:5;10904:18;;;;;;;;;;;;;;;:27;10923:7;10904:27;;;;;;;;;;;;;;;;10897:34;;10788:151;;;;:::o;47995:403::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48083:18:::1;;;;;;;;;;;48082:19;48074:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48193:13;48172:35;;:9;:35;;;;:103;;;;;48232:42;48211:64;;:9;:64;;;;48172:103;48150:200;;;;;;;;;;;;:::i;:::-;;;;;;;;;48386:4;48361:11;:22;48373:9;48361:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47995:403:::0;:::o;31341:33::-;;;;:::o;31751:30::-;;;;:::o;2694:201::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2803:1:::1;2783:22;;:8;:22;;::::0;2775:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2859:28;2878:8;2859:18;:28::i;:::-;2694:201:::0;:::o;31894:31::-;;;;:::o;31381:24::-;;;;:::o;47518:374::-;2016:12;:10;:12::i;:::-;2005:23;;:7;:5;:7::i;:::-;:23;;;1997:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47589:18:::1;;;;;;;;;;;47588:19;47580:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47695:13;47678:31;;:5;:31;;;;:95;;;;;47730:42;47713:60;;:5;:60;;;;47678:95;47656:192;;;;;;;;;;;;:::i;:::-;;;;;;;;;47880:4;47859:11;:18;47871:5;47859:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;47518:374:::0;:::o;32046:28::-;;;;:::o;39393:113::-;39454:4;39478:11;:20;39490:7;39478:20;;;;;;;;;;;;;;;;;;;;;;;;;39471:27;;39393:113;;;:::o;652:98::-;705:7;732:10;725:17;;652:98;:::o;17040:380::-;17193:1;17176:19;;:5;:19;;;17168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17274:1;17255:21;;:7;:21;;;17247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17358:6;17328:11;:18;17340:5;17328:18;;;;;;;;;;;;;;;:27;17347:7;17328:27;;;;;;;;;;;;;;;:36;;;;17396:7;17380:32;;17389:5;17380:32;;;17405:6;17380:32;;;;;;:::i;:::-;;;;;;;;17040:380;;;:::o;39514:4189::-;39662:1;39646:18;;:4;:18;;;39638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39739:1;39725:16;;:2;:16;;;39717:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39801:11;:17;39813:4;39801:17;;;;;;;;;;;;;;;;;;;;;;;;;39800:18;39792:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;39860:11;:15;39872:2;39860:15;;;;;;;;;;;;;;;;;;;;;;;;;39859:16;39851:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;39916:17;;;;;;;;;;;39912:135;;;39958:25;:31;39984:4;39958:31;;;;;;;;;;;;;;;;;;;;;;;;;39950:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39912:135;40073:1;40063:6;:11;40059:93;;40091:28;40107:4;40113:2;40117:1;40091:15;:28::i;:::-;40134:7;;40059:93;40168:14;;;;;;;;;;;40164:1694;;;40229:7;:5;:7::i;:::-;40221:15;;:4;:15;;;;:49;;;;;40263:7;:5;:7::i;:::-;40257:13;;:2;:13;;;;40221:49;:86;;;;;40305:1;40291:16;;:2;:16;;;;40221:86;:128;;;;;40342:6;40328:21;;:2;:21;;;;40221:128;:158;;;;;40371:8;;;;;;;;;;;40370:9;40221:158;40199:1648;;;40419:13;;;;;;;;;;;40414:223;;40491:19;:25;40511:4;40491:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40520:19;:23;40540:2;40520:23;;;;;;;;;;;;;;;;;;;;;;;;;40491:52;40457:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40414:223;40711:25;:31;40737:4;40711:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40768:31;:35;40800:2;40768:35;;;;;;;;;;;;;;;;;;;;;;;;;40767:36;40711:92;40685:1147;;;40890:20;;40880:6;:30;;40846:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41098:9;;41081:13;41091:2;41081:9;:13::i;:::-;41072:6;:22;;;;:::i;:::-;:35;;41038:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40685:1147;;;41276:25;:29;41302:2;41276:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41331:31;:37;41363:4;41331:37;;;;;;;;;;;;;;;;;;;;;;;;;41330:38;41276:92;41250:582;;;41455:20;;41445:6;:30;;41411:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;41250:582;;;41612:31;:35;41644:2;41612:35;;;;;;;;;;;;;;;;;;;;;;;;;41607:225;;41732:9;;41715:13;41725:2;41715:9;:13::i;:::-;41706:6;:22;;;;:::i;:::-;:35;;41672:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41607:225;41250:582;40685:1147;40199:1648;40164:1694;41870:28;41901:24;41919:4;41901:9;:24::i;:::-;41870:55;;41938:12;41977:18;;41953:20;:42;;41938:57;;42026:7;:35;;;;;42050:11;;;;;;;;;;;42026:35;:61;;;;;42079:8;;;;;;;;;;;42078:9;42026:61;:110;;;;;42105:25;:31;42131:4;42105:31;;;;;;;;;;;;;;;;;;;;;;;;;42104:32;42026:110;:153;;;;;42154:19;:25;42174:4;42154:25;;;;;;;;;;;;;;;;;;;;;;;;;42153:26;42026:153;:194;;;;;42197:19;:23;42217:2;42197:23;;;;;;;;;;;;;;;;;;;;;;;;;42196:24;42026:194;42008:326;;;42258:4;42247:8;;:15;;;;;;;;;;;;;;;;;;42279:10;:8;:10::i;:::-;42317:5;42306:8;;:16;;;;;;;;;;;;;;;;;;42008:326;42346:12;42362:8;;;;;;;;;;;42361:9;42346:24;;42472:19;:25;42492:4;42472:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42501:19;:23;42521:2;42501:23;;;;;;;;;;;;;;;;;;;;;;;;;42472:52;42468:100;;;42551:5;42541:15;;42468:100;42580:12;42685:7;42681:969;;;42737:25;:29;42763:2;42737:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42786:1;42770:13;;:17;42737:50;42733:768;;;42815:34;42845:3;42815:25;42826:13;;42815:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42808:41;;42918:13;;42898:16;;42891:4;:23;;;;:::i;:::-;42890:41;;;;:::i;:::-;42868:18;;:63;;;;;;;:::i;:::-;;;;;;;;42990:13;;42975:11;;42968:4;:18;;;;:::i;:::-;42967:36;;;;:::i;:::-;42950:13;;:53;;;;;;;:::i;:::-;;;;;;;;43070:13;;43051:15;;43044:4;:22;;;;:::i;:::-;43043:40;;;;:::i;:::-;43022:17;;:61;;;;;;;:::i;:::-;;;;;;;;42733:768;;;43145:25;:31;43171:4;43145:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43195:1;43180:12;;:16;43145:51;43141:360;;;43224:33;43253:3;43224:24;43235:12;;43224:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43217:40;;43325:12;;43306:15;;43299:4;:22;;;;:::i;:::-;43298:39;;;;:::i;:::-;43276:18;;:61;;;;;;;:::i;:::-;;;;;;;;43395:12;;43381:10;;43374:4;:17;;;;:::i;:::-;43373:34;;;;:::i;:::-;43356:13;;:51;;;;;;;:::i;:::-;;;;;;;;43473:12;;43455:14;;43448:4;:21;;;;:::i;:::-;43447:38;;;;:::i;:::-;43426:17;;:59;;;;;;;:::i;:::-;;;;;;;;43141:360;42733:768;43528:1;43521:4;:8;43517:91;;;43550:42;43566:4;43580;43587;43550:15;:42::i;:::-;43517:91;43634:4;43624:14;;;;;:::i;:::-;;;42681:969;43662:33;43678:4;43684:2;43688:6;43662:15;:33::i;:::-;39627:4076;;;;39514:4189;;;;:::o;3055:191::-;3129:16;3148:6;;;;;;;;;;;3129:25;;3174:8;3165:6;;:17;;;;;;;;;;;;;;;;;;3229:8;3198:40;;3219:8;3198:40;;;;;;;;;;;;3118:128;3055:191;:::o;38685:188::-;38802:5;38768:25;:31;38794:4;38768:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38859:5;38825:40;;38853:4;38825:40;;;;;;;;;;;;38685:188;;:::o;14259:733::-;14417:1;14399:20;;:6;:20;;;14391:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14501:1;14480:23;;:9;:23;;;14472:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14556:47;14577:6;14585:9;14596:6;14556:20;:47::i;:::-;14616:21;14640:9;:17;14650:6;14640:17;;;;;;;;;;;;;;;;14616:41;;14693:6;14676:13;:23;;14668:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14814:6;14798:13;:22;14778:9;:17;14788:6;14778:17;;;;;;;;;;;;;;;:42;;;;14866:6;14842:9;:20;14852:9;14842:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14907:9;14890:35;;14899:6;14890:35;;;14918:6;14890:35;;;;;;:::i;:::-;;;;;;;;14938:46;14958:6;14966:9;14977:6;14938:19;:46::i;:::-;14380:612;14259:733;;;:::o;44829:1773::-;44868:23;44894:24;44912:4;44894:9;:24::i;:::-;44868:50;;44929:25;45024:13;;44991:17;;44957:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;44929:108;;45048:12;45096:1;45077:15;:20;:46;;;;45122:1;45101:17;:22;45077:46;45073:85;;;45140:7;;;;;45073:85;45213:2;45192:18;;:23;;;;:::i;:::-;45174:15;:41;45170:115;;;45271:2;45250:18;;:23;;;;:::i;:::-;45232:41;;45170:115;45346:23;45459:1;45426:17;45391:18;;45373:15;:36;;;;:::i;:::-;45372:71;;;;:::i;:::-;:88;;;;:::i;:::-;45346:114;;45471:26;45500:36;45520:15;45500;:19;;:36;;;;:::i;:::-;45471:65;;45549:25;45577:21;45549:49;;45611:36;45628:18;45611:16;:36::i;:::-;45660:18;45681:44;45707:17;45681:21;:25;;:44;;;;:::i;:::-;45660:65;;45738:22;45763:83;45843:1;45822:18;;:22;;;;:::i;:::-;45801:17;:44;;;;:::i;:::-;45763:33;45778:17;;45763:10;:14;;:33;;;;:::i;:::-;:37;;:83;;;;:::i;:::-;45738:108;;45867:18;45888:79;45964:1;45943:18;;:22;;;;:::i;:::-;45922:17;:44;;;;:::i;:::-;45888:29;45903:13;;45888:10;:14;;:29;;;;:::i;:::-;:33;;:79;;;;:::i;:::-;45867:100;;45980:23;46036:10;46019:14;46006:10;:27;;;;:::i;:::-;:40;;;;:::i;:::-;45980:66;;46080:1;46059:18;:22;;;;46112:1;46092:17;:21;;;;46140:1;46124:13;:17;;;;46176:10;;;;;;;;;;;46168:24;;46200:10;46168:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46154:61;;;;;46250:1;46232:15;:19;:42;;;;;46273:1;46255:15;:19;46232:42;46228:278;;;46291:46;46304:15;46321;46291:12;:46::i;:::-;46357:137;46390:18;46427:15;46461:18;;46357:137;;;;;;;;:::i;:::-;;;;;;;;46228:278;46540:14;;;;;;;;;;;46532:28;;46568:21;46532:62;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46518:76;;;;;44857:1745;;;;;;;;;;44829:1773;:::o;22172:98::-;22230:7;22261:1;22257;:5;;;;:::i;:::-;22250:12;;22172:98;;;;:::o;22571:::-;22629:7;22660:1;22656;:5;;;;:::i;:::-;22649:12;;22571:98;;;;:::o;18020:125::-;;;;:::o;18749:124::-;;;;:::o;21815:98::-;21873:7;21904:1;21900;:5;;;;:::i;:::-;21893:12;;21815:98;;;;:::o;43711:589::-;43837:21;43875:1;43861:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43837:40;;43906:4;43888;43893:1;43888:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43932:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43922:4;43927:1;43922:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43967:62;43984:4;43999:15;44017:11;43967:8;:62::i;:::-;44068:15;:66;;;44149:11;44175:1;44219:4;44246;44266:15;44068:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43766:534;43711:589;:::o;44308:513::-;44456:62;44473:4;44488:15;44506:11;44456:8;:62::i;:::-;44561:15;:31;;;44600:9;44633:4;44653:11;44679:1;44722;44765:7;:5;:7::i;:::-;44787:15;44561:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44308:513;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:147::-;13863:11;13900:3;13885:18;;13762:147;;;;:::o;13915:114::-;;:::o;14035:398::-;14194:3;14215:83;14296:1;14291:3;14215:83;:::i;:::-;14208:90;;14307:93;14396:3;14307:93;:::i;:::-;14425:1;14420:3;14416:11;14409:18;;14035:398;;;:::o;14439:379::-;14623:3;14645:147;14788:3;14645:147;:::i;:::-;14638:154;;14809:3;14802:10;;14439:379;;;:::o;14824:172::-;14964:24;14960:1;14952:6;14948:14;14941:48;14824:172;:::o;15002:366::-;15144:3;15165:67;15229:2;15224:3;15165:67;:::i;:::-;15158:74;;15241:93;15330:3;15241:93;:::i;:::-;15359:2;15354:3;15350:12;15343:19;;15002:366;;;:::o;15374:419::-;15540:4;15578:2;15567:9;15563:18;15555:26;;15627:9;15621:4;15617:20;15613:1;15602:9;15598:17;15591:47;15655:131;15781:4;15655:131;:::i;:::-;15647:139;;15374:419;;;:::o;15799:244::-;15939:34;15935:1;15927:6;15923:14;15916:58;16008:27;16003:2;15995:6;15991:15;15984:52;15799:244;:::o;16049:366::-;16191:3;16212:67;16276:2;16271:3;16212:67;:::i;:::-;16205:74;;16288:93;16377:3;16288:93;:::i;:::-;16406:2;16401:3;16397:12;16390:19;;16049:366;;;:::o;16421:419::-;16587:4;16625:2;16614:9;16610:18;16602:26;;16674:9;16668:4;16664:20;16660:1;16649:9;16645:17;16638:47;16702:131;16828:4;16702:131;:::i;:::-;16694:139;;16421:419;;;:::o;16846:224::-;16986:34;16982:1;16974:6;16970:14;16963:58;17055:7;17050:2;17042:6;17038:15;17031:32;16846:224;:::o;17076:366::-;17218:3;17239:67;17303:2;17298:3;17239:67;:::i;:::-;17232:74;;17315:93;17404:3;17315:93;:::i;:::-;17433:2;17428:3;17424:12;17417:19;;17076:366;;;:::o;17448:419::-;17614:4;17652:2;17641:9;17637:18;17629:26;;17701:9;17695:4;17691:20;17687:1;17676:9;17672:17;17665:47;17729:131;17855:4;17729:131;:::i;:::-;17721:139;;17448:419;;;:::o;17873:143::-;17930:5;17961:6;17955:13;17946:22;;17977:33;18004:5;17977:33;:::i;:::-;17873:143;;;;:::o;18022:351::-;18092:6;18141:2;18129:9;18120:7;18116:23;18112:32;18109:119;;;18147:79;;:::i;:::-;18109:119;18267:1;18292:64;18348:7;18339:6;18328:9;18324:22;18292:64;:::i;:::-;18282:74;;18238:128;18022:351;;;;:::o;18379:332::-;18500:4;18538:2;18527:9;18523:18;18515:26;;18551:71;18619:1;18608:9;18604:17;18595:6;18551:71;:::i;:::-;18632:72;18700:2;18689:9;18685:18;18676:6;18632:72;:::i;:::-;18379:332;;;;;:::o;18717:137::-;18771:5;18802:6;18796:13;18787:22;;18818:30;18842:5;18818:30;:::i;:::-;18717:137;;;;:::o;18860:345::-;18927:6;18976:2;18964:9;18955:7;18951:23;18947:32;18944:119;;;18982:79;;:::i;:::-;18944:119;19102:1;19127:61;19180:7;19171:6;19160:9;19156:22;19127:61;:::i;:::-;19117:71;;19073:125;18860:345;;;;:::o;19211:176::-;19351:28;19347:1;19339:6;19335:14;19328:52;19211:176;:::o;19393:366::-;19535:3;19556:67;19620:2;19615:3;19556:67;:::i;:::-;19549:74;;19632:93;19721:3;19632:93;:::i;:::-;19750:2;19745:3;19741:12;19734:19;;19393:366;;;:::o;19765:419::-;19931:4;19969:2;19958:9;19954:18;19946:26;;20018:9;20012:4;20008:20;20004:1;19993:9;19989:17;19982:47;20046:131;20172:4;20046:131;:::i;:::-;20038:139;;19765:419;;;:::o;20190:173::-;20330:25;20326:1;20318:6;20314:14;20307:49;20190:173;:::o;20369:366::-;20511:3;20532:67;20596:2;20591:3;20532:67;:::i;:::-;20525:74;;20608:93;20697:3;20608:93;:::i;:::-;20726:2;20721:3;20717:12;20710:19;;20369:366;;;:::o;20741:419::-;20907:4;20945:2;20934:9;20930:18;20922:26;;20994:9;20988:4;20984:20;20980:1;20969:9;20965:17;20958:47;21022:131;21148:4;21022:131;:::i;:::-;21014:139;;20741:419;;;:::o;21166:223::-;21306:34;21302:1;21294:6;21290:14;21283:58;21375:6;21370:2;21362:6;21358:15;21351:31;21166:223;:::o;21395:366::-;21537:3;21558:67;21622:2;21617:3;21558:67;:::i;:::-;21551:74;;21634:93;21723:3;21634:93;:::i;:::-;21752:2;21747:3;21743:12;21736:19;;21395:366;;;:::o;21767:419::-;21933:4;21971:2;21960:9;21956:18;21948:26;;22020:9;22014:4;22010:20;22006:1;21995:9;21991:17;21984:47;22048:131;22174:4;22048:131;:::i;:::-;22040:139;;21767:419;;;:::o;22192:240::-;22332:34;22328:1;22320:6;22316:14;22309:58;22401:23;22396:2;22388:6;22384:15;22377:48;22192:240;:::o;22438:366::-;22580:3;22601:67;22665:2;22660:3;22601:67;:::i;:::-;22594:74;;22677:93;22766:3;22677:93;:::i;:::-;22795:2;22790:3;22786:12;22779:19;;22438:366;;;:::o;22810:419::-;22976:4;23014:2;23003:9;22999:18;22991:26;;23063:9;23057:4;23053:20;23049:1;23038:9;23034:17;23027:47;23091:131;23217:4;23091:131;:::i;:::-;23083:139;;22810:419;;;:::o;23235:239::-;23375:34;23371:1;23363:6;23359:14;23352:58;23444:22;23439:2;23431:6;23427:15;23420:47;23235:239;:::o;23480:366::-;23622:3;23643:67;23707:2;23702:3;23643:67;:::i;:::-;23636:74;;23719:93;23808:3;23719:93;:::i;:::-;23837:2;23832:3;23828:12;23821:19;;23480:366;;;:::o;23852:419::-;24018:4;24056:2;24045:9;24041:18;24033:26;;24105:9;24099:4;24095:20;24091:1;24080:9;24076:17;24069:47;24133:131;24259:4;24133:131;:::i;:::-;24125:139;;23852:419;;;:::o;24277:220::-;24417:34;24413:1;24405:6;24401:14;24394:58;24486:3;24481:2;24473:6;24469:15;24462:28;24277:220;:::o;24503:366::-;24645:3;24666:67;24730:2;24725:3;24666:67;:::i;:::-;24659:74;;24742:93;24831:3;24742:93;:::i;:::-;24860:2;24855:3;24851:12;24844:19;;24503:366;;;:::o;24875:419::-;25041:4;25079:2;25068:9;25064:18;25056:26;;25128:9;25122:4;25118:20;25114:1;25103:9;25099:17;25092:47;25156:131;25282:4;25156:131;:::i;:::-;25148:139;;24875:419;;;:::o;25300:233::-;25440:34;25436:1;25428:6;25424:14;25417:58;25509:16;25504:2;25496:6;25492:15;25485:41;25300:233;:::o;25539:366::-;25681:3;25702:67;25766:2;25761:3;25702:67;:::i;:::-;25695:74;;25778:93;25867:3;25778:93;:::i;:::-;25896:2;25891:3;25887:12;25880:19;;25539:366;;;:::o;25911:419::-;26077:4;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;25911:419;;;:::o;26336:225::-;26476:34;26472:1;26464:6;26460:14;26453:58;26545:8;26540:2;26532:6;26528:15;26521:33;26336:225;:::o;26567:366::-;26709:3;26730:67;26794:2;26789:3;26730:67;:::i;:::-;26723:74;;26806:93;26895:3;26806:93;:::i;:::-;26924:2;26919:3;26915:12;26908:19;;26567:366;;;:::o;26939:419::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:223::-;27504:34;27500:1;27492:6;27488:14;27481:58;27573:6;27568:2;27560:6;27556:15;27549:31;27364:223;:::o;27593:366::-;27735:3;27756:67;27820:2;27815:3;27756:67;:::i;:::-;27749:74;;27832:93;27921:3;27832:93;:::i;:::-;27950:2;27945:3;27941:12;27934:19;;27593:366;;;:::o;27965:419::-;28131:4;28169:2;28158:9;28154:18;28146:26;;28218:9;28212:4;28208:20;28204:1;28193:9;28189:17;28182:47;28246:131;28372:4;28246:131;:::i;:::-;28238:139;;27965:419;;;:::o;28390:221::-;28530:34;28526:1;28518:6;28514:14;28507:58;28599:4;28594:2;28586:6;28582:15;28575:29;28390:221;:::o;28617:366::-;28759:3;28780:67;28844:2;28839:3;28780:67;:::i;:::-;28773:74;;28856:93;28945:3;28856:93;:::i;:::-;28974:2;28969:3;28965:12;28958:19;;28617:366;;;:::o;28989:419::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:224::-;29554:34;29550:1;29542:6;29538:14;29531:58;29623:7;29618:2;29610:6;29606:15;29599:32;29414:224;:::o;29644:366::-;29786:3;29807:67;29871:2;29866:3;29807:67;:::i;:::-;29800:74;;29883:93;29972:3;29883:93;:::i;:::-;30001:2;29996:3;29992:12;29985:19;;29644:366;;;:::o;30016:419::-;30182:4;30220:2;30209:9;30205:18;30197:26;;30269:9;30263:4;30259:20;30255:1;30244:9;30240:17;30233:47;30297:131;30423:4;30297:131;:::i;:::-;30289:139;;30016:419;;;:::o;30441:222::-;30581:34;30577:1;30569:6;30565:14;30558:58;30650:5;30645:2;30637:6;30633:15;30626:30;30441:222;:::o;30669:366::-;30811:3;30832:67;30896:2;30891:3;30832:67;:::i;:::-;30825:74;;30908:93;30997:3;30908:93;:::i;:::-;31026:2;31021:3;31017:12;31010:19;;30669:366;;;:::o;31041:419::-;31207:4;31245:2;31234:9;31230:18;31222:26;;31294:9;31288:4;31284:20;31280:1;31269:9;31265:17;31258:47;31322:131;31448:4;31322:131;:::i;:::-;31314:139;;31041:419;;;:::o;31466:168::-;31606:20;31602:1;31594:6;31590:14;31583:44;31466:168;:::o;31640:366::-;31782:3;31803:67;31867:2;31862:3;31803:67;:::i;:::-;31796:74;;31879:93;31968:3;31879:93;:::i;:::-;31997:2;31992:3;31988:12;31981:19;;31640:366;;;:::o;32012:419::-;32178:4;32216:2;32205:9;32201:18;32193:26;;32265:9;32259:4;32255:20;32251:1;32240:9;32236:17;32229:47;32293:131;32419:4;32293:131;:::i;:::-;32285:139;;32012:419;;;:::o;32437:170::-;32577:22;32573:1;32565:6;32561:14;32554:46;32437:170;:::o;32613:366::-;32755:3;32776:67;32840:2;32835:3;32776:67;:::i;:::-;32769:74;;32852:93;32941:3;32852:93;:::i;:::-;32970:2;32965:3;32961:12;32954:19;;32613:366;;;:::o;32985:419::-;33151:4;33189:2;33178:9;33174:18;33166:26;;33238:9;33232:4;33228:20;33224:1;33213:9;33209:17;33202:47;33266:131;33392:4;33266:131;:::i;:::-;33258:139;;32985:419;;;:::o;33410:228::-;33550:34;33546:1;33538:6;33534:14;33527:58;33619:11;33614:2;33606:6;33602:15;33595:36;33410:228;:::o;33644:366::-;33786:3;33807:67;33871:2;33866:3;33807:67;:::i;:::-;33800:74;;33883:93;33972:3;33883:93;:::i;:::-;34001:2;33996:3;33992:12;33985:19;;33644:366;;;:::o;34016:419::-;34182:4;34220:2;34209:9;34205:18;34197:26;;34269:9;34263:4;34259:20;34255:1;34244:9;34240:17;34233:47;34297:131;34423:4;34297:131;:::i;:::-;34289:139;;34016:419;;;:::o;34441:172::-;34581:24;34577:1;34569:6;34565:14;34558:48;34441:172;:::o;34619:366::-;34761:3;34782:67;34846:2;34841:3;34782:67;:::i;:::-;34775:74;;34858:93;34947:3;34858:93;:::i;:::-;34976:2;34971:3;34967:12;34960:19;;34619:366;;;:::o;34991:419::-;35157:4;35195:2;35184:9;35180:18;35172:26;;35244:9;35238:4;35234:20;35230:1;35219:9;35215:17;35208:47;35272:131;35398:4;35272:131;:::i;:::-;35264:139;;34991:419;;;:::o;35416:240::-;35556:34;35552:1;35544:6;35540:14;35533:58;35625:23;35620:2;35612:6;35608:15;35601:48;35416:240;:::o;35662:366::-;35804:3;35825:67;35889:2;35884:3;35825:67;:::i;:::-;35818:74;;35901:93;35990:3;35901:93;:::i;:::-;36019:2;36014:3;36010:12;36003:19;;35662:366;;;:::o;36034:419::-;36200:4;36238:2;36227:9;36223:18;36215:26;;36287:9;36281:4;36277:20;36273:1;36262:9;36258:17;36251:47;36315:131;36441:4;36315:131;:::i;:::-;36307:139;;36034:419;;;:::o;36459:169::-;36599:21;36595:1;36587:6;36583:14;36576:45;36459:169;:::o;36634:366::-;36776:3;36797:67;36861:2;36856:3;36797:67;:::i;:::-;36790:74;;36873:93;36962:3;36873:93;:::i;:::-;36991:2;36986:3;36982:12;36975:19;;36634:366;;;:::o;37006:419::-;37172:4;37210:2;37199:9;37195:18;37187:26;;37259:9;37253:4;37249:20;37245:1;37234:9;37230:17;37223:47;37287:131;37413:4;37287:131;:::i;:::-;37279:139;;37006:419;;;:::o;37431:241::-;37571:34;37567:1;37559:6;37555:14;37548:58;37640:24;37635:2;37627:6;37623:15;37616:49;37431:241;:::o;37678:366::-;37820:3;37841:67;37905:2;37900:3;37841:67;:::i;:::-;37834:74;;37917:93;38006:3;37917:93;:::i;:::-;38035:2;38030:3;38026:12;38019:19;;37678:366;;;:::o;38050:419::-;38216:4;38254:2;38243:9;38239:18;38231:26;;38303:9;38297:4;38293:20;38289:1;38278:9;38274:17;38267:47;38331:131;38457:4;38331:131;:::i;:::-;38323:139;;38050:419;;;:::o;38475:194::-;38515:4;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38569:20;38587:1;38569:20;:::i;:::-;38564:25;;38613:1;38610;38606:9;38598:17;;38637:1;38631:4;38628:11;38625:37;;;38642:18;;:::i;:::-;38625:37;38475:194;;;;:::o;38675:225::-;38815:34;38811:1;38803:6;38799:14;38792:58;38884:8;38879:2;38871:6;38867:15;38860:33;38675:225;:::o;38906:366::-;39048:3;39069:67;39133:2;39128:3;39069:67;:::i;:::-;39062:74;;39145:93;39234:3;39145:93;:::i;:::-;39263:2;39258:3;39254:12;39247:19;;38906:366;;;:::o;39278:419::-;39444:4;39482:2;39471:9;39467:18;39459:26;;39531:9;39525:4;39521:20;39517:1;39506:9;39502:17;39495:47;39559:131;39685:4;39559:131;:::i;:::-;39551:139;;39278:419;;;:::o;39703:442::-;39852:4;39890:2;39879:9;39875:18;39867:26;;39903:71;39971:1;39960:9;39956:17;39947:6;39903:71;:::i;:::-;39984:72;40052:2;40041:9;40037:18;40028:6;39984:72;:::i;:::-;40066;40134:2;40123:9;40119:18;40110:6;40066:72;:::i;:::-;39703:442;;;;;;:::o;40151:180::-;40199:77;40196:1;40189:88;40296:4;40293:1;40286:15;40320:4;40317:1;40310:15;40337:180;40385:77;40382:1;40375:88;40482:4;40479:1;40472:15;40506:4;40503:1;40496:15;40523:143;40580:5;40611:6;40605:13;40596:22;;40627:33;40654:5;40627:33;:::i;:::-;40523:143;;;;:::o;40672:351::-;40742:6;40791:2;40779:9;40770:7;40766:23;40762:32;40759:119;;;40797:79;;:::i;:::-;40759:119;40917:1;40942:64;40998:7;40989:6;40978:9;40974:22;40942:64;:::i;:::-;40932:74;;40888:128;40672:351;;;;:::o;41029:85::-;41074:7;41103:5;41092:16;;41029:85;;;:::o;41120:158::-;41178:9;41211:61;41229:42;41238:32;41264:5;41238:32;:::i;:::-;41229:42;:::i;:::-;41211:61;:::i;:::-;41198:74;;41120:158;;;:::o;41284:147::-;41379:45;41418:5;41379:45;:::i;:::-;41374:3;41367:58;41284:147;;:::o;41437:114::-;41504:6;41538:5;41532:12;41522:22;;41437:114;;;:::o;41557:184::-;41656:11;41690:6;41685:3;41678:19;41730:4;41725:3;41721:14;41706:29;;41557:184;;;;:::o;41747:132::-;41814:4;41837:3;41829:11;;41867:4;41862:3;41858:14;41850:22;;41747:132;;;:::o;41885:108::-;41962:24;41980:5;41962:24;:::i;:::-;41957:3;41950:37;41885:108;;:::o;41999:179::-;42068:10;42089:46;42131:3;42123:6;42089:46;:::i;:::-;42167:4;42162:3;42158:14;42144:28;;41999:179;;;;:::o;42184:113::-;42254:4;42286;42281:3;42277:14;42269:22;;42184:113;;;:::o;42333:732::-;42452:3;42481:54;42529:5;42481:54;:::i;:::-;42551:86;42630:6;42625:3;42551:86;:::i;:::-;42544:93;;42661:56;42711:5;42661:56;:::i;:::-;42740:7;42771:1;42756:284;42781:6;42778:1;42775:13;42756:284;;;42857:6;42851:13;42884:63;42943:3;42928:13;42884:63;:::i;:::-;42877:70;;42970:60;43023:6;42970:60;:::i;:::-;42960:70;;42816:224;42803:1;42800;42796:9;42791:14;;42756:284;;;42760:14;43056:3;43049:10;;42457:608;;;42333:732;;;;:::o;43071:831::-;43334:4;43372:3;43361:9;43357:19;43349:27;;43386:71;43454:1;43443:9;43439:17;43430:6;43386:71;:::i;:::-;43467:80;43543:2;43532:9;43528:18;43519:6;43467:80;:::i;:::-;43594:9;43588:4;43584:20;43579:2;43568:9;43564:18;43557:48;43622:108;43725:4;43716:6;43622:108;:::i;:::-;43614:116;;43740:72;43808:2;43797:9;43793:18;43784:6;43740:72;:::i;:::-;43822:73;43890:3;43879:9;43875:19;43866:6;43822:73;:::i;:::-;43071:831;;;;;;;;:::o;43908:807::-;44157:4;44195:3;44184:9;44180:19;44172:27;;44209:71;44277:1;44266:9;44262:17;44253:6;44209:71;:::i;:::-;44290:72;44358:2;44347:9;44343:18;44334:6;44290:72;:::i;:::-;44372:80;44448:2;44437:9;44433:18;44424:6;44372:80;:::i;:::-;44462;44538:2;44527:9;44523:18;44514:6;44462:80;:::i;:::-;44552:73;44620:3;44609:9;44605:19;44596:6;44552:73;:::i;:::-;44635;44703:3;44692:9;44688:19;44679:6;44635:73;:::i;:::-;43908:807;;;;;;;;;:::o;44721:663::-;44809:6;44817;44825;44874:2;44862:9;44853:7;44849:23;44845:32;44842:119;;;44880:79;;:::i;:::-;44842:119;45000:1;45025:64;45081:7;45072:6;45061:9;45057:22;45025:64;:::i;:::-;45015:74;;44971:128;45138:2;45164:64;45220:7;45211:6;45200:9;45196:22;45164:64;:::i;:::-;45154:74;;45109:129;45277:2;45303:64;45359:7;45350:6;45339:9;45335:22;45303:64;:::i;:::-;45293:74;;45248:129;44721:663;;;;;:::o

Swarm Source

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