ETH Price: $3,638.40 (-0.58%)
Gas: 8.43 Gwei
 

Overview

Max Total Supply

420,000,000 TEST

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
41,300.274404605079660669 TEST

Value
$0.00
0xc935e0c4388c443ae39c570908a2d742a30a33fb
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:
TEST

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 2024-07-23
*/

/**
 *

/**


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

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract TEST  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 marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 0; // 0 = 0%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 0 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 0 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

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

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

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

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

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

        uint256 totalSupply = 420_000_000 * 1e18;

        maxTransactionAmount = 4_200_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 4_200_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

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

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

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

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

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

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

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = 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() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        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 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 100, "Must keep fees at 100% or less");
    }

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

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

    function 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
            deadAddress,
            block.timestamp
        );
    }

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

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

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

        // 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040525f600b556001600c5f6101000a81548160ff0219169083151502179055505f600d555f600f55600160115f6101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550348015620000a0575f80fd5b506040518060400160405280600481526020017f54455354000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f544553540000000000000000000000000000000000000000000000000000000081525081600390816200011e919062000d2b565b50806004908162000130919062000d2b565b50505062000153620001476200059f60201b60201c565b620005a660201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506200017e8160016200066960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000222919062000e74565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000288573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ae919062000e74565b6040518363ffffffff1660e01b8152600401620002cd92919062000eb5565b6020604051808303815f875af1158015620002ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000310919062000e74565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035860a05160016200066960201b60201c565b6200036d60a05160016200075060201b60201c565b5f805f805f805f6b015b6a759f4835dc2400000090506a03796274caf64c710000006008819055506a03796274caf64c71000000600a81905550612710600a82620003b9919062000f0d565b620003c5919062000f84565b600981905550866015819055508560168190555084601781905550601754601654601554620003f5919062000fbb565b62000401919062000fbb565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000431919062000fbb565b6200043d919062000fbb565b601881905550730600ba19eed84b1859379cf7f327ca4e2f320d8f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730600ba19eed84b1859379cf7f327ca4e2f320d8f60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200050d620004ff620007ee60201b60201c565b60016200081660201b60201c565b620005203060016200081660201b60201c565b6200053561dead60016200081660201b60201c565b6200055762000549620007ee60201b60201c565b60016200066960201b60201c565b6200056a3060016200066960201b60201c565b6200057f61dead60016200066960201b60201c565b6200059133826200094d60201b60201c565b505050505050505062001144565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006796200059f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200069f620007ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ef9062001053565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008266200059f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200084c620007ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089c9062001053565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200094191906200108f565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b590620010f8565b60405180910390fd5b620009d15f838362000abd60201b60201c565b8060025f828254620009e4919062000fbb565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000a38919062000fbb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a9e919062001129565b60405180910390a362000ab95f838362000ac260201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b4357607f821691505b60208210810362000b595762000b5862000afe565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bbd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b80565b62000bc9868362000b80565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c1362000c0d62000c078462000be1565b62000bea565b62000be1565b9050919050565b5f819050919050565b62000c2e8362000bf3565b62000c4662000c3d8262000c1a565b84845462000b8c565b825550505050565b5f90565b62000c5c62000c4e565b62000c6981848462000c23565b505050565b5b8181101562000c905762000c845f8262000c52565b60018101905062000c6f565b5050565b601f82111562000cdf5762000ca98162000b5f565b62000cb48462000b71565b8101602085101562000cc4578190505b62000cdc62000cd38562000b71565b83018262000c6e565b50505b505050565b5f82821c905092915050565b5f62000d015f198460080262000ce4565b1980831691505092915050565b5f62000d1b838362000cf0565b9150826002028217905092915050565b62000d368262000ac7565b67ffffffffffffffff81111562000d525762000d5162000ad1565b5b62000d5e825462000b2b565b62000d6b82828562000c94565b5f60209050601f83116001811462000da1575f841562000d8c578287015190505b62000d98858262000d0e565b86555062000e07565b601f19841662000db18662000b5f565b5f5b8281101562000dda5784890151825560018201915060208501945060208101905062000db3565b8683101562000dfa578489015162000df6601f89168262000cf0565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e3e8262000e13565b9050919050565b62000e508162000e32565b811462000e5b575f80fd5b50565b5f8151905062000e6e8162000e45565b92915050565b5f6020828403121562000e8c5762000e8b62000e0f565b5b5f62000e9b8482850162000e5e565b91505092915050565b62000eaf8162000e32565b82525050565b5f60408201905062000eca5f83018562000ea4565b62000ed9602083018462000ea4565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f198262000be1565b915062000f268362000be1565b925082820262000f368162000be1565b9150828204841483151762000f505762000f4f62000ee0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f908262000be1565b915062000f9d8362000be1565b92508262000fb05762000faf62000f57565b5b828204905092915050565b5f62000fc78262000be1565b915062000fd48362000be1565b925082820190508082111562000fef5762000fee62000ee0565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200103b60208362000ff5565b9150620010488262001005565b602082019050919050565b5f6020820190508181035f8301526200106c816200102d565b9050919050565b5f8115159050919050565b620010898162001073565b82525050565b5f602082019050620010a45f8301846200107e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620010e0601f8362000ff5565b9150620010ed82620010aa565b602082019050919050565b5f6020820190508181035f8301526200111181620010d2565b9050919050565b620011238162000be1565b82525050565b5f6020820190506200113e5f83018462001118565b92915050565b60805160a051615994620011c85f395f818161139701528181611b90015281816126bd015281816127700152818161279c01528181612dc201528181613e5a01528181613f0f0152613f3b01525f8181610f4a01528181612d6a015281816140a901528181614188015281816141af01528181614245015261426c01526159945ff3fe6080604052600436106103b0575f3560e01c80638da5cb5b116101e6578063bbc0c7421161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610dc7578063f637434214610def578063f8b45b0514610e19578063fe72b27a14610e43576103b7565b8063dd62ed3e14610d0d578063e2f4560514610d49578063e884f26014610d73578063f11a24d314610d9d576103b7565b8063c876d0b9116100db578063c876d0b914610c53578063c8c8ebe414610c7d578063d257b34f14610ca7578063d85ba06314610ce3576103b7565b8063bbc0c74214610bb1578063c024666814610bdb578063c17b5b8c14610c03578063c18bc19514610c2b576103b7565b80639ec22c0e11610184578063a4c82a0011610153578063a4c82a0014610ae7578063a9059cbb14610b11578063aacebbe314610b4d578063b62496f514610b75576103b7565b80639ec22c0e14610a2d5780639fccce3214610a57578063a0d82dc514610a81578063a457c2d714610aab576103b7565b8063924de9b7116101c0578063924de9b71461098957806395d89b41146109b15780639a7a23d6146109db5780639c3b4fdc14610a03576103b7565b80638da5cb5b1461090b5780638ea5220f14610935578063921369131461095f576103b7565b8063313ce567116102d6578063715018a61161026957806375f0a8741161023857806375f0a874146108795780637bce5a04146108a35780638095d564146108cd5780638a8c523c146108f5576103b7565b8063715018a6146107e9578063730c1888146107ff578063751039fc146108275780637571336a14610851576103b7565b80634fbee193116102a55780634fbee1931461071d5780636a486a8e146107595780636ddd17131461078357806370a08231146107ad576103b7565b8063313ce56714610663578063395093511461068d57806349bd5a5e146106c95780634a62bb65146106f3576103b7565b8063199ffc721161034e57806323b872dd1161031d57806323b872dd146105a957806327c8f835146105e55780632c3e486c1461060f5780632e82f1a014610639576103b7565b8063199ffc72146105035780631a8145bb1461052d5780631f3fed8f14610557578063203e727e14610581576103b7565b80631694505e1161038a5780631694505e1461045d57806318160ddd146104875780631816467f146104b1578063184c16c5146104d9576103b7565b806306fdde03146103bb578063095ea7b3146103e557806310d5de5314610421576103b7565b366103b757005b5f80fd5b3480156103c6575f80fd5b506103cf610e7f565b6040516103dc91906143a2565b60405180910390f35b3480156103f0575f80fd5b5061040b60048036038101906104069190614453565b610f0f565b60405161041891906144ab565b60405180910390f35b34801561042c575f80fd5b50610447600480360381019061044291906144c4565b610f2c565b60405161045491906144ab565b60405180910390f35b348015610468575f80fd5b50610471610f48565b60405161047e919061454a565b60405180910390f35b348015610492575f80fd5b5061049b610f6c565b6040516104a89190614572565b60405180910390f35b3480156104bc575f80fd5b506104d760048036038101906104d291906144c4565b610f75565b005b3480156104e4575f80fd5b506104ed6110af565b6040516104fa9190614572565b60405180910390f35b34801561050e575f80fd5b506105176110b5565b6040516105249190614572565b60405180910390f35b348015610538575f80fd5b506105416110bb565b60405161054e9190614572565b60405180910390f35b348015610562575f80fd5b5061056b6110c1565b6040516105789190614572565b60405180910390f35b34801561058c575f80fd5b506105a760048036038101906105a2919061458b565b6110c7565b005b3480156105b4575f80fd5b506105cf60048036038101906105ca91906145b6565b6111d6565b6040516105dc91906144ab565b60405180910390f35b3480156105f0575f80fd5b506105f96112c8565b6040516106069190614615565b60405180910390f35b34801561061a575f80fd5b506106236112ce565b6040516106309190614572565b60405180910390f35b348015610644575f80fd5b5061064d6112d4565b60405161065a91906144ab565b60405180910390f35b34801561066e575f80fd5b506106776112e6565b6040516106849190614649565b60405180910390f35b348015610698575f80fd5b506106b360048036038101906106ae9190614453565b6112ee565b6040516106c091906144ab565b60405180910390f35b3480156106d4575f80fd5b506106dd611395565b6040516106ea9190614615565b60405180910390f35b3480156106fe575f80fd5b506107076113b9565b60405161071491906144ab565b60405180910390f35b348015610728575f80fd5b50610743600480360381019061073e91906144c4565b6113cb565b60405161075091906144ab565b60405180910390f35b348015610764575f80fd5b5061076d61141d565b60405161077a9190614572565b60405180910390f35b34801561078e575f80fd5b50610797611423565b6040516107a491906144ab565b60405180910390f35b3480156107b8575f80fd5b506107d360048036038101906107ce91906144c4565b611436565b6040516107e09190614572565b60405180910390f35b3480156107f4575f80fd5b506107fd61147b565b005b34801561080a575f80fd5b506108256004803603810190610820919061468c565b611502565b005b348015610832575f80fd5b5061083b611640565b60405161084891906144ab565b60405180910390f35b34801561085c575f80fd5b50610877600480360381019061087291906146dc565b6116dd565b005b348015610884575f80fd5b5061088d6117b1565b60405161089a9190614615565b60405180910390f35b3480156108ae575f80fd5b506108b76117d6565b6040516108c49190614572565b60405180910390f35b3480156108d8575f80fd5b506108f360048036038101906108ee919061471a565b6117dc565b005b348015610900575f80fd5b506109096118db565b005b348015610916575f80fd5b5061091f611996565b60405161092c9190614615565b60405180910390f35b348015610940575f80fd5b506109496119be565b6040516109569190614615565b60405180910390f35b34801561096a575f80fd5b506109736119e3565b6040516109809190614572565b60405180910390f35b348015610994575f80fd5b506109af60048036038101906109aa919061476a565b6119e9565b005b3480156109bc575f80fd5b506109c5611a82565b6040516109d291906143a2565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc91906146dc565b611b12565b005b348015610a0e575f80fd5b50610a17611c2a565b604051610a249190614572565b60405180910390f35b348015610a38575f80fd5b50610a41611c30565b604051610a4e9190614572565b60405180910390f35b348015610a62575f80fd5b50610a6b611c36565b604051610a789190614572565b60405180910390f35b348015610a8c575f80fd5b50610a95611c3c565b604051610aa29190614572565b60405180910390f35b348015610ab6575f80fd5b50610ad16004803603810190610acc9190614453565b611c42565b604051610ade91906144ab565b60405180910390f35b348015610af2575f80fd5b50610afb611d28565b604051610b089190614572565b60405180910390f35b348015610b1c575f80fd5b50610b376004803603810190610b329190614453565b611d2e565b604051610b4491906144ab565b60405180910390f35b348015610b58575f80fd5b50610b736004803603810190610b6e91906144c4565b611d4b565b005b348015610b80575f80fd5b50610b9b6004803603810190610b9691906144c4565b611e85565b604051610ba891906144ab565b60405180910390f35b348015610bbc575f80fd5b50610bc5611ea2565b604051610bd291906144ab565b60405180910390f35b348015610be6575f80fd5b50610c016004803603810190610bfc91906146dc565b611eb5565b005b348015610c0e575f80fd5b50610c296004803603810190610c24919061471a565b611fd7565b005b348015610c36575f80fd5b50610c516004803603810190610c4c919061458b565b6120d6565b005b348015610c5e575f80fd5b50610c676121e5565b604051610c7491906144ab565b60405180910390f35b348015610c88575f80fd5b50610c916121f7565b604051610c9e9190614572565b60405180910390f35b348015610cb2575f80fd5b50610ccd6004803603810190610cc8919061458b565b6121fd565b604051610cda91906144ab565b60405180910390f35b348015610cee575f80fd5b50610cf7612351565b604051610d049190614572565b60405180910390f35b348015610d18575f80fd5b50610d336004803603810190610d2e9190614795565b612357565b604051610d409190614572565b60405180910390f35b348015610d54575f80fd5b50610d5d6123d9565b604051610d6a9190614572565b60405180910390f35b348015610d7e575f80fd5b50610d876123df565b604051610d9491906144ab565b60405180910390f35b348015610da8575f80fd5b50610db161247c565b604051610dbe9190614572565b60405180910390f35b348015610dd2575f80fd5b50610ded6004803603810190610de891906144c4565b612482565b005b348015610dfa575f80fd5b50610e03612578565b604051610e109190614572565b60405180910390f35b348015610e24575f80fd5b50610e2d61257e565b604051610e3a9190614572565b60405180910390f35b348015610e4e575f80fd5b50610e696004803603810190610e64919061458b565b612584565b604051610e7691906144ab565b60405180910390f35b606060038054610e8e90614800565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba90614800565b8015610f055780601f10610edc57610100808354040283529160200191610f05565b820191905f5260205f20905b815481529060010190602001808311610ee857829003601f168201915b5050505050905090565b5f610f22610f1b612850565b8484612857565b6001905092915050565b60208052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610f7d612850565b73ffffffffffffffffffffffffffffffffffffffff16610f9b611996565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe89061487a565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110cf612850565b73ffffffffffffffffffffffffffffffffffffffff166110ed611996565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a9061487a565b60405180910390fd5b670de0b6b3a76400006103e86001611159610f6c565b61116391906148c5565b61116d9190614933565b6111779190614933565b8110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906149d3565b60405180910390fd5b670de0b6b3a7640000816111cd91906148c5565b60088190555050565b5f6111e2848484612a1a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611229612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614a61565b60405180910390fd5b6112bc856112b4612850565b858403612857565b60019150509392505050565b61dead81565b600d5481565b600c5f9054906101000a900460ff1681565b5f6012905090565b5f61138b6112fa612850565b848460015f611307612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113869190614a7f565b612857565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60115f9054906101000a900460ff1681565b5f601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611483612850565b73ffffffffffffffffffffffffffffffffffffffff166114a1611996565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee9061487a565b60405180910390fd5b6115005f613764565b565b61150a612850565b73ffffffffffffffffffffffffffffffffffffffff16611528611996565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115759061487a565b60405180910390fd5b6102588310156115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614b22565b60405180910390fd5b6103e882111580156115d557505f8210155b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614bb0565b60405180910390fd5b82600d8190555081600b8190555080600c5f6101000a81548160ff021916908315150217905550505050565b5f611649612850565b73ffffffffffffffffffffffffffffffffffffffff16611667611996565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b49061487a565b60405180910390fd5b5f60115f6101000a81548160ff0219169083151502179055506001905090565b6116e5612850565b73ffffffffffffffffffffffffffffffffffffffff16611703611996565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117509061487a565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e4612850565b73ffffffffffffffffffffffffffffffffffffffff16611802611996565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f9061487a565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118809190614a7f565b61188a9190614a7f565b601481905550606460145411156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90614c18565b60405180910390fd5b505050565b6118e3612850565b73ffffffffffffffffffffffffffffffffffffffff16611901611996565b73ffffffffffffffffffffffffffffffffffffffff1614611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e9061487a565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f1612850565b73ffffffffffffffffffffffffffffffffffffffff16611a0f611996565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c9061487a565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a9190614800565b80601f0160208091040260200160405190810160405280929190818152602001828054611abd90614800565b8015611b085780601f10611adf57610100808354040283529160200191611b08565b820191905f5260205f20905b815481529060010190602001808311611aeb57829003601f168201915b5050505050905090565b611b1a612850565b73ffffffffffffffffffffffffffffffffffffffff16611b38611996565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b859061487a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614ca6565b60405180910390fd5b611c268282613827565b5050565b60175481565b60105481565b601e5481565b601b5481565b5f8060015f611c4f612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614d34565b60405180910390fd5b611d1d611d14612850565b85858403612857565b600191505092915050565b600e5481565b5f611d41611d3a612850565b8484612a1a565b6001905092915050565b611d53612850565b73ffffffffffffffffffffffffffffffffffffffff16611d71611996565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe9061487a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6021602052805f5260405f205f915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ebd612850565b73ffffffffffffffffffffffffffffffffffffffff16611edb611996565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f289061487a565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fcb91906144ab565b60405180910390a25050565b611fdf612850565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611996565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a9061487a565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461207b9190614a7f565b6120859190614a7f565b601881905550606460185411156120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614c18565b60405180910390fd5b505050565b6120de612850565b73ffffffffffffffffffffffffffffffffffffffff166120fc611996565b73ffffffffffffffffffffffffffffffffffffffff1614612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121499061487a565b60405180910390fd5b670de0b6b3a76400006103e86005612168610f6c565b61217291906148c5565b61217c9190614933565b6121869190614933565b8110156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614dc2565b60405180910390fd5b670de0b6b3a7640000816121dc91906148c5565b600a8190555050565b60135f9054906101000a900460ff1681565b60085481565b5f612206612850565b73ffffffffffffffffffffffffffffffffffffffff16612224611996565b73ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122719061487a565b60405180910390fd5b620186a06001612288610f6c565b61229291906148c5565b61229c9190614933565b8210156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590614e50565b60405180910390fd5b6103e860056122eb610f6c565b6122f591906148c5565b6122ff9190614933565b821115612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614ede565b60405180910390fd5b8160098190555060019050919050565b60145481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6123e8612850565b73ffffffffffffffffffffffffffffffffffffffff16612406611996565b73ffffffffffffffffffffffffffffffffffffffff161461245c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124539061487a565b60405180910390fd5b5f60135f6101000a81548160ff0219169083151502179055506001905090565b60165481565b61248a612850565b73ffffffffffffffffffffffffffffffffffffffff166124a8611996565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f59061487a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390614f6c565b60405180910390fd5b61257581613764565b50565b601a5481565b600a5481565b5f61258d612850565b73ffffffffffffffffffffffffffffffffffffffff166125ab611996565b73ffffffffffffffffffffffffffffffffffffffff1614612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f89061487a565b60405180910390fd5b600f546010546126119190614a7f565b4211612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614fd4565b60405180910390fd5b6103e8821115612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90615062565b60405180910390fd5b426010819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016126f89190614615565b602060405180830381865afa158015612713573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127379190615094565b90505f61276161271061275386856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f811115612799576127987f000000000000000000000000000000000000000000000000000000000000000061dead836138ef565b5b5f7f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612802575f80fd5b505af1158015612814573d5f803e3d5ffd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc9061512f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906151bd565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a0d9190614572565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f9061524b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed906152d9565b60405180910390fd5b5f8103612b0d57612b0883835f6138ef565b61375f565b60115f9054906101000a900460ff16156131b457612b29611996565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b975750612b67611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bcf57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c09575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c225750600560149054906101000a900460ff16155b156131b357601160019054906101000a900460ff16612d1657601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612cd65750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c90615341565b60405180910390fd5b5b60135f9054906101000a900460ff1615612ed957612d32611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612db957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e1157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ed8574360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c906153f5565b60405180910390fd5b4360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612f76575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561301d57600854811115612fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb790615483565b60405180910390fd5b600a54612fcc83611436565b82612fd79190614a7f565b1115613018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300f906154eb565b60405180910390fd5b6131b2565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130ba575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561310957600854811115613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb90615579565b60405180910390fd5b6131b1565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166131b057600a5461316383611436565b8261316e9190614a7f565b11156131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a6906154eb565b60405180910390fd5b5b5b5b5b5b5f6131be30611436565b90505f60095482101590508080156131e25750601160029054906101000a900460ff165b80156131fb5750600560149054906101000a900460ff16155b801561324e575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132a15750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132f45750601f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613337576001600560146101000a81548160ff02191690831515021790555061331c613b64565b5f600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561339a575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156133b15750600c5f9054906101000a900460ff165b80156133cc5750600d54600e546133c89190614a7f565b4210155b801561341f5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561342e5761342c613e33565b505b5f600560149054906101000a900460ff16159050601f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806134dd5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156134e6575f90505b5f811561374f5760215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561354457505f601854115b1561360e576135716064613563601854886138c590919063ffffffff16565b6138da90919063ffffffff16565b9050601854601a548261358491906148c5565b61358e9190614933565b601d5f82825461359e9190614a7f565b92505081905550601854601b54826135b691906148c5565b6135c09190614933565b601e5f8282546135d09190614a7f565b92505081905550601854601954826135e891906148c5565b6135f29190614933565b601c5f8282546136029190614a7f565b9250508190555061372c565b60215f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561366557505f601454115b1561372b576136926064613684601454886138c590919063ffffffff16565b6138da90919063ffffffff16565b9050601454601654826136a591906148c5565b6136af9190614933565b601d5f8282546136bf9190614a7f565b92505081905550601454601754826136d791906148c5565b6136e19190614933565b601e5f8282546136f19190614a7f565b925050819055506014546015548261370991906148c5565b6137139190614933565b601c5f8282546137239190614a7f565b925050819055505b5b5f8111156137405761373f8730836138ef565b5b808561374c9190615597565b94505b61375a8787876138ef565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f81836138d291906148c5565b905092915050565b5f81836138e79190614933565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361395d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139549061524b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c2906152d9565b60405180910390fd5b6139d6838383613fed565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a509061563a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613ae79190614a7f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b4b9190614572565b60405180910390a3613b5e848484613ff2565b50505050565b5f613b6e30611436565b90505f601e54601c54601d54613b849190614a7f565b613b8e9190614a7f565b90505f80831480613b9e57505f82145b15613bab57505050613e31565b6014600954613bba91906148c5565b831115613bd3576014600954613bd091906148c5565b92505b5f600283601d5486613be591906148c5565b613bef9190614933565b613bf99190614933565b90505f613c0f8286613ff790919063ffffffff16565b90505f479050613c1e8261400c565b5f613c328247613ff790919063ffffffff16565b90505f613c5c87613c4e601c54856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f613c8688613c78601e54866138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f818385613c969190615597565b613ca09190615597565b90505f601d819055505f601c819055505f601e8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cfc90615685565b5f6040518083038185875af1925050503d805f8114613d36576040519150601f19603f3d011682016040523d82523d5f602084013e613d3b565b606091505b5050809850505f87118015613d4f57505f81115b15613d9c57613d5e878261423f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d9393929190615699565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613de190615685565b5f6040518083038185875af1925050503d805f8114613e1b576040519150601f19603f3d011682016040523d82523d5f602084013e613e20565b606091505b505080985050505050505050505050505b565b5f42600e819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e959190614615565b602060405180830381865afa158015613eb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ed49190615094565b90505f613f00612710613ef2600b54856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f811115613f3857613f377f000000000000000000000000000000000000000000000000000000000000000061dead836138ef565b5b5f7f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015613fa1575f80fd5b505af1158015613fb3573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b5f81836140049190615597565b905092915050565b5f600267ffffffffffffffff811115614028576140276156ce565b5b6040519080825280602002602001820160405280156140565781602001602082028036833780820191505090505b50905030815f8151811061406d5761406c6156fb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614110573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614134919061573c565b81600181518110614148576141476156fb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141ad307f000000000000000000000000000000000000000000000000000000000000000084612857565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161420e959493929190615857565b5f604051808303815f87803b158015614225575f80fd5b505af1158015614237573d5f803e3d5ffd5b505050505050565b61426a307f000000000000000000000000000000000000000000000000000000000000000084612857565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b81526004016142d0969594939291906158af565b60606040518083038185885af11580156142ec573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190614311919061590e565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561434f578082015181840152602081019050614334565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61437482614318565b61437e8185614322565b935061438e818560208601614332565b6143978161435a565b840191505092915050565b5f6020820190508181035f8301526143ba818461436a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6143ef826143c6565b9050919050565b6143ff816143e5565b8114614409575f80fd5b50565b5f8135905061441a816143f6565b92915050565b5f819050919050565b61443281614420565b811461443c575f80fd5b50565b5f8135905061444d81614429565b92915050565b5f8060408385031215614469576144686143c2565b5b5f6144768582860161440c565b92505060206144878582860161443f565b9150509250929050565b5f8115159050919050565b6144a581614491565b82525050565b5f6020820190506144be5f83018461449c565b92915050565b5f602082840312156144d9576144d86143c2565b5b5f6144e68482850161440c565b91505092915050565b5f819050919050565b5f61451261450d614508846143c6565b6144ef565b6143c6565b9050919050565b5f614523826144f8565b9050919050565b5f61453482614519565b9050919050565b6145448161452a565b82525050565b5f60208201905061455d5f83018461453b565b92915050565b61456c81614420565b82525050565b5f6020820190506145855f830184614563565b92915050565b5f602082840312156145a05761459f6143c2565b5b5f6145ad8482850161443f565b91505092915050565b5f805f606084860312156145cd576145cc6143c2565b5b5f6145da8682870161440c565b93505060206145eb8682870161440c565b92505060406145fc8682870161443f565b9150509250925092565b61460f816143e5565b82525050565b5f6020820190506146285f830184614606565b92915050565b5f60ff82169050919050565b6146438161462e565b82525050565b5f60208201905061465c5f83018461463a565b92915050565b61466b81614491565b8114614675575f80fd5b50565b5f8135905061468681614662565b92915050565b5f805f606084860312156146a3576146a26143c2565b5b5f6146b08682870161443f565b93505060206146c18682870161443f565b92505060406146d286828701614678565b9150509250925092565b5f80604083850312156146f2576146f16143c2565b5b5f6146ff8582860161440c565b925050602061471085828601614678565b9150509250929050565b5f805f60608486031215614731576147306143c2565b5b5f61473e8682870161443f565b935050602061474f8682870161443f565b92505060406147608682870161443f565b9150509250925092565b5f6020828403121561477f5761477e6143c2565b5b5f61478c84828501614678565b91505092915050565b5f80604083850312156147ab576147aa6143c2565b5b5f6147b88582860161440c565b92505060206147c98582860161440c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061481757607f821691505b60208210810361482a576148296147d3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614864602083614322565b915061486f82614830565b602082019050919050565b5f6020820190508181035f83015261489181614858565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6148cf82614420565b91506148da83614420565b92508282026148e881614420565b915082820484148315176148ff576148fe614898565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61493d82614420565b915061494883614420565b92508261495857614957614906565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f6149bd602f83614322565b91506149c882614963565b604082019050919050565b5f6020820190508181035f8301526149ea816149b1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614a4b602883614322565b9150614a56826149f1565b604082019050919050565b5f6020820190508181035f830152614a7881614a3f565b9050919050565b5f614a8982614420565b9150614a9483614420565b9250828201905080821115614aac57614aab614898565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074685f8201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b5f614b0c603383614322565b9150614b1782614ab2565b604082019050919050565b5f6020820190508181035f830152614b3981614b00565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e742062655f8201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b5f614b9a603083614322565b9150614ba582614b40565b604082019050919050565b5f6020820190508181035f830152614bc781614b8e565b9050919050565b7f4d757374206b65657020666565732061742031303025206f72206c65737300005f82015250565b5f614c02601e83614322565b9150614c0d82614bce565b602082019050919050565b5f6020820190508181035f830152614c2f81614bf6565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614c90603983614322565b9150614c9b82614c36565b604082019050919050565b5f6020820190508181035f830152614cbd81614c84565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614d1e602583614322565b9150614d2982614cc4565b604082019050919050565b5f6020820190508181035f830152614d4b81614d12565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614dac602483614322565b9150614db782614d52565b604082019050919050565b5f6020820190508181035f830152614dd981614da0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614e3a603583614322565b9150614e4582614de0565b604082019050919050565b5f6020820190508181035f830152614e6781614e2e565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614ec8603483614322565b9150614ed382614e6e565b604082019050919050565b5f6020820190508181035f830152614ef581614ebc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614f56602683614322565b9150614f6182614efc565b604082019050919050565b5f6020820190508181035f830152614f8381614f4a565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973685f82015250565b5f614fbe602083614322565b9150614fc982614f8a565b602082019050919050565b5f6020820190508181035f830152614feb81614fb2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f5f8201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b5f61504c602a83614322565b915061505782614ff2565b604082019050919050565b5f6020820190508181035f83015261507981615040565b9050919050565b5f8151905061508e81614429565b92915050565b5f602082840312156150a9576150a86143c2565b5b5f6150b684828501615080565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f615119602483614322565b9150615124826150bf565b604082019050919050565b5f6020820190508181035f8301526151468161510d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6151a7602283614322565b91506151b28261514d565b604082019050919050565b5f6020820190508181035f8301526151d48161519b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f615235602583614322565b9150615240826151db565b604082019050919050565b5f6020820190508181035f83015261526281615229565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6152c3602383614322565b91506152ce82615269565b604082019050919050565b5f6020820190508181035f8301526152f0816152b7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61532b601683614322565b9150615336826152f7565b602082019050919050565b5f6020820190508181035f8301526153588161531f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6153df604983614322565b91506153ea8261535f565b606082019050919050565b5f6020820190508181035f83015261540c816153d3565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f61546d603583614322565b915061547882615413565b604082019050919050565b5f6020820190508181035f83015261549a81615461565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6154d5601383614322565b91506154e0826154a1565b602082019050919050565b5f6020820190508181035f830152615502816154c9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615563603683614322565b915061556e82615509565b604082019050919050565b5f6020820190508181035f83015261559081615557565b9050919050565b5f6155a182614420565b91506155ac83614420565b92508282039050818111156155c4576155c3614898565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615624602683614322565b915061562f826155ca565b604082019050919050565b5f6020820190508181035f83015261565181615618565b9050919050565b5f81905092915050565b50565b5f6156705f83615658565b915061567b82615662565b5f82019050919050565b5f61568f82615665565b9150819050919050565b5f6060820190506156ac5f830186614563565b6156b96020830185614563565b6156c66040830184614563565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615736816143f6565b92915050565b5f60208284031215615751576157506143c2565b5b5f61575e84828501615728565b91505092915050565b5f819050919050565b5f61578a61578561578084615767565b6144ef565b614420565b9050919050565b61579a81615770565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6157d2816143e5565b82525050565b5f6157e383836157c9565b60208301905092915050565b5f602082019050919050565b5f615805826157a0565b61580f81856157aa565b935061581a836157ba565b805f5b8381101561584a57815161583188826157d8565b975061583c836157ef565b92505060018101905061581d565b5085935050505092915050565b5f60a08201905061586a5f830188614563565b6158776020830187615791565b818103604083015261588981866157fb565b90506158986060830185614606565b6158a56080830184614563565b9695505050505050565b5f60c0820190506158c25f830189614606565b6158cf6020830188614563565b6158dc6040830187615791565b6158e96060830186615791565b6158f66080830185614606565b61590360a0830184614563565b979650505050505050565b5f805f60608486031215615925576159246143c2565b5b5f61593286828701615080565b935050602061594386828701615080565b925050604061595486828701615080565b915050925092509256fea264697066735822122086e36d5068ff003b6de92ab23ef882dca2d523753d9902785a4ded6925428d6164736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103b0575f3560e01c80638da5cb5b116101e6578063bbc0c7421161010c578063dd62ed3e1161009f578063f2fde38b1161006e578063f2fde38b14610dc7578063f637434214610def578063f8b45b0514610e19578063fe72b27a14610e43576103b7565b8063dd62ed3e14610d0d578063e2f4560514610d49578063e884f26014610d73578063f11a24d314610d9d576103b7565b8063c876d0b9116100db578063c876d0b914610c53578063c8c8ebe414610c7d578063d257b34f14610ca7578063d85ba06314610ce3576103b7565b8063bbc0c74214610bb1578063c024666814610bdb578063c17b5b8c14610c03578063c18bc19514610c2b576103b7565b80639ec22c0e11610184578063a4c82a0011610153578063a4c82a0014610ae7578063a9059cbb14610b11578063aacebbe314610b4d578063b62496f514610b75576103b7565b80639ec22c0e14610a2d5780639fccce3214610a57578063a0d82dc514610a81578063a457c2d714610aab576103b7565b8063924de9b7116101c0578063924de9b71461098957806395d89b41146109b15780639a7a23d6146109db5780639c3b4fdc14610a03576103b7565b80638da5cb5b1461090b5780638ea5220f14610935578063921369131461095f576103b7565b8063313ce567116102d6578063715018a61161026957806375f0a8741161023857806375f0a874146108795780637bce5a04146108a35780638095d564146108cd5780638a8c523c146108f5576103b7565b8063715018a6146107e9578063730c1888146107ff578063751039fc146108275780637571336a14610851576103b7565b80634fbee193116102a55780634fbee1931461071d5780636a486a8e146107595780636ddd17131461078357806370a08231146107ad576103b7565b8063313ce56714610663578063395093511461068d57806349bd5a5e146106c95780634a62bb65146106f3576103b7565b8063199ffc721161034e57806323b872dd1161031d57806323b872dd146105a957806327c8f835146105e55780632c3e486c1461060f5780632e82f1a014610639576103b7565b8063199ffc72146105035780631a8145bb1461052d5780631f3fed8f14610557578063203e727e14610581576103b7565b80631694505e1161038a5780631694505e1461045d57806318160ddd146104875780631816467f146104b1578063184c16c5146104d9576103b7565b806306fdde03146103bb578063095ea7b3146103e557806310d5de5314610421576103b7565b366103b757005b5f80fd5b3480156103c6575f80fd5b506103cf610e7f565b6040516103dc91906143a2565b60405180910390f35b3480156103f0575f80fd5b5061040b60048036038101906104069190614453565b610f0f565b60405161041891906144ab565b60405180910390f35b34801561042c575f80fd5b50610447600480360381019061044291906144c4565b610f2c565b60405161045491906144ab565b60405180910390f35b348015610468575f80fd5b50610471610f48565b60405161047e919061454a565b60405180910390f35b348015610492575f80fd5b5061049b610f6c565b6040516104a89190614572565b60405180910390f35b3480156104bc575f80fd5b506104d760048036038101906104d291906144c4565b610f75565b005b3480156104e4575f80fd5b506104ed6110af565b6040516104fa9190614572565b60405180910390f35b34801561050e575f80fd5b506105176110b5565b6040516105249190614572565b60405180910390f35b348015610538575f80fd5b506105416110bb565b60405161054e9190614572565b60405180910390f35b348015610562575f80fd5b5061056b6110c1565b6040516105789190614572565b60405180910390f35b34801561058c575f80fd5b506105a760048036038101906105a2919061458b565b6110c7565b005b3480156105b4575f80fd5b506105cf60048036038101906105ca91906145b6565b6111d6565b6040516105dc91906144ab565b60405180910390f35b3480156105f0575f80fd5b506105f96112c8565b6040516106069190614615565b60405180910390f35b34801561061a575f80fd5b506106236112ce565b6040516106309190614572565b60405180910390f35b348015610644575f80fd5b5061064d6112d4565b60405161065a91906144ab565b60405180910390f35b34801561066e575f80fd5b506106776112e6565b6040516106849190614649565b60405180910390f35b348015610698575f80fd5b506106b360048036038101906106ae9190614453565b6112ee565b6040516106c091906144ab565b60405180910390f35b3480156106d4575f80fd5b506106dd611395565b6040516106ea9190614615565b60405180910390f35b3480156106fe575f80fd5b506107076113b9565b60405161071491906144ab565b60405180910390f35b348015610728575f80fd5b50610743600480360381019061073e91906144c4565b6113cb565b60405161075091906144ab565b60405180910390f35b348015610764575f80fd5b5061076d61141d565b60405161077a9190614572565b60405180910390f35b34801561078e575f80fd5b50610797611423565b6040516107a491906144ab565b60405180910390f35b3480156107b8575f80fd5b506107d360048036038101906107ce91906144c4565b611436565b6040516107e09190614572565b60405180910390f35b3480156107f4575f80fd5b506107fd61147b565b005b34801561080a575f80fd5b506108256004803603810190610820919061468c565b611502565b005b348015610832575f80fd5b5061083b611640565b60405161084891906144ab565b60405180910390f35b34801561085c575f80fd5b50610877600480360381019061087291906146dc565b6116dd565b005b348015610884575f80fd5b5061088d6117b1565b60405161089a9190614615565b60405180910390f35b3480156108ae575f80fd5b506108b76117d6565b6040516108c49190614572565b60405180910390f35b3480156108d8575f80fd5b506108f360048036038101906108ee919061471a565b6117dc565b005b348015610900575f80fd5b506109096118db565b005b348015610916575f80fd5b5061091f611996565b60405161092c9190614615565b60405180910390f35b348015610940575f80fd5b506109496119be565b6040516109569190614615565b60405180910390f35b34801561096a575f80fd5b506109736119e3565b6040516109809190614572565b60405180910390f35b348015610994575f80fd5b506109af60048036038101906109aa919061476a565b6119e9565b005b3480156109bc575f80fd5b506109c5611a82565b6040516109d291906143a2565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc91906146dc565b611b12565b005b348015610a0e575f80fd5b50610a17611c2a565b604051610a249190614572565b60405180910390f35b348015610a38575f80fd5b50610a41611c30565b604051610a4e9190614572565b60405180910390f35b348015610a62575f80fd5b50610a6b611c36565b604051610a789190614572565b60405180910390f35b348015610a8c575f80fd5b50610a95611c3c565b604051610aa29190614572565b60405180910390f35b348015610ab6575f80fd5b50610ad16004803603810190610acc9190614453565b611c42565b604051610ade91906144ab565b60405180910390f35b348015610af2575f80fd5b50610afb611d28565b604051610b089190614572565b60405180910390f35b348015610b1c575f80fd5b50610b376004803603810190610b329190614453565b611d2e565b604051610b4491906144ab565b60405180910390f35b348015610b58575f80fd5b50610b736004803603810190610b6e91906144c4565b611d4b565b005b348015610b80575f80fd5b50610b9b6004803603810190610b9691906144c4565b611e85565b604051610ba891906144ab565b60405180910390f35b348015610bbc575f80fd5b50610bc5611ea2565b604051610bd291906144ab565b60405180910390f35b348015610be6575f80fd5b50610c016004803603810190610bfc91906146dc565b611eb5565b005b348015610c0e575f80fd5b50610c296004803603810190610c24919061471a565b611fd7565b005b348015610c36575f80fd5b50610c516004803603810190610c4c919061458b565b6120d6565b005b348015610c5e575f80fd5b50610c676121e5565b604051610c7491906144ab565b60405180910390f35b348015610c88575f80fd5b50610c916121f7565b604051610c9e9190614572565b60405180910390f35b348015610cb2575f80fd5b50610ccd6004803603810190610cc8919061458b565b6121fd565b604051610cda91906144ab565b60405180910390f35b348015610cee575f80fd5b50610cf7612351565b604051610d049190614572565b60405180910390f35b348015610d18575f80fd5b50610d336004803603810190610d2e9190614795565b612357565b604051610d409190614572565b60405180910390f35b348015610d54575f80fd5b50610d5d6123d9565b604051610d6a9190614572565b60405180910390f35b348015610d7e575f80fd5b50610d876123df565b604051610d9491906144ab565b60405180910390f35b348015610da8575f80fd5b50610db161247c565b604051610dbe9190614572565b60405180910390f35b348015610dd2575f80fd5b50610ded6004803603810190610de891906144c4565b612482565b005b348015610dfa575f80fd5b50610e03612578565b604051610e109190614572565b60405180910390f35b348015610e24575f80fd5b50610e2d61257e565b604051610e3a9190614572565b60405180910390f35b348015610e4e575f80fd5b50610e696004803603810190610e64919061458b565b612584565b604051610e7691906144ab565b60405180910390f35b606060038054610e8e90614800565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba90614800565b8015610f055780601f10610edc57610100808354040283529160200191610f05565b820191905f5260205f20905b815481529060010190602001808311610ee857829003601f168201915b5050505050905090565b5f610f22610f1b612850565b8484612857565b6001905092915050565b60208052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610f7d612850565b73ffffffffffffffffffffffffffffffffffffffff16610f9b611996565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe89061487a565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110cf612850565b73ffffffffffffffffffffffffffffffffffffffff166110ed611996565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a9061487a565b60405180910390fd5b670de0b6b3a76400006103e86001611159610f6c565b61116391906148c5565b61116d9190614933565b6111779190614933565b8110156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906149d3565b60405180910390fd5b670de0b6b3a7640000816111cd91906148c5565b60088190555050565b5f6111e2848484612a1a565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f611229612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90614a61565b60405180910390fd5b6112bc856112b4612850565b858403612857565b60019150509392505050565b61dead81565b600d5481565b600c5f9054906101000a900460ff1681565b5f6012905090565b5f61138b6112fa612850565b848460015f611307612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113869190614a7f565b612857565b6001905092915050565b7f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db981565b60115f9054906101000a900460ff1681565b5f601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611483612850565b73ffffffffffffffffffffffffffffffffffffffff166114a1611996565b73ffffffffffffffffffffffffffffffffffffffff16146114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee9061487a565b60405180910390fd5b6115005f613764565b565b61150a612850565b73ffffffffffffffffffffffffffffffffffffffff16611528611996565b73ffffffffffffffffffffffffffffffffffffffff161461157e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115759061487a565b60405180910390fd5b6102588310156115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614b22565b60405180910390fd5b6103e882111580156115d557505f8210155b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90614bb0565b60405180910390fd5b82600d8190555081600b8190555080600c5f6101000a81548160ff021916908315150217905550505050565b5f611649612850565b73ffffffffffffffffffffffffffffffffffffffff16611667611996565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b49061487a565b60405180910390fd5b5f60115f6101000a81548160ff0219169083151502179055506001905090565b6116e5612850565b73ffffffffffffffffffffffffffffffffffffffff16611703611996565b73ffffffffffffffffffffffffffffffffffffffff1614611759576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117509061487a565b60405180910390fd5b8060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e4612850565b73ffffffffffffffffffffffffffffffffffffffff16611802611996565b73ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f9061487a565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118809190614a7f565b61188a9190614a7f565b601481905550606460145411156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90614c18565b60405180910390fd5b505050565b6118e3612850565b73ffffffffffffffffffffffffffffffffffffffff16611901611996565b73ffffffffffffffffffffffffffffffffffffffff1614611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e9061487a565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f1612850565b73ffffffffffffffffffffffffffffffffffffffff16611a0f611996565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c9061487a565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a9190614800565b80601f0160208091040260200160405190810160405280929190818152602001828054611abd90614800565b8015611b085780601f10611adf57610100808354040283529160200191611b08565b820191905f5260205f20905b815481529060010190602001808311611aeb57829003601f168201915b5050505050905090565b611b1a612850565b73ffffffffffffffffffffffffffffffffffffffff16611b38611996565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b859061487a565b60405180910390fd5b7f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614ca6565b60405180910390fd5b611c268282613827565b5050565b60175481565b60105481565b601e5481565b601b5481565b5f8060015f611c4f612850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090614d34565b60405180910390fd5b611d1d611d14612850565b85858403612857565b600191505092915050565b600e5481565b5f611d41611d3a612850565b8484612a1a565b6001905092915050565b611d53612850565b73ffffffffffffffffffffffffffffffffffffffff16611d71611996565b73ffffffffffffffffffffffffffffffffffffffff1614611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe9061487a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6021602052805f5260405f205f915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ebd612850565b73ffffffffffffffffffffffffffffffffffffffff16611edb611996565b73ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f289061487a565b60405180910390fd5b80601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fcb91906144ab565b60405180910390a25050565b611fdf612850565b73ffffffffffffffffffffffffffffffffffffffff16611ffd611996565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a9061487a565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461207b9190614a7f565b6120859190614a7f565b601881905550606460185411156120d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c890614c18565b60405180910390fd5b505050565b6120de612850565b73ffffffffffffffffffffffffffffffffffffffff166120fc611996565b73ffffffffffffffffffffffffffffffffffffffff1614612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121499061487a565b60405180910390fd5b670de0b6b3a76400006103e86005612168610f6c565b61217291906148c5565b61217c9190614933565b6121869190614933565b8110156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614dc2565b60405180910390fd5b670de0b6b3a7640000816121dc91906148c5565b600a8190555050565b60135f9054906101000a900460ff1681565b60085481565b5f612206612850565b73ffffffffffffffffffffffffffffffffffffffff16612224611996565b73ffffffffffffffffffffffffffffffffffffffff161461227a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122719061487a565b60405180910390fd5b620186a06001612288610f6c565b61229291906148c5565b61229c9190614933565b8210156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d590614e50565b60405180910390fd5b6103e860056122eb610f6c565b6122f591906148c5565b6122ff9190614933565b821115612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614ede565b60405180910390fd5b8160098190555060019050919050565b60145481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b5f6123e8612850565b73ffffffffffffffffffffffffffffffffffffffff16612406611996565b73ffffffffffffffffffffffffffffffffffffffff161461245c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124539061487a565b60405180910390fd5b5f60135f6101000a81548160ff0219169083151502179055506001905090565b60165481565b61248a612850565b73ffffffffffffffffffffffffffffffffffffffff166124a8611996565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f59061487a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390614f6c565b60405180910390fd5b61257581613764565b50565b601a5481565b600a5481565b5f61258d612850565b73ffffffffffffffffffffffffffffffffffffffff166125ab611996565b73ffffffffffffffffffffffffffffffffffffffff1614612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f89061487a565b60405180910390fd5b600f546010546126119190614a7f565b4211612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614fd4565b60405180910390fd5b6103e8821115612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90615062565b60405180910390fd5b426010819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db96040518263ffffffff1660e01b81526004016126f89190614615565b602060405180830381865afa158015612713573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127379190615094565b90505f61276161271061275386856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f811115612799576127987f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db961dead836138ef565b5b5f7f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db990508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612802575f80fd5b505af1158015612814573d5f803e3d5ffd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc9061512f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906151bd565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a0d9190614572565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f9061524b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed906152d9565b60405180910390fd5b5f8103612b0d57612b0883835f6138ef565b61375f565b60115f9054906101000a900460ff16156131b457612b29611996565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b975750612b67611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bcf57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c09575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c225750600560149054906101000a900460ff16155b156131b357601160019054906101000a900460ff16612d1657601f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612cd65750601f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b612d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c90615341565b60405180910390fd5b5b60135f9054906101000a900460ff1615612ed957612d32611996565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612db957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e1157507f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ed8574360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c906153f5565b60405180910390fd5b4360125f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612f76575060205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561301d57600854811115612fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb790615483565b60405180910390fd5b600a54612fcc83611436565b82612fd79190614a7f565b1115613018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300f906154eb565b60405180910390fd5b6131b2565b60215f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156130ba575060205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561310957600854811115613104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fb90615579565b60405180910390fd5b6131b1565b60205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166131b057600a5461316383611436565b8261316e9190614a7f565b11156131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a6906154eb565b60405180910390fd5b5b5b5b5b5b5f6131be30611436565b90505f60095482101590508080156131e25750601160029054906101000a900460ff165b80156131fb5750600560149054906101000a900460ff16155b801561324e575060215f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132a15750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156132f45750601f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613337576001600560146101000a81548160ff02191690831515021790555061331c613b64565b5f600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561339a575060215f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80156133b15750600c5f9054906101000a900460ff165b80156133cc5750600d54600e546133c89190614a7f565b4210155b801561341f5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561342e5761342c613e33565b505b5f600560149054906101000a900460ff16159050601f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806134dd5750601f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156134e6575f90505b5f811561374f5760215f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561354457505f601854115b1561360e576135716064613563601854886138c590919063ffffffff16565b6138da90919063ffffffff16565b9050601854601a548261358491906148c5565b61358e9190614933565b601d5f82825461359e9190614a7f565b92505081905550601854601b54826135b691906148c5565b6135c09190614933565b601e5f8282546135d09190614a7f565b92505081905550601854601954826135e891906148c5565b6135f29190614933565b601c5f8282546136029190614a7f565b9250508190555061372c565b60215f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561366557505f601454115b1561372b576136926064613684601454886138c590919063ffffffff16565b6138da90919063ffffffff16565b9050601454601654826136a591906148c5565b6136af9190614933565b601d5f8282546136bf9190614a7f565b92505081905550601454601754826136d791906148c5565b6136e19190614933565b601e5f8282546136f19190614a7f565b925050819055506014546015548261370991906148c5565b6137139190614933565b601c5f8282546137239190614a7f565b925050819055505b5b5f8111156137405761373f8730836138ef565b5b808561374c9190615597565b94505b61375a8787876138ef565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060215f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f81836138d291906148c5565b905092915050565b5f81836138e79190614933565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361395d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139549061524b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139c2906152d9565b60405180910390fd5b6139d6838383613fed565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a509061563a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613ae79190614a7f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b4b9190614572565b60405180910390a3613b5e848484613ff2565b50505050565b5f613b6e30611436565b90505f601e54601c54601d54613b849190614a7f565b613b8e9190614a7f565b90505f80831480613b9e57505f82145b15613bab57505050613e31565b6014600954613bba91906148c5565b831115613bd3576014600954613bd091906148c5565b92505b5f600283601d5486613be591906148c5565b613bef9190614933565b613bf99190614933565b90505f613c0f8286613ff790919063ffffffff16565b90505f479050613c1e8261400c565b5f613c328247613ff790919063ffffffff16565b90505f613c5c87613c4e601c54856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f613c8688613c78601e54866138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f818385613c969190615597565b613ca09190615597565b90505f601d819055505f601c819055505f601e8190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cfc90615685565b5f6040518083038185875af1925050503d805f8114613d36576040519150601f19603f3d011682016040523d82523d5f602084013e613d3b565b606091505b5050809850505f87118015613d4f57505f81115b15613d9c57613d5e878261423f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d9393929190615699565b60405180910390a15b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613de190615685565b5f6040518083038185875af1925050503d805f8114613e1b576040519150601f19603f3d011682016040523d82523d5f602084013e613e20565b606091505b505080985050505050505050505050505b565b5f42600e819055505f3073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db96040518263ffffffff1660e01b8152600401613e959190614615565b602060405180830381865afa158015613eb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ed49190615094565b90505f613f00612710613ef2600b54856138c590919063ffffffff16565b6138da90919063ffffffff16565b90505f811115613f3857613f377f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db961dead836138ef565b5b5f7f00000000000000000000000041f043b189fdd52f54e6219bb6373e1eb3975db990508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015613fa1575f80fd5b505af1158015613fb3573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b5f81836140049190615597565b905092915050565b5f600267ffffffffffffffff811115614028576140276156ce565b5b6040519080825280602002602001820160405280156140565781602001602082028036833780820191505090505b50905030815f8151811061406d5761406c6156fb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614110573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614134919061573c565b81600181518110614148576141476156fb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141ad307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612857565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161420e959493929190615857565b5f604051808303815f87803b158015614225575f80fd5b505af1158015614237573d5f803e3d5ffd5b505050505050565b61426a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612857565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f8061dead426040518863ffffffff1660e01b81526004016142d0969594939291906158af565b60606040518083038185885af11580156142ec573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190614311919061590e565b5050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561434f578082015181840152602081019050614334565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61437482614318565b61437e8185614322565b935061438e818560208601614332565b6143978161435a565b840191505092915050565b5f6020820190508181035f8301526143ba818461436a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6143ef826143c6565b9050919050565b6143ff816143e5565b8114614409575f80fd5b50565b5f8135905061441a816143f6565b92915050565b5f819050919050565b61443281614420565b811461443c575f80fd5b50565b5f8135905061444d81614429565b92915050565b5f8060408385031215614469576144686143c2565b5b5f6144768582860161440c565b92505060206144878582860161443f565b9150509250929050565b5f8115159050919050565b6144a581614491565b82525050565b5f6020820190506144be5f83018461449c565b92915050565b5f602082840312156144d9576144d86143c2565b5b5f6144e68482850161440c565b91505092915050565b5f819050919050565b5f61451261450d614508846143c6565b6144ef565b6143c6565b9050919050565b5f614523826144f8565b9050919050565b5f61453482614519565b9050919050565b6145448161452a565b82525050565b5f60208201905061455d5f83018461453b565b92915050565b61456c81614420565b82525050565b5f6020820190506145855f830184614563565b92915050565b5f602082840312156145a05761459f6143c2565b5b5f6145ad8482850161443f565b91505092915050565b5f805f606084860312156145cd576145cc6143c2565b5b5f6145da8682870161440c565b93505060206145eb8682870161440c565b92505060406145fc8682870161443f565b9150509250925092565b61460f816143e5565b82525050565b5f6020820190506146285f830184614606565b92915050565b5f60ff82169050919050565b6146438161462e565b82525050565b5f60208201905061465c5f83018461463a565b92915050565b61466b81614491565b8114614675575f80fd5b50565b5f8135905061468681614662565b92915050565b5f805f606084860312156146a3576146a26143c2565b5b5f6146b08682870161443f565b93505060206146c18682870161443f565b92505060406146d286828701614678565b9150509250925092565b5f80604083850312156146f2576146f16143c2565b5b5f6146ff8582860161440c565b925050602061471085828601614678565b9150509250929050565b5f805f60608486031215614731576147306143c2565b5b5f61473e8682870161443f565b935050602061474f8682870161443f565b92505060406147608682870161443f565b9150509250925092565b5f6020828403121561477f5761477e6143c2565b5b5f61478c84828501614678565b91505092915050565b5f80604083850312156147ab576147aa6143c2565b5b5f6147b88582860161440c565b92505060206147c98582860161440c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061481757607f821691505b60208210810361482a576148296147d3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614864602083614322565b915061486f82614830565b602082019050919050565b5f6020820190508181035f83015261489181614858565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6148cf82614420565b91506148da83614420565b92508282026148e881614420565b915082820484148315176148ff576148fe614898565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61493d82614420565b915061494883614420565b92508261495857614957614906565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f6149bd602f83614322565b91506149c882614963565b604082019050919050565b5f6020820190508181035f8301526149ea816149b1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f614a4b602883614322565b9150614a56826149f1565b604082019050919050565b5f6020820190508181035f830152614a7881614a3f565b9050919050565b5f614a8982614420565b9150614a9483614420565b9250828201905080821115614aac57614aab614898565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e2074685f8201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b5f614b0c603383614322565b9150614b1782614ab2565b604082019050919050565b5f6020820190508181035f830152614b3981614b00565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e742062655f8201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b5f614b9a603083614322565b9150614ba582614b40565b604082019050919050565b5f6020820190508181035f830152614bc781614b8e565b9050919050565b7f4d757374206b65657020666565732061742031303025206f72206c65737300005f82015250565b5f614c02601e83614322565b9150614c0d82614bce565b602082019050919050565b5f6020820190508181035f830152614c2f81614bf6565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614c90603983614322565b9150614c9b82614c36565b604082019050919050565b5f6020820190508181035f830152614cbd81614c84565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614d1e602583614322565b9150614d2982614cc4565b604082019050919050565b5f6020820190508181035f830152614d4b81614d12565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f614dac602483614322565b9150614db782614d52565b604082019050919050565b5f6020820190508181035f830152614dd981614da0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614e3a603583614322565b9150614e4582614de0565b604082019050919050565b5f6020820190508181035f830152614e6781614e2e565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614ec8603483614322565b9150614ed382614e6e565b604082019050919050565b5f6020820190508181035f830152614ef581614ebc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614f56602683614322565b9150614f6182614efc565b604082019050919050565b5f6020820190508181035f830152614f8381614f4a565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973685f82015250565b5f614fbe602083614322565b9150614fc982614f8a565b602082019050919050565b5f6020820190508181035f830152614feb81614fb2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f5f8201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b5f61504c602a83614322565b915061505782614ff2565b604082019050919050565b5f6020820190508181035f83015261507981615040565b9050919050565b5f8151905061508e81614429565b92915050565b5f602082840312156150a9576150a86143c2565b5b5f6150b684828501615080565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f615119602483614322565b9150615124826150bf565b604082019050919050565b5f6020820190508181035f8301526151468161510d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6151a7602283614322565b91506151b28261514d565b604082019050919050565b5f6020820190508181035f8301526151d48161519b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f615235602583614322565b9150615240826151db565b604082019050919050565b5f6020820190508181035f83015261526281615229565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6152c3602383614322565b91506152ce82615269565b604082019050919050565b5f6020820190508181035f8301526152f0816152b7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f61532b601683614322565b9150615336826152f7565b602082019050919050565b5f6020820190508181035f8301526153588161531f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f6153df604983614322565b91506153ea8261535f565b606082019050919050565b5f6020820190508181035f83015261540c816153d3565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f61546d603583614322565b915061547882615413565b604082019050919050565b5f6020820190508181035f83015261549a81615461565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6154d5601383614322565b91506154e0826154a1565b602082019050919050565b5f6020820190508181035f830152615502816154c9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f615563603683614322565b915061556e82615509565b604082019050919050565b5f6020820190508181035f83015261559081615557565b9050919050565b5f6155a182614420565b91506155ac83614420565b92508282039050818111156155c4576155c3614898565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615624602683614322565b915061562f826155ca565b604082019050919050565b5f6020820190508181035f83015261565181615618565b9050919050565b5f81905092915050565b50565b5f6156705f83615658565b915061567b82615662565b5f82019050919050565b5f61568f82615665565b9150819050919050565b5f6060820190506156ac5f830186614563565b6156b96020830185614563565b6156c66040830184614563565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050615736816143f6565b92915050565b5f60208284031215615751576157506143c2565b5b5f61575e84828501615728565b91505092915050565b5f819050919050565b5f61578a61578561578084615767565b6144ef565b614420565b9050919050565b61579a81615770565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6157d2816143e5565b82525050565b5f6157e383836157c9565b60208301905092915050565b5f602082019050919050565b5f615805826157a0565b61580f81856157aa565b935061581a836157ba565b805f5b8381101561584a57815161583188826157d8565b975061583c836157ef565b92505060018101905061581d565b5085935050505092915050565b5f60a08201905061586a5f830188614563565b6158776020830187615791565b818103604083015261588981866157fb565b90506158986060830185614606565b6158a56080830184614563565b9695505050505050565b5f60c0820190506158c25f830189614606565b6158cf6020830188614563565b6158dc6040830187615791565b6158e96060830186615791565b6158f66080830185614606565b61590360a0830184614563565b979650505050505050565b5f805f60608486031215615925576159246143c2565b5b5f61593286828701615080565b935050602061594386828701615080565b925050604061595486828701615080565b915050925092509256fea264697066735822122086e36d5068ff003b6de92ab23ef882dca2d523753d9902785a4ded6925428d6164736f6c63430008140033

Deployed Bytecode Sourcemap

32727:19426:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34343:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32802:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41481:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33360:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33182:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34127:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34087;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38791:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32905:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33273:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33234:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32860:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33457:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41646:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33942:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33536:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;49735:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37899:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39338:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32997:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33835;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39709:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37692:155;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33034:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33977:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39601:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40734:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33909:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33413:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34167:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34053:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13992:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33322:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41242:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34564:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33497:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40544:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40122:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39074:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33753:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33067:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38286:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33801:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33109:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38081:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33872:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34015:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33149:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51094:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9555:100;9609:13;9642:5;9635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;:::o;11722:169::-;11805:4;11822:39;11831:12;:10;:12::i;:::-;11845:7;11854:6;11822:8;:39::i;:::-;11879:4;11872:11;;11722:169;;;;:::o;34343:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32802:51::-;;;:::o;10675:108::-;10736:7;10763:12;;10756:19;;10675:108;:::o;41481:157::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41588:9:::1;;;;;;;;;;;41560:38;;41577:9;41560:38;;;;;;;;;;;;41621:9;41609;;:21;;;;;;;;;;;;;;;;;;41481:157:::0;:::o;33360:46::-;;;;:::o;33182:35::-;;;;:::o;34127:33::-;;;;:::o;34087:::-;;;;:::o;38791:275::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38928:4:::1;38920;38915:1;38899:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38898:26;;;;:::i;:::-;38897:35;;;;:::i;:::-;38887:6;:45;;38865:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39051:6;39041;:17;;;;:::i;:::-;39018:20;:40;;;;38791:275:::0;:::o;12373:492::-;12513:4;12530:36;12540:6;12548:9;12559:6;12530:9;:36::i;:::-;12579:24;12606:11;:19;12618:6;12606:19;;;;;;;;;;;;;;;:33;12626:12;:10;:12::i;:::-;12606:33;;;;;;;;;;;;;;;;12579:60;;12678:6;12658:16;:26;;12650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12765:57;12774:6;12782:12;:10;:12::i;:::-;12815:6;12796:16;:25;12765:8;:57::i;:::-;12853:4;12846:11;;;12373:492;;;;;:::o;32905:53::-;32951:6;32905:53;:::o;33273:42::-;;;;:::o;33234:32::-;;;;;;;;;;;;;:::o;10517:93::-;10575:5;10600:2;10593:9;;10517:93;:::o;13274:215::-;13362:4;13379:80;13388:12;:10;:12::i;:::-;13402:7;13448:10;13411:11;:25;13423:12;:10;:12::i;:::-;13411:25;;;;;;;;;;;;;;;:34;13437:7;13411:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13379:8;:80::i;:::-;13477:4;13470:11;;13274:215;;;;:::o;32860:38::-;;;:::o;33457:33::-;;;;;;;;;;;;;:::o;41646:126::-;41712:4;41736:19;:28;41756:7;41736:28;;;;;;;;;;;;;;;;;;;;;;;;;41729:35;;41646:126;;;:::o;33942:28::-;;;;:::o;33536:30::-;;;;;;;;;;;;;:::o;10846:127::-;10920:7;10947:9;:18;10957:7;10947:18;;;;;;;;;;;;;;;;10940:25;;10846:127;;;:::o;2790:103::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;49735:555::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49937:3:::1;49914:19;:26;;49892:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50064:4;50052:8;:16;;:33;;;;;50084:1;50072:8;:13;;50052:33;50030:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50190:19;50172:15;:37;;;;50239:8;50220:16;:27;;;;50274:8;50258:13;;:24;;;;;;;;;;;;;;;;;;49735:555:::0;;;:::o;37899:121::-;37951:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37985:5:::1;37968:14;;:22;;;;;;;;;;;;;;;;;;38008:4;38001:11;;37899:121:::0;:::o;39338:167::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39493:4:::1;39451:31;:39;39483:6;39451:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39338:167:::0;;:::o;32997:30::-;;;;;;;;;;;;;:::o;33835:::-;;;;:::o;39709:405::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39877:13:::1;39859:15;:31;;;;39919:13;39901:15;:31;;;;39955:7;39943:9;:19;;;;40024:9;;40006:15;;39988;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39973:12;:60;;;;40068:3;40052:12;;:19;;40044:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39709:405:::0;;;:::o;37692:155::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37763:4:::1;37747:13;;:20;;;;;;;;;;;;;;;;;;37792:4;37778:11;;:18;;;;;;;;;;;;;;;;;;37824:15;37807:14;:32;;;;37692:155::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;33034:24::-;;;;;;;;;;;;;:::o;33977:31::-;;;;:::o;39601:100::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39686:7:::1;39672:11;;:21;;;;;;;;;;;;;;;;;;39601:100:::0;:::o;9774:104::-;9830:13;9863:7;9856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9774:104;:::o;40734:304::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40878:13:::1;40870:21;;:4;:21;;::::0;40848:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40989:41;41018:4;41024:5;40989:28;:41::i;:::-;40734:304:::0;;:::o;33909:24::-;;;;:::o;33413:35::-;;;;:::o;34167:27::-;;;;:::o;34053:25::-;;;;:::o;13992:413::-;14085:4;14102:24;14129:11;:25;14141:12;:10;:12::i;:::-;14129:25;;;;;;;;;;;;;;;:34;14155:7;14129:34;;;;;;;;;;;;;;;;14102:61;;14202:15;14182:16;:35;;14174:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14295:67;14304:12;:10;:12::i;:::-;14318:7;14346:15;14327:16;:34;14295:8;:67::i;:::-;14393:4;14386:11;;;13992:413;;;;:::o;33322:29::-;;;;:::o;11186:175::-;11272:4;11289:42;11299:12;:10;:12::i;:::-;11313:9;11324:6;11289:9;:42::i;:::-;11349:4;11342:11;;11186:175;;;;:::o;41242:231::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41402:15:::1;;;;;;;;;;;41359:59;;41382:18;41359:59;;;;;;;;;;;;41447:18;41429:15;;:36;;;;;;;;;;;;;;;;;;41242:231:::0;:::o;34564:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33497:32::-;;;;;;;;;;;;;:::o;40544:182::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40660:8:::1;40629:19;:28;40649:7;40629:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40700:7;40684:34;;;40709:8;40684:34;;;;;;:::i;:::-;;;;;;;;40544:182:::0;;:::o;40122:414::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40292:13:::1;40273:16;:32;;;;40335:13;40316:16;:32;;;;40372:7;40359:10;:20;;;;40444:10;;40425:16;;40406;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40390:13;:64;;;;40490:3;40473:13;;:20;;40465:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40122:414:::0;;;:::o;39074:256::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39214:4:::1;39206;39201:1;39185:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39184:26;;;;:::i;:::-;39183:35;;;;:::i;:::-;39173:6;:45;;39151:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39315:6;39305;:17;;;;:::i;:::-;39293:9;:29;;;;39074:256:::0;:::o;33753:39::-;;;;;;;;;;;;;:::o;33067:35::-;;;;:::o;38286:497::-;38394:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38473:6:::1;38468:1;38452:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38451:28;;;;:::i;:::-;38438:9;:41;;38416:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38628:4;38623:1;38607:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38606:26;;;;:::i;:::-;38593:9;:39;;38571:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38744:9;38723:18;:30;;;;38771:4;38764:11;;38286:497:::0;;;:::o;33801:27::-;;;;:::o;11424:151::-;11513:7;11540:11;:18;11552:5;11540:18;;;;;;;;;;;;;;;:27;11559:7;11540:27;;;;;;;;;;;;;;;;11533:34;;11424:151;;;;:::o;33109:33::-;;;;:::o;38081:135::-;38141:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38181:5:::1;38158:20;;:28;;;;;;;;;;;;;;;;;;38204:4;38197:11;;38081:135:::0;:::o;33872:30::-;;;;:::o;3048:201::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:1:::1;3137:22;;:8;:22;;::::0;3129:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:28;3232:8;3213:18;:28::i;:::-;3048:201:::0;:::o;34015:31::-;;;;:::o;33149:24::-;;;;:::o;51094:1056::-;51205:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51290:19:::1;;51267:20;;:42;;;;:::i;:::-;51249:15;:60;51227:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51399:4;51388:7;:15;;51380:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51484:15;51461:20;:38;;;;51554:28;51585:4;:14;;;51600:13;51585:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51554:60;;51664:20;51687:44;51725:5;51687:33;51712:7;51687:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51664:67;;51851:1;51836:12;:16;51832:110;;;51869:61;51885:13;51908:6;51917:12;51869:15;:61::i;:::-;51832:110;52017:19;52054:13;52017:51;;52079:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52106:14;;;;;;;;;;52138:4;52131:11;;;;;51094:1056:::0;;;:::o;812:98::-;865:7;892:10;885:17;;812:98;:::o;17676:380::-;17829:1;17812:19;;:5;:19;;;17804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17910:1;17891:21;;:7;:21;;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17994:6;17964:11;:18;17976:5;17964:18;;;;;;;;;;;;;;;:27;17983:7;17964:27;;;;;;;;;;;;;;;:36;;;;18032:7;18016:32;;18025:5;18016:32;;;18041:6;18016:32;;;;;;:::i;:::-;;;;;;;;17676:380;;;:::o;41830:5011::-;41978:1;41962:18;;:4;:18;;;41954:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42055:1;42041:16;;:2;:16;;;42033:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42124:1;42114:6;:11;42110:93;;42142:28;42158:4;42164:2;42168:1;42142:15;:28::i;:::-;42185:7;;42110:93;42219:14;;;;;;;;;;;42215:2487;;;42280:7;:5;:7::i;:::-;42272:15;;:4;:15;;;;:49;;;;;42314:7;:5;:7::i;:::-;42308:13;;:2;:13;;;;42272:49;:86;;;;;42356:1;42342:16;;:2;:16;;;;42272:86;:128;;;;;42393:6;42379:21;;:2;:21;;;;42272:128;:158;;;;;42422:8;;;;;;;;;;;42421:9;42272:158;42250:2441;;;42470:13;;;;;;;;;;;42465:223;;42542:19;:25;42562:4;42542:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42571:19;:23;42591:2;42571:23;;;;;;;;;;;;;;;;;;;;;;;;;42542:52;42508:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42465:223;42844:20;;;;;;;;;;;42840:641;;;42925:7;:5;:7::i;:::-;42919:13;;:2;:13;;;;:72;;;;;42975:15;42961:30;;:2;:30;;;;42919:72;:129;;;;;43034:13;43020:28;;:2;:28;;;;42919:129;42889:573;;;43212:12;43137:28;:39;43166:9;43137:39;;;;;;;;;;;;;;;;:87;43099:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43426:12;43384:28;:39;43413:9;43384:39;;;;;;;;;;;;;;;:54;;;;42889:573;42840:641;43555:25;:31;43581:4;43555:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43612:31;:35;43644:2;43612:35;;;;;;;;;;;;;;;;;;;;;;;;;43611:36;43555:92;43529:1147;;;43734:20;;43724:6;:30;;43690:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43942:9;;43925:13;43935:2;43925:9;:13::i;:::-;43916:6;:22;;;;:::i;:::-;:35;;43882:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43529:1147;;;44120:25;:29;44146:2;44120:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44175:31;:37;44207:4;44175:37;;;;;;;;;;;;;;;;;;;;;;;;;44174:38;44120:92;44094:582;;;44299:20;;44289:6;:30;;44255:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44094:582;;;44456:31;:35;44488:2;44456:35;;;;;;;;;;;;;;;;;;;;;;;;;44451:225;;44576:9;;44559:13;44569:2;44559:9;:13::i;:::-;44550:6;:22;;;;:::i;:::-;:35;;44516:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44451:225;44094:582;43529:1147;42250:2441;42215:2487;44714:28;44745:24;44763:4;44745:9;:24::i;:::-;44714:55;;44782:12;44821:18;;44797:20;:42;;44782:57;;44870:7;:35;;;;;44894:11;;;;;;;;;;;44870:35;:61;;;;;44923:8;;;;;;;;;;;44922:9;44870:61;:110;;;;;44949:25;:31;44975:4;44949:31;;;;;;;;;;;;;;;;;;;;;;;;;44948:32;44870:110;:153;;;;;44998:19;:25;45018:4;44998:25;;;;;;;;;;;;;;;;;;;;;;;;;44997:26;44870:153;:194;;;;;45041:19;:23;45061:2;45041:23;;;;;;;;;;;;;;;;;;;;;;;;;45040:24;44870:194;44852:326;;;45102:4;45091:8;;:15;;;;;;;;;;;;;;;;;;45123:10;:8;:10::i;:::-;45161:5;45150:8;;:16;;;;;;;;;;;;;;;;;;44852:326;45209:8;;;;;;;;;;;45208:9;:55;;;;;45234:25;:29;45260:2;45234:29;;;;;;;;;;;;;;;;;;;;;;;;;45208:55;:85;;;;;45280:13;;;;;;;;;;;45208:85;:153;;;;;45346:15;;45329:14;;:32;;;;:::i;:::-;45310:15;:51;;45208:153;:196;;;;;45379:19;:25;45399:4;45379:25;;;;;;;;;;;;;;;;;;;;;;;;;45378:26;45208:196;45190:282;;;45431:29;:27;:29::i;:::-;;45190:282;45484:12;45500:8;;;;;;;;;;;45499:9;45484:24;;45610:19;:25;45630:4;45610:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45639:19;:23;45659:2;45639:23;;;;;;;;;;;;;;;;;;;;;;;;;45610:52;45606:100;;;45689:5;45679:15;;45606:100;45718:12;45823:7;45819:969;;;45875:25;:29;45901:2;45875:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45924:1;45908:13;;:17;45875:50;45871:768;;;45953:34;45983:3;45953:25;45964:13;;45953:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45946:41;;46056:13;;46036:16;;46029:4;:23;;;;:::i;:::-;46028:41;;;;:::i;:::-;46006:18;;:63;;;;;;;:::i;:::-;;;;;;;;46126:13;;46112:10;;46105:4;:17;;;;:::i;:::-;46104:35;;;;:::i;:::-;46088:12;;:51;;;;;;;:::i;:::-;;;;;;;;46208:13;;46188:16;;46181:4;:23;;;;:::i;:::-;46180:41;;;;:::i;:::-;46158:18;;:63;;;;;;;:::i;:::-;;;;;;;;45871:768;;;46283:25;:31;46309:4;46283:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46333:1;46318:12;;:16;46283:51;46279:360;;;46362:33;46391:3;46362:24;46373:12;;46362:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46355:40;;46463:12;;46444:15;;46437:4;:22;;;;:::i;:::-;46436:39;;;;:::i;:::-;46414:18;;:61;;;;;;;:::i;:::-;;;;;;;;46531:12;;46518:9;;46511:4;:16;;;;:::i;:::-;46510:33;;;;:::i;:::-;46494:12;;:49;;;;;;;:::i;:::-;;;;;;;;46611:12;;46592:15;;46585:4;:22;;;;:::i;:::-;46584:39;;;;:::i;:::-;46562:18;;:61;;;;;;;:::i;:::-;;;;;;;;46279:360;45871:768;46666:1;46659:4;:8;46655:91;;;46688:42;46704:4;46718;46725;46688:15;:42::i;:::-;46655:91;46772:4;46762:14;;;;;:::i;:::-;;;45819:969;46800:33;46816:4;46822:2;46826:6;46800:15;:33::i;:::-;41943:4898;;;;41830:5011;;;;:::o;3409:191::-;3483:16;3502:6;;;;;;;;;;;3483:25;;3528:8;3519:6;;:17;;;;;;;;;;;;;;;;;;3583:8;3552:40;;3573:8;3552:40;;;;;;;;;;;;3472:128;3409:191;:::o;41046:188::-;41163:5;41129:25;:31;41155:4;41129:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41220:5;41186:40;;41214:4;41186:40;;;;;;;;;;;;41046:188;;:::o;23129:98::-;23187:7;23218:1;23214;:5;;;;:::i;:::-;23207:12;;23129:98;;;;:::o;23528:::-;23586:7;23617:1;23613;:5;;;;:::i;:::-;23606:12;;23528:98;;;;:::o;14895:733::-;15053:1;15035:20;;:6;:20;;;15027:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15137:1;15116:23;;:9;:23;;;15108:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15192:47;15213:6;15221:9;15232:6;15192:20;:47::i;:::-;15252:21;15276:9;:17;15286:6;15276:17;;;;;;;;;;;;;;;;15252:41;;15329:6;15312:13;:23;;15304:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15434:13;:22;15414:9;:17;15424:6;15414:17;;;;;;;;;;;;;;;:42;;;;15502:6;15478:9;:20;15488:9;15478:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15543:9;15526:35;;15535:6;15526:35;;;15554:6;15526:35;;;;;;:::i;:::-;;;;;;;;15574:46;15594:6;15602:9;15613:6;15574:19;:46::i;:::-;15016:612;14895:733;;;:::o;47971:1756::-;48010:23;48036:24;48054:4;48036:9;:24::i;:::-;48010:50;;48071:25;48167:12;;48133:18;;48099;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48071:108;;48190:12;48238:1;48219:15;:20;:46;;;;48264:1;48243:17;:22;48219:46;48215:85;;;48282:7;;;;;48215:85;48355:2;48334:18;;:23;;;;:::i;:::-;48316:15;:41;48312:115;;;48413:2;48392:18;;:23;;;;:::i;:::-;48374:41;;48312:115;48488:23;48601:1;48568:17;48533:18;;48515:15;:36;;;;:::i;:::-;48514:71;;;;:::i;:::-;:88;;;;:::i;:::-;48488:114;;48613:26;48642:36;48662:15;48642;:19;;:36;;;;:::i;:::-;48613:65;;48691:25;48719:21;48691:49;;48753:36;48770:18;48753:16;:36::i;:::-;48802:18;48823:44;48849:17;48823:21;:25;;:44;;;;:::i;:::-;48802:65;;48880:23;48906:81;48959:17;48906:34;48921:18;;48906:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48880:107;;48998:17;49018:51;49051:17;49018:28;49033:12;;49018:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48998:71;;49082:23;49139:9;49121:15;49108:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49082:66;;49182:1;49161:18;:22;;;;49215:1;49194:18;:22;;;;49242:1;49227:12;:16;;;;49278:9;;;;;;;;;;;49270:23;;49301:9;49270:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49256:59;;;;;49350:1;49332:15;:19;:42;;;;;49373:1;49355:15;:19;49332:42;49328:278;;;49391:46;49404:15;49421;49391:12;:46::i;:::-;49457:137;49490:18;49527:15;49561:18;;49457:137;;;;;;;;:::i;:::-;;;;;;;;49328:278;49640:15;;;;;;;;;;;49632:29;;49683:21;49632:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49618:101;;;;;47999:1728;;;;;;;;;;47971:1756;:::o;50298:788::-;50355:4;50389:15;50372:14;:32;;;;50459:28;50490:4;:14;;;50505:13;50490:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50459:60;;50569:20;50592:77;50653:5;50592:42;50617:16;;50592:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50569:100;;50789:1;50774:12;:16;50770:110;;;50807:61;50823:13;50846:6;50855:12;50807:15;:61::i;:::-;50770:110;50955:19;50992:13;50955:51;;51017:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51044:12;;;;;;;;;;51074:4;51067:11;;;;;50298:788;:::o;18656:125::-;;;;:::o;19385:124::-;;;;:::o;22772:98::-;22830:7;22861:1;22857;:5;;;;:::i;:::-;22850:12;;22772:98;;;;:::o;46849:589::-;46975:21;47013:1;46999:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46975:40;;47044:4;47026;47031:1;47026:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47070:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47060:4;47065:1;47060:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47105:62;47122:4;47137:15;47155:11;47105:8;:62::i;:::-;47206:15;:66;;;47287:11;47313:1;47357:4;47384;47404:15;47206:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46904:534;46849:589;:::o;47446:517::-;47594:62;47611:4;47626:15;47644:11;47594:8;:62::i;:::-;47699:15;:31;;;47738:9;47771:4;47791:11;47817:1;47860;32951:6;47929:15;47699:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47446:517;;:::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:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::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:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:180::-;16600:32;16596:1;16588:6;16584:14;16577:56;16460:180;:::o;16646:366::-;16788:3;16809:67;16873:2;16868:3;16809:67;:::i;:::-;16802:74;;16885:93;16974:3;16885:93;:::i;:::-;17003:2;16998:3;16994:12;16987:19;;16646:366;;;:::o;17018:419::-;17184:4;17222:2;17211:9;17207:18;17199:26;;17271:9;17265:4;17261:20;17257:1;17246:9;17242:17;17235:47;17299:131;17425:4;17299:131;:::i;:::-;17291:139;;17018:419;;;:::o;17443:244::-;17583:34;17579:1;17571:6;17567:14;17560:58;17652:27;17647:2;17639:6;17635:15;17628:52;17443:244;:::o;17693:366::-;17835:3;17856:67;17920:2;17915:3;17856:67;:::i;:::-;17849:74;;17932:93;18021:3;17932:93;:::i;:::-;18050:2;18045:3;18041:12;18034:19;;17693:366;;;:::o;18065:419::-;18231:4;18269:2;18258:9;18254:18;18246:26;;18318:9;18312:4;18308:20;18304:1;18293:9;18289:17;18282:47;18346:131;18472:4;18346:131;:::i;:::-;18338:139;;18065:419;;;:::o;18490:224::-;18630:34;18626:1;18618:6;18614:14;18607:58;18699:7;18694:2;18686:6;18682:15;18675:32;18490:224;:::o;18720:366::-;18862:3;18883:67;18947:2;18942:3;18883:67;:::i;:::-;18876:74;;18959:93;19048:3;18959:93;:::i;:::-;19077:2;19072:3;19068:12;19061:19;;18720:366;;;:::o;19092:419::-;19258:4;19296:2;19285:9;19281:18;19273:26;;19345:9;19339:4;19335:20;19331:1;19320:9;19316:17;19309:47;19373:131;19499:4;19373:131;:::i;:::-;19365:139;;19092:419;;;:::o;19517:223::-;19657:34;19653:1;19645:6;19641:14;19634:58;19726:6;19721:2;19713:6;19709:15;19702:31;19517:223;:::o;19746:366::-;19888:3;19909:67;19973:2;19968:3;19909:67;:::i;:::-;19902:74;;19985:93;20074:3;19985:93;:::i;:::-;20103:2;20098:3;20094:12;20087:19;;19746:366;;;:::o;20118:419::-;20284:4;20322:2;20311:9;20307:18;20299:26;;20371:9;20365:4;20361:20;20357:1;20346:9;20342:17;20335:47;20399:131;20525:4;20399:131;:::i;:::-;20391:139;;20118:419;;;:::o;20543:240::-;20683:34;20679:1;20671:6;20667:14;20660:58;20752:23;20747:2;20739:6;20735:15;20728:48;20543:240;:::o;20789:366::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:419::-;21327:4;21365:2;21354:9;21350:18;21342:26;;21414:9;21408:4;21404:20;21400:1;21389:9;21385:17;21378:47;21442:131;21568:4;21442:131;:::i;:::-;21434:139;;21161:419;;;:::o;21586:239::-;21726:34;21722:1;21714:6;21710:14;21703:58;21795:22;21790:2;21782:6;21778:15;21771:47;21586:239;:::o;21831:366::-;21973:3;21994:67;22058:2;22053:3;21994:67;:::i;:::-;21987:74;;22070:93;22159:3;22070:93;:::i;:::-;22188:2;22183:3;22179:12;22172:19;;21831:366;;;:::o;22203:419::-;22369:4;22407:2;22396:9;22392:18;22384:26;;22456:9;22450:4;22446:20;22442:1;22431:9;22427:17;22420:47;22484:131;22610:4;22484:131;:::i;:::-;22476:139;;22203:419;;;:::o;22628:225::-;22768:34;22764:1;22756:6;22752:14;22745:58;22837:8;22832:2;22824:6;22820:15;22813:33;22628:225;:::o;22859:366::-;23001:3;23022:67;23086:2;23081:3;23022:67;:::i;:::-;23015:74;;23098:93;23187:3;23098:93;:::i;:::-;23216:2;23211:3;23207:12;23200:19;;22859:366;;;:::o;23231:419::-;23397:4;23435:2;23424:9;23420:18;23412:26;;23484:9;23478:4;23474:20;23470:1;23459:9;23455:17;23448:47;23512:131;23638:4;23512:131;:::i;:::-;23504:139;;23231:419;;;:::o;23656:182::-;23796:34;23792:1;23784:6;23780:14;23773:58;23656:182;:::o;23844:366::-;23986:3;24007:67;24071:2;24066:3;24007:67;:::i;:::-;24000:74;;24083:93;24172:3;24083:93;:::i;:::-;24201:2;24196:3;24192:12;24185:19;;23844:366;;;:::o;24216:419::-;24382:4;24420:2;24409:9;24405:18;24397:26;;24469:9;24463:4;24459:20;24455:1;24444:9;24440:17;24433:47;24497:131;24623:4;24497:131;:::i;:::-;24489:139;;24216:419;;;:::o;24641:229::-;24781:34;24777:1;24769:6;24765:14;24758:58;24850:12;24845:2;24837:6;24833:15;24826:37;24641:229;:::o;24876:366::-;25018:3;25039:67;25103:2;25098:3;25039:67;:::i;:::-;25032:74;;25115:93;25204:3;25115:93;:::i;:::-;25233:2;25228:3;25224:12;25217:19;;24876:366;;;:::o;25248:419::-;25414:4;25452:2;25441:9;25437:18;25429:26;;25501:9;25495:4;25491:20;25487:1;25476:9;25472:17;25465:47;25529:131;25655:4;25529:131;:::i;:::-;25521:139;;25248:419;;;:::o;25673:143::-;25730:5;25761:6;25755:13;25746:22;;25777:33;25804:5;25777:33;:::i;:::-;25673:143;;;;:::o;25822:351::-;25892:6;25941:2;25929:9;25920:7;25916:23;25912:32;25909:119;;;25947:79;;:::i;:::-;25909:119;26067:1;26092:64;26148:7;26139:6;26128:9;26124:22;26092:64;:::i;:::-;26082:74;;26038:128;25822:351;;;;:::o;26179:223::-;26319:34;26315:1;26307:6;26303:14;26296:58;26388:6;26383:2;26375:6;26371:15;26364:31;26179:223;:::o;26408:366::-;26550:3;26571:67;26635:2;26630:3;26571:67;:::i;:::-;26564:74;;26647:93;26736:3;26647:93;:::i;:::-;26765:2;26760:3;26756:12;26749:19;;26408:366;;;:::o;26780:419::-;26946:4;26984:2;26973:9;26969:18;26961:26;;27033:9;27027:4;27023:20;27019:1;27008:9;27004:17;26997:47;27061:131;27187:4;27061:131;:::i;:::-;27053:139;;26780:419;;;:::o;27205:221::-;27345:34;27341:1;27333:6;27329:14;27322:58;27414:4;27409:2;27401:6;27397:15;27390:29;27205:221;:::o;27432:366::-;27574:3;27595:67;27659:2;27654:3;27595:67;:::i;:::-;27588:74;;27671:93;27760:3;27671:93;:::i;:::-;27789:2;27784:3;27780:12;27773:19;;27432:366;;;:::o;27804:419::-;27970:4;28008:2;27997:9;27993:18;27985:26;;28057:9;28051:4;28047:20;28043:1;28032:9;28028:17;28021:47;28085:131;28211:4;28085:131;:::i;:::-;28077:139;;27804:419;;;:::o;28229:224::-;28369:34;28365:1;28357:6;28353:14;28346:58;28438:7;28433:2;28425:6;28421:15;28414:32;28229:224;:::o;28459:366::-;28601:3;28622:67;28686:2;28681:3;28622:67;:::i;:::-;28615:74;;28698:93;28787:3;28698:93;:::i;:::-;28816:2;28811:3;28807:12;28800:19;;28459:366;;;:::o;28831:419::-;28997:4;29035:2;29024:9;29020:18;29012:26;;29084:9;29078:4;29074:20;29070:1;29059:9;29055:17;29048:47;29112:131;29238:4;29112:131;:::i;:::-;29104:139;;28831:419;;;:::o;29256:222::-;29396:34;29392:1;29384:6;29380:14;29373:58;29465:5;29460:2;29452:6;29448:15;29441:30;29256:222;:::o;29484:366::-;29626:3;29647:67;29711:2;29706:3;29647:67;:::i;:::-;29640:74;;29723:93;29812:3;29723:93;:::i;:::-;29841:2;29836:3;29832:12;29825:19;;29484:366;;;:::o;29856:419::-;30022:4;30060:2;30049:9;30045:18;30037:26;;30109:9;30103:4;30099:20;30095:1;30084:9;30080:17;30073:47;30137:131;30263:4;30137:131;:::i;:::-;30129:139;;29856:419;;;:::o;30281:172::-;30421:24;30417:1;30409:6;30405:14;30398:48;30281:172;:::o;30459:366::-;30601:3;30622:67;30686:2;30681:3;30622:67;:::i;:::-;30615:74;;30698:93;30787:3;30698:93;:::i;:::-;30816:2;30811:3;30807:12;30800:19;;30459:366;;;:::o;30831:419::-;30997:4;31035:2;31024:9;31020:18;31012:26;;31084:9;31078:4;31074:20;31070:1;31059:9;31055:17;31048:47;31112:131;31238:4;31112:131;:::i;:::-;31104:139;;30831:419;;;:::o;31256:297::-;31396:34;31392:1;31384:6;31380:14;31373:58;31465:34;31460:2;31452:6;31448:15;31441:59;31534:11;31529:2;31521:6;31517:15;31510:36;31256:297;:::o;31559:366::-;31701:3;31722:67;31786:2;31781:3;31722:67;:::i;:::-;31715:74;;31798:93;31887:3;31798:93;:::i;:::-;31916:2;31911:3;31907:12;31900:19;;31559:366;;;:::o;31931:419::-;32097:4;32135:2;32124:9;32120:18;32112:26;;32184:9;32178:4;32174:20;32170:1;32159:9;32155:17;32148:47;32212:131;32338:4;32212:131;:::i;:::-;32204:139;;31931:419;;;:::o;32356:240::-;32496:34;32492:1;32484:6;32480:14;32473:58;32565:23;32560:2;32552:6;32548:15;32541:48;32356:240;:::o;32602:366::-;32744:3;32765:67;32829:2;32824:3;32765:67;:::i;:::-;32758:74;;32841:93;32930:3;32841:93;:::i;:::-;32959:2;32954:3;32950:12;32943:19;;32602:366;;;:::o;32974:419::-;33140:4;33178:2;33167:9;33163:18;33155:26;;33227:9;33221:4;33217:20;33213:1;33202:9;33198:17;33191:47;33255:131;33381:4;33255:131;:::i;:::-;33247:139;;32974:419;;;:::o;33399:169::-;33539:21;33535:1;33527:6;33523:14;33516:45;33399:169;:::o;33574:366::-;33716:3;33737:67;33801:2;33796:3;33737:67;:::i;:::-;33730:74;;33813:93;33902:3;33813:93;:::i;:::-;33931:2;33926:3;33922:12;33915:19;;33574:366;;;:::o;33946:419::-;34112:4;34150:2;34139:9;34135:18;34127:26;;34199:9;34193:4;34189:20;34185:1;34174:9;34170:17;34163:47;34227:131;34353:4;34227:131;:::i;:::-;34219:139;;33946:419;;;:::o;34371:241::-;34511:34;34507:1;34499:6;34495:14;34488:58;34580:24;34575:2;34567:6;34563:15;34556:49;34371:241;:::o;34618:366::-;34760:3;34781:67;34845:2;34840:3;34781:67;:::i;:::-;34774:74;;34857:93;34946:3;34857:93;:::i;:::-;34975:2;34970:3;34966:12;34959:19;;34618:366;;;:::o;34990:419::-;35156:4;35194:2;35183:9;35179:18;35171:26;;35243:9;35237:4;35233:20;35229:1;35218:9;35214:17;35207:47;35271:131;35397:4;35271:131;:::i;:::-;35263:139;;34990:419;;;:::o;35415:194::-;35455:4;35475:20;35493:1;35475:20;:::i;:::-;35470:25;;35509:20;35527:1;35509:20;:::i;:::-;35504:25;;35553:1;35550;35546:9;35538:17;;35577:1;35571:4;35568:11;35565:37;;;35582:18;;:::i;:::-;35565:37;35415:194;;;;:::o;35615:225::-;35755:34;35751:1;35743:6;35739:14;35732:58;35824:8;35819:2;35811:6;35807:15;35800:33;35615:225;:::o;35846:366::-;35988:3;36009:67;36073:2;36068:3;36009:67;:::i;:::-;36002:74;;36085:93;36174:3;36085:93;:::i;:::-;36203:2;36198:3;36194:12;36187:19;;35846:366;;;:::o;36218:419::-;36384:4;36422:2;36411:9;36407:18;36399:26;;36471:9;36465:4;36461:20;36457:1;36446:9;36442:17;36435:47;36499:131;36625:4;36499:131;:::i;:::-;36491:139;;36218:419;;;:::o;36643:147::-;36744:11;36781:3;36766:18;;36643:147;;;;:::o;36796:114::-;;:::o;36916:398::-;37075:3;37096:83;37177:1;37172:3;37096:83;:::i;:::-;37089:90;;37188:93;37277:3;37188:93;:::i;:::-;37306:1;37301:3;37297:11;37290:18;;36916:398;;;:::o;37320:379::-;37504:3;37526:147;37669:3;37526:147;:::i;:::-;37519:154;;37690:3;37683:10;;37320:379;;;:::o;37705:442::-;37854:4;37892:2;37881:9;37877:18;37869:26;;37905:71;37973:1;37962:9;37958:17;37949:6;37905:71;:::i;:::-;37986:72;38054:2;38043:9;38039:18;38030:6;37986:72;:::i;:::-;38068;38136:2;38125:9;38121:18;38112:6;38068:72;:::i;:::-;37705:442;;;;;;:::o;38153:180::-;38201:77;38198:1;38191:88;38298:4;38295:1;38288:15;38322:4;38319:1;38312:15;38339:180;38387:77;38384:1;38377:88;38484:4;38481:1;38474:15;38508:4;38505:1;38498:15;38525:143;38582:5;38613:6;38607:13;38598:22;;38629:33;38656:5;38629:33;:::i;:::-;38525:143;;;;:::o;38674:351::-;38744:6;38793:2;38781:9;38772:7;38768:23;38764:32;38761:119;;;38799:79;;:::i;:::-;38761:119;38919:1;38944:64;39000:7;38991:6;38980:9;38976:22;38944:64;:::i;:::-;38934:74;;38890:128;38674:351;;;;:::o;39031:85::-;39076:7;39105:5;39094:16;;39031:85;;;:::o;39122:158::-;39180:9;39213:61;39231:42;39240:32;39266:5;39240:32;:::i;:::-;39231:42;:::i;:::-;39213:61;:::i;:::-;39200:74;;39122:158;;;:::o;39286:147::-;39381:45;39420:5;39381:45;:::i;:::-;39376:3;39369:58;39286:147;;:::o;39439:114::-;39506:6;39540:5;39534:12;39524:22;;39439:114;;;:::o;39559:184::-;39658:11;39692:6;39687:3;39680:19;39732:4;39727:3;39723:14;39708:29;;39559:184;;;;:::o;39749:132::-;39816:4;39839:3;39831:11;;39869:4;39864:3;39860:14;39852:22;;39749:132;;;:::o;39887:108::-;39964:24;39982:5;39964:24;:::i;:::-;39959:3;39952:37;39887:108;;:::o;40001:179::-;40070:10;40091:46;40133:3;40125:6;40091:46;:::i;:::-;40169:4;40164:3;40160:14;40146:28;;40001:179;;;;:::o;40186:113::-;40256:4;40288;40283:3;40279:14;40271:22;;40186:113;;;:::o;40335:732::-;40454:3;40483:54;40531:5;40483:54;:::i;:::-;40553:86;40632:6;40627:3;40553:86;:::i;:::-;40546:93;;40663:56;40713:5;40663:56;:::i;:::-;40742:7;40773:1;40758:284;40783:6;40780:1;40777:13;40758:284;;;40859:6;40853:13;40886:63;40945:3;40930:13;40886:63;:::i;:::-;40879:70;;40972:60;41025:6;40972:60;:::i;:::-;40962:70;;40818:224;40805:1;40802;40798:9;40793:14;;40758:284;;;40762:14;41058:3;41051:10;;40459:608;;;40335:732;;;;:::o;41073:831::-;41336:4;41374:3;41363:9;41359:19;41351:27;;41388:71;41456:1;41445:9;41441:17;41432:6;41388:71;:::i;:::-;41469:80;41545:2;41534:9;41530:18;41521:6;41469:80;:::i;:::-;41596:9;41590:4;41586:20;41581:2;41570:9;41566:18;41559:48;41624:108;41727:4;41718:6;41624:108;:::i;:::-;41616:116;;41742:72;41810:2;41799:9;41795:18;41786:6;41742:72;:::i;:::-;41824:73;41892:3;41881:9;41877:19;41868:6;41824:73;:::i;:::-;41073:831;;;;;;;;:::o;41910:807::-;42159:4;42197:3;42186:9;42182:19;42174:27;;42211:71;42279:1;42268:9;42264:17;42255:6;42211:71;:::i;:::-;42292:72;42360:2;42349:9;42345:18;42336:6;42292:72;:::i;:::-;42374:80;42450:2;42439:9;42435:18;42426:6;42374:80;:::i;:::-;42464;42540:2;42529:9;42525:18;42516:6;42464:80;:::i;:::-;42554:73;42622:3;42611:9;42607:19;42598:6;42554:73;:::i;:::-;42637;42705:3;42694:9;42690:19;42681:6;42637:73;:::i;:::-;41910:807;;;;;;;;;:::o;42723:663::-;42811:6;42819;42827;42876:2;42864:9;42855:7;42851:23;42847:32;42844:119;;;42882:79;;:::i;:::-;42844:119;43002:1;43027:64;43083:7;43074:6;43063:9;43059:22;43027:64;:::i;:::-;43017:74;;42973:128;43140:2;43166:64;43222:7;43213:6;43202:9;43198:22;43166:64;:::i;:::-;43156:74;;43111:129;43279:2;43305:64;43361:7;43352:6;43341:9;43337:22;43305:64;:::i;:::-;43295:74;;43250:129;42723:663;;;;;:::o

Swarm Source

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