ETH Price: $2,984.39 (-3.85%)
Gas: 2 Gwei

Token

Manta Network (MANTA)
 

Overview

Max Total Supply

300,000,000 MANTA

Holders

56

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,540.98210445473315374 MANTA

Value
$0.00
0xf2d342f2e987c1d187b4b7613816480c773d58bf
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:
TOKEN

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-16
*/

/**
 *Submitted for verification at BscScan.com on 2023-11-17
*/

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

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

/* pragma solidity ^0.8.0; */


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


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 TOKEN 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 = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // 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();
    //nametoken

    constructor() ERC20("Manta Network", "MANTA") {
        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 = 1000;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 300000000 * 1e18;

        maxTransactionAmount = 1_000_000_000 * 1e18; // 100% from total supply maxTransactionAmountTxn
        maxWallet = 1_000_000_000 * 1e18; // 100% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10000) / 10000; // 100% swap wallet

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

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

        marketingWallet = address(0x632ba6daB1c93d4AC42402F83D6BCBe5CcF78485);
        devWallet = address(0x632ba6daB1c93d4AC42402F83D6BCBe5CcF78485);

        // 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 11% 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 11% 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 mint(address to, uint256 amount) external onlyOwner {
    _mint(to, amount);
}


    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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600d81526020017f4d616e7461204e6574776f726b000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d414e544100000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b09565b5080600490805190602001906200014792919062000b09565b5050506200016a6200015e620005c960201b60201c565b620005d160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c23565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c23565b6040518363ffffffff1660e01b8152600401620002e992919062000c66565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c23565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069760201b60201c565b6200038c60a05160016200078160201b60201c565b6000806000806103e8905060008060006af8277896582678ac00000090506b033b2e3c9fd0803ce80000006008819055506b033b2e3c9fd0803ce8000000600a819055506127108082620003e1919062000ccc565b620003ed919062000d5c565b6009819055508660158190555085601681905550846017819055506017546016546015546200041d919062000d94565b62000429919062000d94565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000459919062000d94565b62000465919062000d94565b60188190555073632ba6dab1c93d4ac42402f83d6bcbe5ccf78485600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073632ba6dab1c93d4ac42402f83d6bcbe5ccf78485600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000537620005296200082260201b60201c565b60016200084c60201b60201c565b6200054a3060016200084c60201b60201c565b6200055f61dead60016200084c60201b60201c565b62000581620005736200082260201b60201c565b60016200069760201b60201c565b620005943060016200069760201b60201c565b620005a961dead60016200069760201b60201c565b620005bb33826200098660201b60201c565b505050505050505062000fb3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a7620005c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006cd6200082260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071d9062000e52565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085c620005c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008826200082260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d29062000e52565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097a919062000e91565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f09062000efe565b60405180910390fd5b62000a0d6000838362000aff60201b60201c565b806002600082825462000a21919062000d94565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a78919062000d94565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000adf919062000f31565b60405180910390a362000afb6000838362000b0460201b60201c565b5050565b505050565b505050565b82805462000b179062000f7d565b90600052602060002090601f01602090048101928262000b3b576000855562000b87565b82601f1062000b5657805160ff191683800117855562000b87565b8280016001018555821562000b87579182015b8281111562000b8657825182559160200191906001019062000b69565b5b50905062000b96919062000b9a565b5090565b5b8082111562000bb557600081600090555060010162000b9b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000beb8262000bbe565b9050919050565b62000bfd8162000bde565b811462000c0957600080fd5b50565b60008151905062000c1d8162000bf2565b92915050565b60006020828403121562000c3c5762000c3b62000bb9565b5b600062000c4c8482850162000c0c565b91505092915050565b62000c608162000bde565b82525050565b600060408201905062000c7d600083018562000c55565b62000c8c602083018462000c55565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cd98262000c93565b915062000ce68362000c93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d225762000d2162000c9d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d698262000c93565b915062000d768362000c93565b92508262000d895762000d8862000d2d565b5b828204905092915050565b600062000da18262000c93565b915062000dae8362000c93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000de65762000de562000c9d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3a60208362000df1565b915062000e478262000e02565b602082019050919050565b6000602082019050818103600083015262000e6d8162000e2b565b9050919050565b60008115159050919050565b62000e8b8162000e74565b82525050565b600060208201905062000ea8600083018462000e80565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee6601f8362000df1565b915062000ef38262000eae565b602082019050919050565b6000602082019050818103600083015262000f198162000ed7565b9050919050565b62000f2b8162000c93565b82525050565b600060208201905062000f48600083018462000f20565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9657607f821691505b6020821081141562000fad5762000fac62000f4e565b5b50919050565b60805160a051615e566200103b600039600081816114ab01528181611cbb01528181612805015281816128bc015281816128e901528181612f2d015281816141910152818161424a0152614277015260008181610fc401528181612ed5015281816143ed015281816144ce015281816144f50152818161459101526145b80152615e566000f3fe6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063bbc0c74214610c15578063c024666814610c40578063c17b5b8c14610c69578063c18bc19514610c92576103c3565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b47578063a9059cbb14610b72578063aacebbe314610baf578063b62496f514610bd8576103c3565b80639ec22c0e14610a895780639fccce3214610ab4578063a0d82dc514610adf578063a457c2d714610b0a576103c3565b8063924de9b7116101c1578063924de9b7146109e157806395d89b4114610a0a5780639a7a23d614610a355780639c3b4fdc14610a5e576103c3565b80638a8c523c146109495780638da5cb5b146109605780638ea5220f1461098b57806392136913146109b6576103c3565b8063313ce567116102e257806370a08231116102755780637571336a116102445780637571336a146108a157806375f0a874146108ca5780637bce5a04146108f55780638095d56414610920576103c3565b806370a08231146107f9578063715018a614610836578063730c18881461084d578063751039fc14610876576103c3565b80634a62bb65116102b15780634a62bb651461073b5780634fbee193146107665780636a486a8e146107a35780636ddd1713146107ce576103c3565b8063313ce5671461067f57806339509351146106aa57806340c10f19146106e757806349bd5a5e14610710576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea9190614700565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906147bb565b610f85565b6040516104279190614816565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190614831565b610fa3565b6040516104649190614816565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f91906148bd565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba91906148e7565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190614831565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e91906148e7565b60405180910390f35b34801561052357600080fd5b5061052c611132565b60405161053991906148e7565b60405180910390f35b34801561054e57600080fd5b50610557611138565b60405161056491906148e7565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f91906148e7565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614902565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e3919061492f565b611253565b6040516105f59190614816565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b6040516106209190614991565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b91906148e7565b60405180910390f35b34801561066057600080fd5b50610669611357565b6040516106769190614816565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a191906149c8565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc91906147bb565b611373565b6040516106de9190614816565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906147bb565b61141f565b005b34801561071c57600080fd5b506107256114a9565b6040516107329190614991565b60405180910390f35b34801561074757600080fd5b506107506114cd565b60405161075d9190614816565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614831565b6114e0565b60405161079a9190614816565b60405180910390f35b3480156107af57600080fd5b506107b8611536565b6040516107c591906148e7565b60405180910390f35b3480156107da57600080fd5b506107e361153c565b6040516107f09190614816565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190614831565b61154f565b60405161082d91906148e7565b60405180910390f35b34801561084257600080fd5b5061084b611597565b005b34801561085957600080fd5b50610874600480360381019061086f9190614a0f565b61161f565b005b34801561088257600080fd5b5061088b61175f565b6040516108989190614816565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190614a62565b6117ff565b005b3480156108d657600080fd5b506108df6118d6565b6040516108ec9190614991565b60405180910390f35b34801561090157600080fd5b5061090a6118fc565b60405161091791906148e7565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190614aa2565b611902565b005b34801561095557600080fd5b5061095e611a01565b005b34801561096c57600080fd5b50610975611abc565b6040516109829190614991565b60405180910390f35b34801561099757600080fd5b506109a0611ae6565b6040516109ad9190614991565b60405180910390f35b3480156109c257600080fd5b506109cb611b0c565b6040516109d891906148e7565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614af5565b611b12565b005b348015610a1657600080fd5b50610a1f611bab565b604051610a2c9190614700565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190614a62565b611c3d565b005b348015610a6a57600080fd5b50610a73611d56565b604051610a8091906148e7565b60405180910390f35b348015610a9557600080fd5b50610a9e611d5c565b604051610aab91906148e7565b60405180910390f35b348015610ac057600080fd5b50610ac9611d62565b604051610ad691906148e7565b60405180910390f35b348015610aeb57600080fd5b50610af4611d68565b604051610b0191906148e7565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c91906147bb565b611d6e565b604051610b3e9190614816565b60405180910390f35b348015610b5357600080fd5b50610b5c611e59565b604051610b6991906148e7565b60405180910390f35b348015610b7e57600080fd5b50610b996004803603810190610b9491906147bb565b611e5f565b604051610ba69190614816565b60405180910390f35b348015610bbb57600080fd5b50610bd66004803603810190610bd19190614831565b611e7d565b005b348015610be457600080fd5b50610bff6004803603810190610bfa9190614831565b611fb9565b604051610c0c9190614816565b60405180910390f35b348015610c2157600080fd5b50610c2a611fd9565b604051610c379190614816565b60405180910390f35b348015610c4c57600080fd5b50610c676004803603810190610c629190614a62565b611fec565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614aa2565b612111565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb49190614902565b612210565b005b348015610cc757600080fd5b50610cd061231f565b604051610cdd9190614816565b60405180910390f35b348015610cf257600080fd5b50610cfb612332565b604051610d0891906148e7565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d339190614902565b612338565b604051610d459190614816565b60405180910390f35b348015610d5a57600080fd5b50610d6361248d565b604051610d7091906148e7565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614b22565b612493565b604051610dad91906148e7565b60405180910390f35b348015610dc257600080fd5b50610dcb61251a565b604051610dd891906148e7565b60405180910390f35b348015610ded57600080fd5b50610df6612520565b604051610e039190614816565b60405180910390f35b348015610e1857600080fd5b50610e216125c0565b604051610e2e91906148e7565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e599190614831565b6125c6565b005b348015610e6c57600080fd5b50610e756126be565b604051610e8291906148e7565b60405180910390f35b348015610e9757600080fd5b50610ea06126c4565b604051610ead91906148e7565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614902565b6126ca565b604051610eea9190614816565b60405180910390f35b606060038054610f0290614b91565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614b91565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f926129a2565b84846129aa565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ff86129a2565b73ffffffffffffffffffffffffffffffffffffffff16611016611abc565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614c0f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c6129a2565b73ffffffffffffffffffffffffffffffffffffffff1661116a611abc565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614c0f565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614c5e565b6111ea9190614ce7565b6111f49190614ce7565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614d8a565b60405180910390fd5b670de0b6b3a76400008161124a9190614c5e565b60088190555050565b6000611260848484612b75565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab6129a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614e1c565b60405180910390fd5b61133f856113376129a2565b8584036129aa565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006114156113806129a2565b84846001600061138e6129a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614e3c565b6129aa565b6001905092915050565b6114276129a2565b73ffffffffffffffffffffffffffffffffffffffff16611445611abc565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290614c0f565b60405180910390fd5b6114a5828261390d565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61159f6129a2565b73ffffffffffffffffffffffffffffffffffffffff166115bd611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90614c0f565b60405180910390fd5b61161d6000613a6d565b565b6116276129a2565b73ffffffffffffffffffffffffffffffffffffffff16611645611abc565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614c0f565b60405180910390fd5b6102588310156116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790614f04565b60405180910390fd5b6103e882111580156116f3575060008210155b611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990614f96565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117696129a2565b73ffffffffffffffffffffffffffffffffffffffff16611787611abc565b73ffffffffffffffffffffffffffffffffffffffff16146117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614c0f565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6118076129a2565b73ffffffffffffffffffffffffffffffffffffffff16611825611abc565b73ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290614c0f565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61190a6129a2565b73ffffffffffffffffffffffffffffffffffffffff16611928611abc565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590614c0f565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119a69190614e3c565b6119b09190614e3c565b601481905550606460145411156119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f390615002565b60405180910390fd5b505050565b611a096129a2565b73ffffffffffffffffffffffffffffffffffffffff16611a27611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614c0f565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611b1a6129a2565b73ffffffffffffffffffffffffffffffffffffffff16611b38611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614c0f565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611bba90614b91565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690614b91565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b5050505050905090565b611c456129a2565b73ffffffffffffffffffffffffffffffffffffffff16611c63611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090614c0f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90615094565b60405180910390fd5b611d528282613b33565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611d7d6129a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190615126565b60405180910390fd5b611e4e611e456129a2565b858584036129aa565b600191505092915050565b600e5481565b6000611e73611e6c6129a2565b8484612b75565b6001905092915050565b611e856129a2565b73ffffffffffffffffffffffffffffffffffffffff16611ea3611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090614c0f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ff46129a2565b73ffffffffffffffffffffffffffffffffffffffff16612012611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614c0f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121059190614816565b60405180910390a25050565b6121196129a2565b73ffffffffffffffffffffffffffffffffffffffff16612137611abc565b73ffffffffffffffffffffffffffffffffffffffff161461218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614c0f565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121b59190614e3c565b6121bf9190614e3c565b6018819055506064601854111561220b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220290615002565b60405180910390fd5b505050565b6122186129a2565b73ffffffffffffffffffffffffffffffffffffffff16612236611abc565b73ffffffffffffffffffffffffffffffffffffffff161461228c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228390614c0f565b60405180910390fd5b670de0b6b3a76400006103e860056122a2610fe6565b6122ac9190614c5e565b6122b69190614ce7565b6122c09190614ce7565b811015612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906151b8565b60405180910390fd5b670de0b6b3a7640000816123169190614c5e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006123426129a2565b73ffffffffffffffffffffffffffffffffffffffff16612360611abc565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614c0f565b60405180910390fd5b620186a060016123c4610fe6565b6123ce9190614c5e565b6123d89190614ce7565b82101561241a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124119061524a565b60405180910390fd5b6103e86005612427610fe6565b6124319190614c5e565b61243b9190614ce7565b82111561247d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612474906152dc565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061252a6129a2565b73ffffffffffffffffffffffffffffffffffffffff16612548611abc565b73ffffffffffffffffffffffffffffffffffffffff161461259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590614c0f565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125ce6129a2565b73ffffffffffffffffffffffffffffffffffffffff166125ec611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263990614c0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a99061536e565b60405180910390fd5b6126bb81613a6d565b50565b601a5481565b600a5481565b60006126d46129a2565b73ffffffffffffffffffffffffffffffffffffffff166126f2611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90614c0f565b60405180910390fd5b600f546010546127589190614e3c565b4211612799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612790906153da565b60405180910390fd5b6103e88211156127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d59061546c565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016128409190614991565b602060405180830381865afa15801561285d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061288191906154a1565b905060006128ac61271061289e8685613bd490919063ffffffff16565b613bea90919063ffffffff16565b905060008111156128e5576128e47f000000000000000000000000000000000000000000000000000000000000000061dead83613c00565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561295257600080fd5b505af1158015612966573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1190615540565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a81906155d2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b6891906148e7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90615664565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4c906156f6565b60405180910390fd5b6000811415612c6f57612c6a83836000613c00565b613908565b601160009054906101000a900460ff161561333257612c8c611abc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612cfa5750612cca611abc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d335750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d6d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d865750600560149054906101000a900460ff16155b1561333157601160019054906101000a900460ff16612e8057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e405750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7690615762565b60405180910390fd5b5b601360009054906101000a900460ff161561304857612e9d611abc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f2457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130475743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410613002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff99061581a565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130eb5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561319257600854811115613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c906158ac565b60405180910390fd5b600a546131418361154f565b8261314c9190614e3c565b111561318d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318490615918565b60405180910390fd5b613330565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132355750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132845760085481111561327f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613276906159aa565b60405180910390fd5b61332f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661332e57600a546132e18361154f565b826132ec9190614e3c565b111561332d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332490615918565b60405180910390fd5b5b5b5b5b5b600061333d3061154f565b9050600060095482101590508080156133625750601160029054906101000a900460ff165b801561337b5750600560149054906101000a900460ff16155b80156133d15750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134275750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561347d5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134c1576001600560146101000a81548160ff0219169083151502179055506134a5613e81565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135275750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561353f5750600c60009054906101000a900460ff165b801561355a5750600d54600e546135569190614e3c565b4210155b80156135b05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135bf576135bd614168565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136755750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561367f57600090505b600081156138f857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136e257506000601854115b156137af5761370f606461370160185488613bd490919063ffffffff16565b613bea90919063ffffffff16565b9050601854601a54826137229190614c5e565b61372c9190614ce7565b601d600082825461373d9190614e3c565b92505081905550601854601b54826137559190614c5e565b61375f9190614ce7565b601e60008282546137709190614e3c565b92505081905550601854601954826137889190614c5e565b6137929190614ce7565b601c60008282546137a39190614e3c565b925050819055506138d4565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561380a57506000601454115b156138d357613837606461382960145488613bd490919063ffffffff16565b613bea90919063ffffffff16565b90506014546016548261384a9190614c5e565b6138549190614ce7565b601d60008282546138659190614e3c565b925050819055506014546017548261387d9190614c5e565b6138879190614ce7565b601e60008282546138989190614e3c565b92505081905550601454601554826138b09190614c5e565b6138ba9190614ce7565b601c60008282546138cb9190614e3c565b925050819055505b5b60008111156138e9576138e8873083613c00565b5b80856138f591906159ca565b94505b613903878787613c00565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561397d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397490615a4a565b60405180910390fd5b6139896000838361432e565b806002600082825461399b9190614e3c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139f09190614e3c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a5591906148e7565b60405180910390a3613a6960008383614333565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613be29190614c5e565b905092915050565b60008183613bf89190614ce7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6790615664565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cd7906156f6565b60405180910390fd5b613ceb83838361432e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d6890615adc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e049190614e3c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e6891906148e7565b60405180910390a3613e7b848484614333565b50505050565b6000613e8c3061154f565b90506000601e54601c54601d54613ea39190614e3c565b613ead9190614e3c565b9050600080831480613ebf5750600082145b15613ecc57505050614166565b6014600954613edb9190614c5e565b831115613ef4576014600954613ef19190614c5e565b92505b6000600283601d5486613f079190614c5e565b613f119190614ce7565b613f1b9190614ce7565b90506000613f32828661433890919063ffffffff16565b90506000479050613f428261434e565b6000613f57824761433890919063ffffffff16565b90506000613f8287613f74601c5485613bd490919063ffffffff16565b613bea90919063ffffffff16565b90506000613fad88613f9f601e5486613bd490919063ffffffff16565b613bea90919063ffffffff16565b90506000818385613fbe91906159ca565b613fc891906159ca565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161402890615b2d565b60006040518083038185875af1925050503d8060008114614065576040519150601f19603f3d011682016040523d82523d6000602084013e61406a565b606091505b5050809850506000871180156140805750600081115b156140cd5761408f878261458b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516140c493929190615b42565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161411390615b2d565b60006040518083038185875af1925050503d8060008114614150576040519150601f19603f3d011682016040523d82523d6000602084013e614155565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141cc9190614991565b602060405180830381865afa1580156141e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061420d91906154a1565b9050600061423a61271061422c600b5485613bd490919063ffffffff16565b613bea90919063ffffffff16565b90506000811115614273576142727f000000000000000000000000000000000000000000000000000000000000000061dead83613c00565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156142e057600080fd5b505af11580156142f4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361434691906159ca565b905092915050565b6000600267ffffffffffffffff81111561436b5761436a615b79565b5b6040519080825280602002602001820160405280156143995781602001602082028036833780820191505090505b50905030816000815181106143b1576143b0615ba8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061447a9190615bec565b8160018151811061448e5761448d615ba8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144f3307f0000000000000000000000000000000000000000000000000000000000000000846129aa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614555959493929190615d12565b600060405180830381600087803b15801561456f57600080fd5b505af1158015614583573d6000803e3d6000fd5b505050505050565b6145b6307f0000000000000000000000000000000000000000000000000000000000000000846129aa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161461d96959493929190615d6c565b60606040518083038185885af115801561463b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146609190615dcd565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146a1578082015181840152602081019050614686565b838111156146b0576000848401525b50505050565b6000601f19601f8301169050919050565b60006146d282614667565b6146dc8185614672565b93506146ec818560208601614683565b6146f5816146b6565b840191505092915050565b6000602082019050818103600083015261471a81846146c7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061475282614727565b9050919050565b61476281614747565b811461476d57600080fd5b50565b60008135905061477f81614759565b92915050565b6000819050919050565b61479881614785565b81146147a357600080fd5b50565b6000813590506147b58161478f565b92915050565b600080604083850312156147d2576147d1614722565b5b60006147e085828601614770565b92505060206147f1858286016147a6565b9150509250929050565b60008115159050919050565b614810816147fb565b82525050565b600060208201905061482b6000830184614807565b92915050565b60006020828403121561484757614846614722565b5b600061485584828501614770565b91505092915050565b6000819050919050565b600061488361487e61487984614727565b61485e565b614727565b9050919050565b600061489582614868565b9050919050565b60006148a78261488a565b9050919050565b6148b78161489c565b82525050565b60006020820190506148d260008301846148ae565b92915050565b6148e181614785565b82525050565b60006020820190506148fc60008301846148d8565b92915050565b60006020828403121561491857614917614722565b5b6000614926848285016147a6565b91505092915050565b60008060006060848603121561494857614947614722565b5b600061495686828701614770565b935050602061496786828701614770565b9250506040614978868287016147a6565b9150509250925092565b61498b81614747565b82525050565b60006020820190506149a66000830184614982565b92915050565b600060ff82169050919050565b6149c2816149ac565b82525050565b60006020820190506149dd60008301846149b9565b92915050565b6149ec816147fb565b81146149f757600080fd5b50565b600081359050614a09816149e3565b92915050565b600080600060608486031215614a2857614a27614722565b5b6000614a36868287016147a6565b9350506020614a47868287016147a6565b9250506040614a58868287016149fa565b9150509250925092565b60008060408385031215614a7957614a78614722565b5b6000614a8785828601614770565b9250506020614a98858286016149fa565b9150509250929050565b600080600060608486031215614abb57614aba614722565b5b6000614ac9868287016147a6565b9350506020614ada868287016147a6565b9250506040614aeb868287016147a6565b9150509250925092565b600060208284031215614b0b57614b0a614722565b5b6000614b19848285016149fa565b91505092915050565b60008060408385031215614b3957614b38614722565b5b6000614b4785828601614770565b9250506020614b5885828601614770565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614ba957607f821691505b60208210811415614bbd57614bbc614b62565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bf9602083614672565b9150614c0482614bc3565b602082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c6982614785565b9150614c7483614785565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cad57614cac614c2f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cf282614785565b9150614cfd83614785565b925082614d0d57614d0c614cb8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d74602f83614672565b9150614d7f82614d18565b604082019050919050565b60006020820190508181036000830152614da381614d67565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614e06602883614672565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b6000614e4782614785565b9150614e5283614785565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e8757614e86614c2f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614eee603383614672565b9150614ef982614e92565b604082019050919050565b60006020820190508181036000830152614f1d81614ee1565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f80603083614672565b9150614f8b82614f24565b604082019050919050565b60006020820190508181036000830152614faf81614f73565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614fec601d83614672565b9150614ff782614fb6565b602082019050919050565b6000602082019050818103600083015261501b81614fdf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061507e603983614672565b915061508982615022565b604082019050919050565b600060208201905081810360008301526150ad81615071565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000615110602583614672565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006151a2602483614672565b91506151ad82615146565b604082019050919050565b600060208201905081810360008301526151d181615195565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615234603583614672565b915061523f826151d8565b604082019050919050565b6000602082019050818103600083015261526381615227565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006152c6603483614672565b91506152d18261526a565b604082019050919050565b600060208201905081810360008301526152f5816152b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615358602683614672565b9150615363826152fc565b604082019050919050565b600060208201905081810360008301526153878161534b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006153c4602083614672565b91506153cf8261538e565b602082019050919050565b600060208201905081810360008301526153f3816153b7565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615456602a83614672565b9150615461826153fa565b604082019050919050565b6000602082019050818103600083015261548581615449565b9050919050565b60008151905061549b8161478f565b92915050565b6000602082840312156154b7576154b6614722565b5b60006154c58482850161548c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061552a602483614672565b9150615535826154ce565b604082019050919050565b600060208201905081810360008301526155598161551d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155bc602283614672565b91506155c782615560565b604082019050919050565b600060208201905081810360008301526155eb816155af565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061564e602583614672565b9150615659826155f2565b604082019050919050565b6000602082019050818103600083015261567d81615641565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006156e0602383614672565b91506156eb82615684565b604082019050919050565b6000602082019050818103600083015261570f816156d3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061574c601683614672565b915061575782615716565b602082019050919050565b6000602082019050818103600083015261577b8161573f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615804604983614672565b915061580f82615782565b606082019050919050565b60006020820190508181036000830152615833816157f7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615896603583614672565b91506158a18261583a565b604082019050919050565b600060208201905081810360008301526158c581615889565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615902601383614672565b915061590d826158cc565b602082019050919050565b60006020820190508181036000830152615931816158f5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615994603683614672565b915061599f82615938565b604082019050919050565b600060208201905081810360008301526159c381615987565b9050919050565b60006159d582614785565b91506159e083614785565b9250828210156159f3576159f2614c2f565b5b828203905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000615a34601f83614672565b9150615a3f826159fe565b602082019050919050565b60006020820190508181036000830152615a6381615a27565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615ac6602683614672565b9150615ad182615a6a565b604082019050919050565b60006020820190508181036000830152615af581615ab9565b9050919050565b600081905092915050565b50565b6000615b17600083615afc565b9150615b2282615b07565b600082019050919050565b6000615b3882615b0a565b9150819050919050565b6000606082019050615b5760008301866148d8565b615b6460208301856148d8565b615b7160408301846148d8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615be681614759565b92915050565b600060208284031215615c0257615c01614722565b5b6000615c1084828501615bd7565b91505092915050565b6000819050919050565b6000615c3e615c39615c3484615c19565b61485e565b614785565b9050919050565b615c4e81615c23565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c8981614747565b82525050565b6000615c9b8383615c80565b60208301905092915050565b6000602082019050919050565b6000615cbf82615c54565b615cc98185615c5f565b9350615cd483615c70565b8060005b83811015615d05578151615cec8882615c8f565b9750615cf783615ca7565b925050600181019050615cd8565b5085935050505092915050565b600060a082019050615d2760008301886148d8565b615d346020830187615c45565b8181036040830152615d468186615cb4565b9050615d556060830185614982565b615d6260808301846148d8565b9695505050505050565b600060c082019050615d816000830189614982565b615d8e60208301886148d8565b615d9b6040830187615c45565b615da86060830186615c45565b615db56080830185614982565b615dc260a08301846148d8565b979650505050505050565b600080600060608486031215615de657615de5614722565b5b6000615df48682870161548c565b9350506020615e058682870161548c565b9250506040615e168682870161548c565b915050925092509256fea2646970667358221220e59ae32660b268ffd7329491c517c320e6540b933b66cde2be77389c66ac610a64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063bbc0c74214610c15578063c024666814610c40578063c17b5b8c14610c69578063c18bc19514610c92576103c3565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b47578063a9059cbb14610b72578063aacebbe314610baf578063b62496f514610bd8576103c3565b80639ec22c0e14610a895780639fccce3214610ab4578063a0d82dc514610adf578063a457c2d714610b0a576103c3565b8063924de9b7116101c1578063924de9b7146109e157806395d89b4114610a0a5780639a7a23d614610a355780639c3b4fdc14610a5e576103c3565b80638a8c523c146109495780638da5cb5b146109605780638ea5220f1461098b57806392136913146109b6576103c3565b8063313ce567116102e257806370a08231116102755780637571336a116102445780637571336a146108a157806375f0a874146108ca5780637bce5a04146108f55780638095d56414610920576103c3565b806370a08231146107f9578063715018a614610836578063730c18881461084d578063751039fc14610876576103c3565b80634a62bb65116102b15780634a62bb651461073b5780634fbee193146107665780636a486a8e146107a35780636ddd1713146107ce576103c3565b8063313ce5671461067f57806339509351146106aa57806340c10f19146106e757806349bd5a5e14610710576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea9190614700565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906147bb565b610f85565b6040516104279190614816565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190614831565b610fa3565b6040516104649190614816565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f91906148bd565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba91906148e7565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190614831565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e91906148e7565b60405180910390f35b34801561052357600080fd5b5061052c611132565b60405161053991906148e7565b60405180910390f35b34801561054e57600080fd5b50610557611138565b60405161056491906148e7565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f91906148e7565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614902565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e3919061492f565b611253565b6040516105f59190614816565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b6040516106209190614991565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b91906148e7565b60405180910390f35b34801561066057600080fd5b50610669611357565b6040516106769190614816565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a191906149c8565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc91906147bb565b611373565b6040516106de9190614816565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906147bb565b61141f565b005b34801561071c57600080fd5b506107256114a9565b6040516107329190614991565b60405180910390f35b34801561074757600080fd5b506107506114cd565b60405161075d9190614816565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614831565b6114e0565b60405161079a9190614816565b60405180910390f35b3480156107af57600080fd5b506107b8611536565b6040516107c591906148e7565b60405180910390f35b3480156107da57600080fd5b506107e361153c565b6040516107f09190614816565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190614831565b61154f565b60405161082d91906148e7565b60405180910390f35b34801561084257600080fd5b5061084b611597565b005b34801561085957600080fd5b50610874600480360381019061086f9190614a0f565b61161f565b005b34801561088257600080fd5b5061088b61175f565b6040516108989190614816565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190614a62565b6117ff565b005b3480156108d657600080fd5b506108df6118d6565b6040516108ec9190614991565b60405180910390f35b34801561090157600080fd5b5061090a6118fc565b60405161091791906148e7565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190614aa2565b611902565b005b34801561095557600080fd5b5061095e611a01565b005b34801561096c57600080fd5b50610975611abc565b6040516109829190614991565b60405180910390f35b34801561099757600080fd5b506109a0611ae6565b6040516109ad9190614991565b60405180910390f35b3480156109c257600080fd5b506109cb611b0c565b6040516109d891906148e7565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614af5565b611b12565b005b348015610a1657600080fd5b50610a1f611bab565b604051610a2c9190614700565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190614a62565b611c3d565b005b348015610a6a57600080fd5b50610a73611d56565b604051610a8091906148e7565b60405180910390f35b348015610a9557600080fd5b50610a9e611d5c565b604051610aab91906148e7565b60405180910390f35b348015610ac057600080fd5b50610ac9611d62565b604051610ad691906148e7565b60405180910390f35b348015610aeb57600080fd5b50610af4611d68565b604051610b0191906148e7565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c91906147bb565b611d6e565b604051610b3e9190614816565b60405180910390f35b348015610b5357600080fd5b50610b5c611e59565b604051610b6991906148e7565b60405180910390f35b348015610b7e57600080fd5b50610b996004803603810190610b9491906147bb565b611e5f565b604051610ba69190614816565b60405180910390f35b348015610bbb57600080fd5b50610bd66004803603810190610bd19190614831565b611e7d565b005b348015610be457600080fd5b50610bff6004803603810190610bfa9190614831565b611fb9565b604051610c0c9190614816565b60405180910390f35b348015610c2157600080fd5b50610c2a611fd9565b604051610c379190614816565b60405180910390f35b348015610c4c57600080fd5b50610c676004803603810190610c629190614a62565b611fec565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614aa2565b612111565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb49190614902565b612210565b005b348015610cc757600080fd5b50610cd061231f565b604051610cdd9190614816565b60405180910390f35b348015610cf257600080fd5b50610cfb612332565b604051610d0891906148e7565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d339190614902565b612338565b604051610d459190614816565b60405180910390f35b348015610d5a57600080fd5b50610d6361248d565b604051610d7091906148e7565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614b22565b612493565b604051610dad91906148e7565b60405180910390f35b348015610dc257600080fd5b50610dcb61251a565b604051610dd891906148e7565b60405180910390f35b348015610ded57600080fd5b50610df6612520565b604051610e039190614816565b60405180910390f35b348015610e1857600080fd5b50610e216125c0565b604051610e2e91906148e7565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e599190614831565b6125c6565b005b348015610e6c57600080fd5b50610e756126be565b604051610e8291906148e7565b60405180910390f35b348015610e9757600080fd5b50610ea06126c4565b604051610ead91906148e7565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614902565b6126ca565b604051610eea9190614816565b60405180910390f35b606060038054610f0290614b91565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614b91565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f926129a2565b84846129aa565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ff86129a2565b73ffffffffffffffffffffffffffffffffffffffff16611016611abc565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614c0f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c6129a2565b73ffffffffffffffffffffffffffffffffffffffff1661116a611abc565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614c0f565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614c5e565b6111ea9190614ce7565b6111f49190614ce7565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614d8a565b60405180910390fd5b670de0b6b3a76400008161124a9190614c5e565b60088190555050565b6000611260848484612b75565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab6129a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614e1c565b60405180910390fd5b61133f856113376129a2565b8584036129aa565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006114156113806129a2565b84846001600061138e6129a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614e3c565b6129aa565b6001905092915050565b6114276129a2565b73ffffffffffffffffffffffffffffffffffffffff16611445611abc565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290614c0f565b60405180910390fd5b6114a5828261390d565b5050565b7f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61159f6129a2565b73ffffffffffffffffffffffffffffffffffffffff166115bd611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90614c0f565b60405180910390fd5b61161d6000613a6d565b565b6116276129a2565b73ffffffffffffffffffffffffffffffffffffffff16611645611abc565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614c0f565b60405180910390fd5b6102588310156116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790614f04565b60405180910390fd5b6103e882111580156116f3575060008210155b611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990614f96565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117696129a2565b73ffffffffffffffffffffffffffffffffffffffff16611787611abc565b73ffffffffffffffffffffffffffffffffffffffff16146117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614c0f565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6118076129a2565b73ffffffffffffffffffffffffffffffffffffffff16611825611abc565b73ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290614c0f565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61190a6129a2565b73ffffffffffffffffffffffffffffffffffffffff16611928611abc565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590614c0f565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119a69190614e3c565b6119b09190614e3c565b601481905550606460145411156119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f390615002565b60405180910390fd5b505050565b611a096129a2565b73ffffffffffffffffffffffffffffffffffffffff16611a27611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614c0f565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611b1a6129a2565b73ffffffffffffffffffffffffffffffffffffffff16611b38611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614c0f565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611bba90614b91565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690614b91565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b5050505050905090565b611c456129a2565b73ffffffffffffffffffffffffffffffffffffffff16611c63611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090614c0f565b60405180910390fd5b7f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90615094565b60405180910390fd5b611d528282613b33565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611d7d6129a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190615126565b60405180910390fd5b611e4e611e456129a2565b858584036129aa565b600191505092915050565b600e5481565b6000611e73611e6c6129a2565b8484612b75565b6001905092915050565b611e856129a2565b73ffffffffffffffffffffffffffffffffffffffff16611ea3611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090614c0f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ff46129a2565b73ffffffffffffffffffffffffffffffffffffffff16612012611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614c0f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121059190614816565b60405180910390a25050565b6121196129a2565b73ffffffffffffffffffffffffffffffffffffffff16612137611abc565b73ffffffffffffffffffffffffffffffffffffffff161461218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614c0f565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121b59190614e3c565b6121bf9190614e3c565b6018819055506064601854111561220b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220290615002565b60405180910390fd5b505050565b6122186129a2565b73ffffffffffffffffffffffffffffffffffffffff16612236611abc565b73ffffffffffffffffffffffffffffffffffffffff161461228c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228390614c0f565b60405180910390fd5b670de0b6b3a76400006103e860056122a2610fe6565b6122ac9190614c5e565b6122b69190614ce7565b6122c09190614ce7565b811015612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906151b8565b60405180910390fd5b670de0b6b3a7640000816123169190614c5e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006123426129a2565b73ffffffffffffffffffffffffffffffffffffffff16612360611abc565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614c0f565b60405180910390fd5b620186a060016123c4610fe6565b6123ce9190614c5e565b6123d89190614ce7565b82101561241a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124119061524a565b60405180910390fd5b6103e86005612427610fe6565b6124319190614c5e565b61243b9190614ce7565b82111561247d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612474906152dc565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061252a6129a2565b73ffffffffffffffffffffffffffffffffffffffff16612548611abc565b73ffffffffffffffffffffffffffffffffffffffff161461259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590614c0f565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125ce6129a2565b73ffffffffffffffffffffffffffffffffffffffff166125ec611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263990614c0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a99061536e565b60405180910390fd5b6126bb81613a6d565b50565b601a5481565b600a5481565b60006126d46129a2565b73ffffffffffffffffffffffffffffffffffffffff166126f2611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90614c0f565b60405180910390fd5b600f546010546127589190614e3c565b4211612799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612790906153da565b60405180910390fd5b6103e88211156127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d59061546c565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db6040518263ffffffff1660e01b81526004016128409190614991565b602060405180830381865afa15801561285d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061288191906154a1565b905060006128ac61271061289e8685613bd490919063ffffffff16565b613bea90919063ffffffff16565b905060008111156128e5576128e47f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db61dead83613c00565b5b60007f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561295257600080fd5b505af1158015612966573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1190615540565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a81906155d2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b6891906148e7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90615664565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4c906156f6565b60405180910390fd5b6000811415612c6f57612c6a83836000613c00565b613908565b601160009054906101000a900460ff161561333257612c8c611abc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612cfa5750612cca611abc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d335750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d6d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d865750600560149054906101000a900460ff16155b1561333157601160019054906101000a900460ff16612e8057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e405750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7690615762565b60405180910390fd5b5b601360009054906101000a900460ff161561304857612e9d611abc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f2457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7c57507f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130475743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410613002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff99061581a565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130eb5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561319257600854811115613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c906158ac565b60405180910390fd5b600a546131418361154f565b8261314c9190614e3c565b111561318d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318490615918565b60405180910390fd5b613330565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132355750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132845760085481111561327f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613276906159aa565b60405180910390fd5b61332f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661332e57600a546132e18361154f565b826132ec9190614e3c565b111561332d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332490615918565b60405180910390fd5b5b5b5b5b5b600061333d3061154f565b9050600060095482101590508080156133625750601160029054906101000a900460ff165b801561337b5750600560149054906101000a900460ff16155b80156133d15750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134275750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561347d5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134c1576001600560146101000a81548160ff0219169083151502179055506134a5613e81565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135275750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561353f5750600c60009054906101000a900460ff165b801561355a5750600d54600e546135569190614e3c565b4210155b80156135b05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135bf576135bd614168565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136755750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561367f57600090505b600081156138f857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136e257506000601854115b156137af5761370f606461370160185488613bd490919063ffffffff16565b613bea90919063ffffffff16565b9050601854601a54826137229190614c5e565b61372c9190614ce7565b601d600082825461373d9190614e3c565b92505081905550601854601b54826137559190614c5e565b61375f9190614ce7565b601e60008282546137709190614e3c565b92505081905550601854601954826137889190614c5e565b6137929190614ce7565b601c60008282546137a39190614e3c565b925050819055506138d4565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561380a57506000601454115b156138d357613837606461382960145488613bd490919063ffffffff16565b613bea90919063ffffffff16565b90506014546016548261384a9190614c5e565b6138549190614ce7565b601d60008282546138659190614e3c565b925050819055506014546017548261387d9190614c5e565b6138879190614ce7565b601e60008282546138989190614e3c565b92505081905550601454601554826138b09190614c5e565b6138ba9190614ce7565b601c60008282546138cb9190614e3c565b925050819055505b5b60008111156138e9576138e8873083613c00565b5b80856138f591906159ca565b94505b613903878787613c00565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561397d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397490615a4a565b60405180910390fd5b6139896000838361432e565b806002600082825461399b9190614e3c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139f09190614e3c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a5591906148e7565b60405180910390a3613a6960008383614333565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613be29190614c5e565b905092915050565b60008183613bf89190614ce7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6790615664565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cd7906156f6565b60405180910390fd5b613ceb83838361432e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d6890615adc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e049190614e3c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e6891906148e7565b60405180910390a3613e7b848484614333565b50505050565b6000613e8c3061154f565b90506000601e54601c54601d54613ea39190614e3c565b613ead9190614e3c565b9050600080831480613ebf5750600082145b15613ecc57505050614166565b6014600954613edb9190614c5e565b831115613ef4576014600954613ef19190614c5e565b92505b6000600283601d5486613f079190614c5e565b613f119190614ce7565b613f1b9190614ce7565b90506000613f32828661433890919063ffffffff16565b90506000479050613f428261434e565b6000613f57824761433890919063ffffffff16565b90506000613f8287613f74601c5485613bd490919063ffffffff16565b613bea90919063ffffffff16565b90506000613fad88613f9f601e5486613bd490919063ffffffff16565b613bea90919063ffffffff16565b90506000818385613fbe91906159ca565b613fc891906159ca565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161402890615b2d565b60006040518083038185875af1925050503d8060008114614065576040519150601f19603f3d011682016040523d82523d6000602084013e61406a565b606091505b5050809850506000871180156140805750600081115b156140cd5761408f878261458b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516140c493929190615b42565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161411390615b2d565b60006040518083038185875af1925050503d8060008114614150576040519150601f19603f3d011682016040523d82523d6000602084013e614155565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db6040518263ffffffff1660e01b81526004016141cc9190614991565b602060405180830381865afa1580156141e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061420d91906154a1565b9050600061423a61271061422c600b5485613bd490919063ffffffff16565b613bea90919063ffffffff16565b90506000811115614273576142727f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db61dead83613c00565b5b60007f0000000000000000000000006dc7257da38a51e8d232054df1f80fbfd7e635db90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156142e057600080fd5b505af11580156142f4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361434691906159ca565b905092915050565b6000600267ffffffffffffffff81111561436b5761436a615b79565b5b6040519080825280602002602001820160405280156143995781602001602082028036833780820191505090505b50905030816000815181106143b1576143b0615ba8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061447a9190615bec565b8160018151811061448e5761448d615ba8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144f3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129aa565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614555959493929190615d12565b600060405180830381600087803b15801561456f57600080fd5b505af1158015614583573d6000803e3d6000fd5b505050505050565b6145b6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129aa565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161461d96959493929190615d6c565b60606040518083038185885af115801561463b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146609190615dcd565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146a1578082015181840152602081019050614686565b838111156146b0576000848401525b50505050565b6000601f19601f8301169050919050565b60006146d282614667565b6146dc8185614672565b93506146ec818560208601614683565b6146f5816146b6565b840191505092915050565b6000602082019050818103600083015261471a81846146c7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061475282614727565b9050919050565b61476281614747565b811461476d57600080fd5b50565b60008135905061477f81614759565b92915050565b6000819050919050565b61479881614785565b81146147a357600080fd5b50565b6000813590506147b58161478f565b92915050565b600080604083850312156147d2576147d1614722565b5b60006147e085828601614770565b92505060206147f1858286016147a6565b9150509250929050565b60008115159050919050565b614810816147fb565b82525050565b600060208201905061482b6000830184614807565b92915050565b60006020828403121561484757614846614722565b5b600061485584828501614770565b91505092915050565b6000819050919050565b600061488361487e61487984614727565b61485e565b614727565b9050919050565b600061489582614868565b9050919050565b60006148a78261488a565b9050919050565b6148b78161489c565b82525050565b60006020820190506148d260008301846148ae565b92915050565b6148e181614785565b82525050565b60006020820190506148fc60008301846148d8565b92915050565b60006020828403121561491857614917614722565b5b6000614926848285016147a6565b91505092915050565b60008060006060848603121561494857614947614722565b5b600061495686828701614770565b935050602061496786828701614770565b9250506040614978868287016147a6565b9150509250925092565b61498b81614747565b82525050565b60006020820190506149a66000830184614982565b92915050565b600060ff82169050919050565b6149c2816149ac565b82525050565b60006020820190506149dd60008301846149b9565b92915050565b6149ec816147fb565b81146149f757600080fd5b50565b600081359050614a09816149e3565b92915050565b600080600060608486031215614a2857614a27614722565b5b6000614a36868287016147a6565b9350506020614a47868287016147a6565b9250506040614a58868287016149fa565b9150509250925092565b60008060408385031215614a7957614a78614722565b5b6000614a8785828601614770565b9250506020614a98858286016149fa565b9150509250929050565b600080600060608486031215614abb57614aba614722565b5b6000614ac9868287016147a6565b9350506020614ada868287016147a6565b9250506040614aeb868287016147a6565b9150509250925092565b600060208284031215614b0b57614b0a614722565b5b6000614b19848285016149fa565b91505092915050565b60008060408385031215614b3957614b38614722565b5b6000614b4785828601614770565b9250506020614b5885828601614770565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614ba957607f821691505b60208210811415614bbd57614bbc614b62565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bf9602083614672565b9150614c0482614bc3565b602082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c6982614785565b9150614c7483614785565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cad57614cac614c2f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cf282614785565b9150614cfd83614785565b925082614d0d57614d0c614cb8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d74602f83614672565b9150614d7f82614d18565b604082019050919050565b60006020820190508181036000830152614da381614d67565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614e06602883614672565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b6000614e4782614785565b9150614e5283614785565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e8757614e86614c2f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614eee603383614672565b9150614ef982614e92565b604082019050919050565b60006020820190508181036000830152614f1d81614ee1565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f80603083614672565b9150614f8b82614f24565b604082019050919050565b60006020820190508181036000830152614faf81614f73565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614fec601d83614672565b9150614ff782614fb6565b602082019050919050565b6000602082019050818103600083015261501b81614fdf565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061507e603983614672565b915061508982615022565b604082019050919050565b600060208201905081810360008301526150ad81615071565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000615110602583614672565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006151a2602483614672565b91506151ad82615146565b604082019050919050565b600060208201905081810360008301526151d181615195565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615234603583614672565b915061523f826151d8565b604082019050919050565b6000602082019050818103600083015261526381615227565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006152c6603483614672565b91506152d18261526a565b604082019050919050565b600060208201905081810360008301526152f5816152b9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615358602683614672565b9150615363826152fc565b604082019050919050565b600060208201905081810360008301526153878161534b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006153c4602083614672565b91506153cf8261538e565b602082019050919050565b600060208201905081810360008301526153f3816153b7565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615456602a83614672565b9150615461826153fa565b604082019050919050565b6000602082019050818103600083015261548581615449565b9050919050565b60008151905061549b8161478f565b92915050565b6000602082840312156154b7576154b6614722565b5b60006154c58482850161548c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061552a602483614672565b9150615535826154ce565b604082019050919050565b600060208201905081810360008301526155598161551d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155bc602283614672565b91506155c782615560565b604082019050919050565b600060208201905081810360008301526155eb816155af565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061564e602583614672565b9150615659826155f2565b604082019050919050565b6000602082019050818103600083015261567d81615641565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006156e0602383614672565b91506156eb82615684565b604082019050919050565b6000602082019050818103600083015261570f816156d3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061574c601683614672565b915061575782615716565b602082019050919050565b6000602082019050818103600083015261577b8161573f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615804604983614672565b915061580f82615782565b606082019050919050565b60006020820190508181036000830152615833816157f7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615896603583614672565b91506158a18261583a565b604082019050919050565b600060208201905081810360008301526158c581615889565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615902601383614672565b915061590d826158cc565b602082019050919050565b60006020820190508181036000830152615931816158f5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615994603683614672565b915061599f82615938565b604082019050919050565b600060208201905081810360008301526159c381615987565b9050919050565b60006159d582614785565b91506159e083614785565b9250828210156159f3576159f2614c2f565b5b828203905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000615a34601f83614672565b9150615a3f826159fe565b602082019050919050565b60006020820190508181036000830152615a6381615a27565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615ac6602683614672565b9150615ad182615a6a565b604082019050919050565b60006020820190508181036000830152615af581615ab9565b9050919050565b600081905092915050565b50565b6000615b17600083615afc565b9150615b2282615b07565b600082019050919050565b6000615b3882615b0a565b9150819050919050565b6000606082019050615b5760008301866148d8565b615b6460208301856148d8565b615b7160408301846148d8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615be681614759565b92915050565b600060208284031215615c0257615c01614722565b5b6000615c1084828501615bd7565b91505092915050565b6000819050919050565b6000615c3e615c39615c3484615c19565b61485e565b614785565b9050919050565b615c4e81615c23565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c8981614747565b82525050565b6000615c9b8383615c80565b60208301905092915050565b6000602082019050919050565b6000615cbf82615c54565b615cc98185615c5f565b9350615cd483615c70565b8060005b83811015615d05578151615cec8882615c8f565b9750615cf783615ca7565b925050600181019050615cd8565b5085935050505092915050565b600060a082019050615d2760008301886148d8565b615d346020830187615c45565b8181036040830152615d468186615cb4565b9050615d556060830185614982565b615d6260808301846148d8565b9695505050505050565b600060c082019050615d816000830189614982565b615d8e60208301886148d8565b615d9b6040830187615c45565b615da86060830186615c45565b615db56080830185614982565b615dc260a08301846148d8565b979650505050505050565b600080600060608486031215615de657615de5614722565b5b6000615df48682870161548c565b9350506020615e058682870161548c565b9250506040615e168682870161548c565b915050925092509256fea2646970667358221220e59ae32660b268ffd7329491c517c320e6540b933b66cde2be77389c66ac610a64736f6c634300080a0033

Deployed Bytecode Sourcemap

31763:19526:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8591:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10758:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33389:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31838:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9711:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40520:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32403:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32218:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33173:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33133;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37832:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11409:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31941:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32313:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32274:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9553:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12310:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50131:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31896:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32501:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40685:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32988:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32581:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9882:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1826:103;;;;;;;;;;;;;:::i;:::-;;48774:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36940:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38379:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32033:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32881;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38750:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36733:155;;;;;;;;;;;;;:::i;:::-;;1175:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32070:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33023:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38642:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8810:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39773:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32955:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32457:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33213:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33099:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13028:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32365:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10222:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40281:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33610:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32541:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39583:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39162:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38115:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32799:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32103:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37327:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32847:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10460:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32145:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37122:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32918:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2084:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33061:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32185:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50230:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8591:100;8645:13;8678:5;8671:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8591:100;:::o;10758:169::-;10841:4;10858:39;10867:12;:10;:12::i;:::-;10881:7;10890:6;10858:8;:39::i;:::-;10915:4;10908:11;;10758:169;;;;:::o;33389:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31838:51::-;;;:::o;9711:108::-;9772:7;9799:12;;9792:19;;9711:108;:::o;40520:157::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40627:9:::1;;;;;;;;;;;40599:38;;40616:9;40599:38;;;;;;;;;;;;40660:9;40648;;:21;;;;;;;;;;;;;;;;;;40520:157:::0;:::o;32403:47::-;;;;:::o;32218:36::-;;;;:::o;33173:33::-;;;;:::o;33133:::-;;;;:::o;37832:275::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37969:4:::1;37961;37956:1;37940:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37939:26;;;;:::i;:::-;37938:35;;;;:::i;:::-;37928:6;:45;;37906:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38092:6;38082;:17;;;;:::i;:::-;38059:20;:40;;;;37832:275:::0;:::o;11409:492::-;11549:4;11566:36;11576:6;11584:9;11595:6;11566:9;:36::i;:::-;11615:24;11642:11;:19;11654:6;11642:19;;;;;;;;;;;;;;;:33;11662:12;:10;:12::i;:::-;11642:33;;;;;;;;;;;;;;;;11615:60;;11714:6;11694:16;:26;;11686:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11801:57;11810:6;11818:12;:10;:12::i;:::-;11851:6;11832:16;:25;11801:8;:57::i;:::-;11889:4;11882:11;;;11409:492;;;;;:::o;31941:53::-;31987:6;31941:53;:::o;32313:45::-;;;;:::o;32274:32::-;;;;;;;;;;;;;:::o;9553:93::-;9611:5;9636:2;9629:9;;9553:93;:::o;12310:215::-;12398:4;12415:80;12424:12;:10;:12::i;:::-;12438:7;12484:10;12447:11;:25;12459:12;:10;:12::i;:::-;12447:25;;;;;;;;;;;;;;;:34;12473:7;12447:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12415:8;:80::i;:::-;12513:4;12506:11;;12310:215;;;;:::o;50131:89::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50199:17:::1;50205:2;50209:6;50199:5;:17::i;:::-;50131:89:::0;;:::o;31896:38::-;;;:::o;32501:33::-;;;;;;;;;;;;;:::o;40685:126::-;40751:4;40775:19;:28;40795:7;40775:28;;;;;;;;;;;;;;;;;;;;;;;;;40768:35;;40685:126;;;:::o;32988:28::-;;;;:::o;32581:31::-;;;;;;;;;;;;;:::o;9882:127::-;9956:7;9983:9;:18;9993:7;9983:18;;;;;;;;;;;;;;;;9976:25;;9882:127;;;:::o;1826:103::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1891:30:::1;1918:1;1891:18;:30::i;:::-;1826:103::o:0;48774:555::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48976:3:::1;48953:19;:26;;48931:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49103:4;49091:8;:16;;:33;;;;;49123:1;49111:8;:13;;49091:33;49069:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;49229:19;49211:15;:37;;;;49278:8;49259:16;:27;;;;49313:8;49297:13;;:24;;;;;;;;;;;;;;;;;;48774:555:::0;;;:::o;36940:121::-;36992:4;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37026:5:::1;37009:14;;:22;;;;;;;;;;;;;;;;;;37049:4;37042:11;;36940:121:::0;:::o;38379:167::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38534:4:::1;38492:31;:39;38524:6;38492:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38379:167:::0;;:::o;32033:30::-;;;;;;;;;;;;;:::o;32881:::-;;;;:::o;38750:404::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38918:13:::1;38900:15;:31;;;;38960:13;38942:15;:31;;;;38996:7;38984:9;:19;;;;39065:9;;39047:15;;39029;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39014:12;:60;;;;39109:3;39093:12;;:19;;39085:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38750:404:::0;;;:::o;36733:155::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36804:4:::1;36788:13;;:20;;;;;;;;;;;;;;;;;;36833:4;36819:11;;:18;;;;;;;;;;;;;;;;;;36865:15;36848:14;:32;;;;36733:155::o:0;1175:87::-;1221:7;1248:6;;;;;;;;;;;1241:13;;1175:87;:::o;32070:24::-;;;;;;;;;;;;;:::o;33023:31::-;;;;:::o;38642:100::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38727:7:::1;38713:11;;:21;;;;;;;;;;;;;;;;;;38642:100:::0;:::o;8810:104::-;8866:13;8899:7;8892:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8810:104;:::o;39773:304::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39917:13:::1;39909:21;;:4;:21;;;;39887:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40028:41;40057:4;40063:5;40028:28;:41::i;:::-;39773:304:::0;;:::o;32955:24::-;;;;:::o;32457:35::-;;;;:::o;33213:27::-;;;;:::o;33099:25::-;;;;:::o;13028:413::-;13121:4;13138:24;13165:11;:25;13177:12;:10;:12::i;:::-;13165:25;;;;;;;;;;;;;;;:34;13191:7;13165:34;;;;;;;;;;;;;;;;13138:61;;13238:15;13218:16;:35;;13210:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13331:67;13340:12;:10;:12::i;:::-;13354:7;13382:15;13363:16;:34;13331:8;:67::i;:::-;13429:4;13422:11;;;13028:413;;;;:::o;32365:29::-;;;;:::o;10222:175::-;10308:4;10325:42;10335:12;:10;:12::i;:::-;10349:9;10360:6;10325:9;:42::i;:::-;10385:4;10378:11;;10222:175;;;;:::o;40281:231::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40441:15:::1;;;;;;;;;;;40398:59;;40421:18;40398:59;;;;;;;;;;;;40486:18;40468:15;;:36;;;;;;;;;;;;;;;;;;40281:231:::0;:::o;33610:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32541:33::-;;;;;;;;;;;;;:::o;39583:182::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39699:8:::1;39668:19;:28;39688:7;39668:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39739:7;39723:34;;;39748:8;39723:34;;;;;;:::i;:::-;;;;;;;;39583:182:::0;;:::o;39162:413::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39332:13:::1;39313:16;:32;;;;39375:13;39356:16;:32;;;;39412:7;39399:10;:20;;;;39484:10;;39465:16;;39446;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;39430:13;:64;;;;39530:3;39513:13;;:20;;39505:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39162:413:::0;;;:::o;38115:256::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38255:4:::1;38247;38242:1;38226:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38225:26;;;;:::i;:::-;38224:35;;;;:::i;:::-;38214:6;:45;;38192:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38356:6;38346;:17;;;;:::i;:::-;38334:9;:29;;;;38115:256:::0;:::o;32799:39::-;;;;;;;;;;;;;:::o;32103:35::-;;;;:::o;37327:497::-;37435:4;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37514:6:::1;37509:1;37493:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37492:28;;;;:::i;:::-;37479:9;:41;;37457:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37669:4;37664:1;37648:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37647:26;;;;:::i;:::-;37634:9;:39;;37612:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37785:9;37764:18;:30;;;;37812:4;37805:11;;37327:497:::0;;;:::o;32847:27::-;;;;:::o;10460:151::-;10549:7;10576:11;:18;10588:5;10576:18;;;;;;;;;;;;;;;:27;10595:7;10576:27;;;;;;;;;;;;;;;;10569:34;;10460:151;;;;:::o;32145:33::-;;;;:::o;37122:135::-;37182:4;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37222:5:::1;37199:20;;:28;;;;;;;;;;;;;;;;;;37245:4;37238:11;;37122:135:::0;:::o;32918:30::-;;;;:::o;2084:201::-;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2193:1:::1;2173:22;;:8;:22;;;;2165:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2249:28;2268:8;2249:18;:28::i;:::-;2084:201:::0;:::o;33061:31::-;;;;:::o;32185:24::-;;;;:::o;50230:1056::-;50341:4;1406:12;:10;:12::i;:::-;1395:23;;:7;:5;:7::i;:::-;:23;;;1387:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50426:19:::1;;50403:20;;:42;;;;:::i;:::-;50385:15;:60;50363:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;50535:4;50524:7;:15;;50516:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50620:15;50597:20;:38;;;;50690:28;50721:4;:14;;;50736:13;50721:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50690:60;;50800:20;50823:44;50861:5;50823:33;50848:7;50823:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;50800:67;;50987:1;50972:12;:16;50968:110;;;51005:61;51021:13;51044:6;51053:12;51005:15;:61::i;:::-;50968:110;51153:19;51190:13;51153:51;;51215:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51242:14;;;;;;;;;;51274:4;51267:11;;;;;50230:1056:::0;;;:::o;353:98::-;406:7;433:10;426:17;;353:98;:::o;16712:380::-;16865:1;16848:19;;:5;:19;;;;16840:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16946:1;16927:21;;:7;:21;;;;16919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17030:6;17000:11;:18;17012:5;17000:18;;;;;;;;;;;;;;;:27;17019:7;17000:27;;;;;;;;;;;;;;;:36;;;;17068:7;17052:32;;17061:5;17052:32;;;17077:6;17052:32;;;;;;:::i;:::-;;;;;;;;16712:380;;;:::o;40869:5011::-;41017:1;41001:18;;:4;:18;;;;40993:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41094:1;41080:16;;:2;:16;;;;41072:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41163:1;41153:6;:11;41149:93;;;41181:28;41197:4;41203:2;41207:1;41181:15;:28::i;:::-;41224:7;;41149:93;41258:14;;;;;;;;;;;41254:2487;;;41319:7;:5;:7::i;:::-;41311:15;;:4;:15;;;;:49;;;;;41353:7;:5;:7::i;:::-;41347:13;;:2;:13;;;;41311:49;:86;;;;;41395:1;41381:16;;:2;:16;;;;41311:86;:128;;;;;41432:6;41418:21;;:2;:21;;;;41311:128;:158;;;;;41461:8;;;;;;;;;;;41460:9;41311:158;41289:2441;;;41509:13;;;;;;;;;;;41504:223;;41581:19;:25;41601:4;41581:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41610:19;:23;41630:2;41610:23;;;;;;;;;;;;;;;;;;;;;;;;;41581:52;41547:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41504:223;41883:20;;;;;;;;;;;41879:641;;;41964:7;:5;:7::i;:::-;41958:13;;:2;:13;;;;:72;;;;;42014:15;42000:30;;:2;:30;;;;41958:72;:129;;;;;42073:13;42059:28;;:2;:28;;;;41958:129;41928:573;;;42251:12;42176:28;:39;42205:9;42176:39;;;;;;;;;;;;;;;;:87;42138:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42465:12;42423:28;:39;42452:9;42423:39;;;;;;;;;;;;;;;:54;;;;41928:573;41879:641;42594:25;:31;42620:4;42594:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42651:31;:35;42683:2;42651:35;;;;;;;;;;;;;;;;;;;;;;;;;42650:36;42594:92;42568:1147;;;42773:20;;42763:6;:30;;42729:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42981:9;;42964:13;42974:2;42964:9;:13::i;:::-;42955:6;:22;;;;:::i;:::-;:35;;42921:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42568:1147;;;43159:25;:29;43185:2;43159:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43214:31;:37;43246:4;43214:37;;;;;;;;;;;;;;;;;;;;;;;;;43213:38;43159:92;43133:582;;;43338:20;;43328:6;:30;;43294:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43133:582;;;43495:31;:35;43527:2;43495:35;;;;;;;;;;;;;;;;;;;;;;;;;43490:225;;43615:9;;43598:13;43608:2;43598:9;:13::i;:::-;43589:6;:22;;;;:::i;:::-;:35;;43555:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43490:225;43133:582;42568:1147;41289:2441;41254:2487;43753:28;43784:24;43802:4;43784:9;:24::i;:::-;43753:55;;43821:12;43860:18;;43836:20;:42;;43821:57;;43909:7;:35;;;;;43933:11;;;;;;;;;;;43909:35;:61;;;;;43962:8;;;;;;;;;;;43961:9;43909:61;:110;;;;;43988:25;:31;44014:4;43988:31;;;;;;;;;;;;;;;;;;;;;;;;;43987:32;43909:110;:153;;;;;44037:19;:25;44057:4;44037:25;;;;;;;;;;;;;;;;;;;;;;;;;44036:26;43909:153;:194;;;;;44080:19;:23;44100:2;44080:23;;;;;;;;;;;;;;;;;;;;;;;;;44079:24;43909:194;43891:326;;;44141:4;44130:8;;:15;;;;;;;;;;;;;;;;;;44162:10;:8;:10::i;:::-;44200:5;44189:8;;:16;;;;;;;;;;;;;;;;;;43891:326;44248:8;;;;;;;;;;;44247:9;:55;;;;;44273:25;:29;44299:2;44273:29;;;;;;;;;;;;;;;;;;;;;;;;;44247:55;:85;;;;;44319:13;;;;;;;;;;;44247:85;:153;;;;;44385:15;;44368:14;;:32;;;;:::i;:::-;44349:15;:51;;44247:153;:196;;;;;44418:19;:25;44438:4;44418:25;;;;;;;;;;;;;;;;;;;;;;;;;44417:26;44247:196;44229:282;;;44470:29;:27;:29::i;:::-;;44229:282;44523:12;44539:8;;;;;;;;;;;44538:9;44523:24;;44649:19;:25;44669:4;44649:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44678:19;:23;44698:2;44678:23;;;;;;;;;;;;;;;;;;;;;;;;;44649:52;44645:100;;;44728:5;44718:15;;44645:100;44757:12;44862:7;44858:969;;;44914:25;:29;44940:2;44914:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44963:1;44947:13;;:17;44914:50;44910:768;;;44992:34;45022:3;44992:25;45003:13;;44992:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44985:41;;45095:13;;45075:16;;45068:4;:23;;;;:::i;:::-;45067:41;;;;:::i;:::-;45045:18;;:63;;;;;;;:::i;:::-;;;;;;;;45165:13;;45151:10;;45144:4;:17;;;;:::i;:::-;45143:35;;;;:::i;:::-;45127:12;;:51;;;;;;;:::i;:::-;;;;;;;;45247:13;;45227:16;;45220:4;:23;;;;:::i;:::-;45219:41;;;;:::i;:::-;45197:18;;:63;;;;;;;:::i;:::-;;;;;;;;44910:768;;;45322:25;:31;45348:4;45322:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45372:1;45357:12;;:16;45322:51;45318:360;;;45401:33;45430:3;45401:24;45412:12;;45401:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45394:40;;45502:12;;45483:15;;45476:4;:22;;;;:::i;:::-;45475:39;;;;:::i;:::-;45453:18;;:61;;;;;;;:::i;:::-;;;;;;;;45570:12;;45557:9;;45550:4;:16;;;;:::i;:::-;45549:33;;;;:::i;:::-;45533:12;;:49;;;;;;;:::i;:::-;;;;;;;;45650:12;;45631:15;;45624:4;:22;;;;:::i;:::-;45623:39;;;;:::i;:::-;45601:18;;:61;;;;;;;:::i;:::-;;;;;;;;45318:360;44910:768;45705:1;45698:4;:8;45694:91;;;45727:42;45743:4;45757;45764;45727:15;:42::i;:::-;45694:91;45811:4;45801:14;;;;;:::i;:::-;;;44858:969;45839:33;45855:4;45861:2;45865:6;45839:15;:33::i;:::-;40982:4898;;;;40869:5011;;;;:::o;14951:399::-;15054:1;15035:21;;:7;:21;;;;15027:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15105:49;15134:1;15138:7;15147:6;15105:20;:49::i;:::-;15183:6;15167:12;;:22;;;;;;;:::i;:::-;;;;;;;;15222:6;15200:9;:18;15210:7;15200:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15265:7;15244:37;;15261:1;15244:37;;;15274:6;15244:37;;;;;;:::i;:::-;;;;;;;;15294:48;15322:1;15326:7;15335:6;15294:19;:48::i;:::-;14951:399;;:::o;2445:191::-;2519:16;2538:6;;;;;;;;;;;2519:25;;2564:8;2555:6;;:17;;;;;;;;;;;;;;;;;;2619:8;2588:40;;2609:8;2588:40;;;;;;;;;;;;2508:128;2445:191;:::o;40085:188::-;40202:5;40168:25;:31;40194:4;40168:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40259:5;40225:40;;40253:4;40225:40;;;;;;;;;;;;40085:188;;:::o;22165:98::-;22223:7;22254:1;22250;:5;;;;:::i;:::-;22243:12;;22165:98;;;;:::o;22564:::-;22622:7;22653:1;22649;:5;;;;:::i;:::-;22642:12;;22564:98;;;;:::o;13931:733::-;14089:1;14071:20;;:6;:20;;;;14063:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14173:1;14152:23;;:9;:23;;;;14144:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14228:47;14249:6;14257:9;14268:6;14228:20;:47::i;:::-;14288:21;14312:9;:17;14322:6;14312:17;;;;;;;;;;;;;;;;14288:41;;14365:6;14348:13;:23;;14340:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14486:6;14470:13;:22;14450:9;:17;14460:6;14450:17;;;;;;;;;;;;;;;:42;;;;14538:6;14514:9;:20;14524:9;14514:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14579:9;14562:35;;14571:6;14562:35;;;14590:6;14562:35;;;;;;:::i;:::-;;;;;;;;14610:46;14630:6;14638:9;14649:6;14610:19;:46::i;:::-;14052:612;13931:733;;;:::o;47010:1756::-;47049:23;47075:24;47093:4;47075:9;:24::i;:::-;47049:50;;47110:25;47206:12;;47172:18;;47138;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47110:108;;47229:12;47277:1;47258:15;:20;:46;;;;47303:1;47282:17;:22;47258:46;47254:85;;;47321:7;;;;;47254:85;47394:2;47373:18;;:23;;;;:::i;:::-;47355:15;:41;47351:115;;;47452:2;47431:18;;:23;;;;:::i;:::-;47413:41;;47351:115;47527:23;47640:1;47607:17;47572:18;;47554:15;:36;;;;:::i;:::-;47553:71;;;;:::i;:::-;:88;;;;:::i;:::-;47527:114;;47652:26;47681:36;47701:15;47681;:19;;:36;;;;:::i;:::-;47652:65;;47730:25;47758:21;47730:49;;47792:36;47809:18;47792:16;:36::i;:::-;47841:18;47862:44;47888:17;47862:21;:25;;:44;;;;:::i;:::-;47841:65;;47919:23;47945:81;47998:17;47945:34;47960:18;;47945:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;47919:107;;48037:17;48057:51;48090:17;48057:28;48072:12;;48057:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48037:71;;48121:23;48178:9;48160:15;48147:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;48121:66;;48221:1;48200:18;:22;;;;48254:1;48233:18;:22;;;;48281:1;48266:12;:16;;;;48317:9;;;;;;;;;;;48309:23;;48340:9;48309:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48295:59;;;;;48389:1;48371:15;:19;:42;;;;;48412:1;48394:15;:19;48371:42;48367:278;;;48430:46;48443:15;48460;48430:12;:46::i;:::-;48496:137;48529:18;48566:15;48600:18;;48496:137;;;;;;;;:::i;:::-;;;;;;;;48367:278;48679:15;;;;;;;;;;;48671:29;;48722:21;48671:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48657:101;;;;;47038:1728;;;;;;;;;;47010:1756;:::o;49337:788::-;49394:4;49428:15;49411:14;:32;;;;49498:28;49529:4;:14;;;49544:13;49529:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49498:60;;49608:20;49631:77;49692:5;49631:42;49656:16;;49631:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;49608:100;;49828:1;49813:12;:16;49809:110;;;49846:61;49862:13;49885:6;49894:12;49846:15;:61::i;:::-;49809:110;49994:19;50031:13;49994:51;;50056:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50083:12;;;;;;;;;;50113:4;50106:11;;;;;49337:788;:::o;17692:125::-;;;;:::o;18421:124::-;;;;:::o;21808:98::-;21866:7;21897:1;21893;:5;;;;:::i;:::-;21886:12;;21808:98;;;;:::o;45888:589::-;46014:21;46052:1;46038:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46014:40;;46083:4;46065;46070:1;46065:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46109:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46099:4;46104:1;46099:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46144:62;46161:4;46176:15;46194:11;46144:8;:62::i;:::-;46245:15;:66;;;46326:11;46352:1;46396:4;46423;46443:15;46245:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45943:534;45888:589;:::o;46485:517::-;46633:62;46650:4;46665:15;46683:11;46633:8;:62::i;:::-;46738:15;:31;;;46777:9;46810:4;46830:11;46856:1;46899;31987:6;46968:15;46738:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46485: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:179::-;16700:31;16696:1;16688:6;16684:14;16677:55;16560:179;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:244::-;17682:34;17678:1;17670:6;17666:14;17659:58;17751:27;17746:2;17738:6;17734:15;17727:52;17542:244;:::o;17792:366::-;17934:3;17955:67;18019:2;18014:3;17955:67;:::i;:::-;17948:74;;18031:93;18120:3;18031:93;:::i;:::-;18149:2;18144:3;18140:12;18133:19;;17792:366;;;:::o;18164:419::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:224::-;18729:34;18725:1;18717:6;18713:14;18706:58;18798:7;18793:2;18785:6;18781:15;18774:32;18589:224;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:223::-;19756:34;19752:1;19744:6;19740:14;19733:58;19825:6;19820:2;19812:6;19808:15;19801:31;19616:223;:::o;19845:366::-;19987:3;20008:67;20072:2;20067:3;20008:67;:::i;:::-;20001:74;;20084:93;20173:3;20084:93;:::i;:::-;20202:2;20197:3;20193:12;20186:19;;19845:366;;;:::o;20217:419::-;20383:4;20421:2;20410:9;20406:18;20398:26;;20470:9;20464:4;20460:20;20456:1;20445:9;20441:17;20434:47;20498:131;20624:4;20498:131;:::i;:::-;20490:139;;20217:419;;;:::o;20642:240::-;20782:34;20778:1;20770:6;20766:14;20759:58;20851:23;20846:2;20838:6;20834:15;20827:48;20642:240;:::o;20888:366::-;21030:3;21051:67;21115:2;21110:3;21051:67;:::i;:::-;21044:74;;21127:93;21216:3;21127:93;:::i;:::-;21245:2;21240:3;21236:12;21229:19;;20888:366;;;:::o;21260:419::-;21426:4;21464:2;21453:9;21449:18;21441:26;;21513:9;21507:4;21503:20;21499:1;21488:9;21484:17;21477:47;21541:131;21667:4;21541:131;:::i;:::-;21533:139;;21260:419;;;:::o;21685:239::-;21825:34;21821:1;21813:6;21809:14;21802:58;21894:22;21889:2;21881:6;21877:15;21870:47;21685:239;:::o;21930:366::-;22072:3;22093:67;22157:2;22152:3;22093:67;:::i;:::-;22086:74;;22169:93;22258:3;22169:93;:::i;:::-;22287:2;22282:3;22278:12;22271:19;;21930:366;;;:::o;22302:419::-;22468:4;22506:2;22495:9;22491:18;22483:26;;22555:9;22549:4;22545:20;22541:1;22530:9;22526:17;22519:47;22583:131;22709:4;22583:131;:::i;:::-;22575:139;;22302:419;;;:::o;22727:225::-;22867:34;22863:1;22855:6;22851:14;22844:58;22936:8;22931:2;22923:6;22919:15;22912:33;22727:225;:::o;22958:366::-;23100:3;23121:67;23185:2;23180:3;23121:67;:::i;:::-;23114:74;;23197:93;23286:3;23197:93;:::i;:::-;23315:2;23310:3;23306:12;23299:19;;22958:366;;;:::o;23330:419::-;23496:4;23534:2;23523:9;23519:18;23511:26;;23583:9;23577:4;23573:20;23569:1;23558:9;23554:17;23547:47;23611:131;23737:4;23611:131;:::i;:::-;23603:139;;23330:419;;;:::o;23755:182::-;23895:34;23891:1;23883:6;23879:14;23872:58;23755:182;:::o;23943:366::-;24085:3;24106:67;24170:2;24165:3;24106:67;:::i;:::-;24099:74;;24182:93;24271:3;24182:93;:::i;:::-;24300:2;24295:3;24291:12;24284:19;;23943:366;;;:::o;24315:419::-;24481:4;24519:2;24508:9;24504:18;24496:26;;24568:9;24562:4;24558:20;24554:1;24543:9;24539:17;24532:47;24596:131;24722:4;24596:131;:::i;:::-;24588:139;;24315:419;;;:::o;24740:229::-;24880:34;24876:1;24868:6;24864:14;24857:58;24949:12;24944:2;24936:6;24932:15;24925:37;24740:229;:::o;24975:366::-;25117:3;25138:67;25202:2;25197:3;25138:67;:::i;:::-;25131:74;;25214:93;25303:3;25214:93;:::i;:::-;25332:2;25327:3;25323:12;25316:19;;24975:366;;;:::o;25347:419::-;25513:4;25551:2;25540:9;25536:18;25528:26;;25600:9;25594:4;25590:20;25586:1;25575:9;25571:17;25564:47;25628:131;25754:4;25628:131;:::i;:::-;25620:139;;25347:419;;;:::o;25772:143::-;25829:5;25860:6;25854:13;25845:22;;25876:33;25903:5;25876:33;:::i;:::-;25772:143;;;;:::o;25921:351::-;25991:6;26040:2;26028:9;26019:7;26015:23;26011:32;26008:119;;;26046:79;;:::i;:::-;26008:119;26166:1;26191:64;26247:7;26238:6;26227:9;26223:22;26191:64;:::i;:::-;26181:74;;26137:128;25921:351;;;;:::o;26278:223::-;26418:34;26414:1;26406:6;26402:14;26395:58;26487:6;26482:2;26474:6;26470:15;26463:31;26278:223;:::o;26507:366::-;26649:3;26670:67;26734:2;26729:3;26670:67;:::i;:::-;26663:74;;26746:93;26835:3;26746:93;:::i;:::-;26864:2;26859:3;26855:12;26848:19;;26507:366;;;:::o;26879:419::-;27045:4;27083:2;27072:9;27068:18;27060:26;;27132:9;27126:4;27122:20;27118:1;27107:9;27103:17;27096:47;27160:131;27286:4;27160:131;:::i;:::-;27152:139;;26879:419;;;:::o;27304:221::-;27444:34;27440:1;27432:6;27428:14;27421:58;27513:4;27508:2;27500:6;27496:15;27489:29;27304:221;:::o;27531:366::-;27673:3;27694:67;27758:2;27753:3;27694:67;:::i;:::-;27687:74;;27770:93;27859:3;27770:93;:::i;:::-;27888:2;27883:3;27879:12;27872:19;;27531:366;;;:::o;27903:419::-;28069:4;28107:2;28096:9;28092:18;28084:26;;28156:9;28150:4;28146:20;28142:1;28131:9;28127:17;28120:47;28184:131;28310:4;28184:131;:::i;:::-;28176:139;;27903:419;;;:::o;28328:224::-;28468:34;28464:1;28456:6;28452:14;28445:58;28537:7;28532:2;28524:6;28520:15;28513:32;28328:224;:::o;28558:366::-;28700:3;28721:67;28785:2;28780:3;28721:67;:::i;:::-;28714:74;;28797:93;28886:3;28797:93;:::i;:::-;28915:2;28910:3;28906:12;28899:19;;28558:366;;;:::o;28930:419::-;29096:4;29134:2;29123:9;29119:18;29111:26;;29183:9;29177:4;29173:20;29169:1;29158:9;29154:17;29147:47;29211:131;29337:4;29211:131;:::i;:::-;29203:139;;28930:419;;;:::o;29355:222::-;29495:34;29491:1;29483:6;29479:14;29472:58;29564:5;29559:2;29551:6;29547:15;29540:30;29355:222;:::o;29583:366::-;29725:3;29746:67;29810:2;29805:3;29746:67;:::i;:::-;29739:74;;29822:93;29911:3;29822:93;:::i;:::-;29940:2;29935:3;29931:12;29924:19;;29583:366;;;:::o;29955:419::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:172::-;30520:24;30516:1;30508:6;30504:14;30497:48;30380:172;:::o;30558:366::-;30700:3;30721:67;30785:2;30780:3;30721:67;:::i;:::-;30714:74;;30797:93;30886:3;30797:93;:::i;:::-;30915:2;30910:3;30906:12;30899:19;;30558:366;;;:::o;30930:419::-;31096:4;31134:2;31123:9;31119:18;31111:26;;31183:9;31177:4;31173:20;31169:1;31158:9;31154:17;31147:47;31211:131;31337:4;31211:131;:::i;:::-;31203:139;;30930:419;;;:::o;31355:297::-;31495:34;31491:1;31483:6;31479:14;31472:58;31564:34;31559:2;31551:6;31547:15;31540:59;31633:11;31628:2;31620:6;31616:15;31609:36;31355:297;:::o;31658:366::-;31800:3;31821:67;31885:2;31880:3;31821:67;:::i;:::-;31814:74;;31897:93;31986:3;31897:93;:::i;:::-;32015:2;32010:3;32006:12;31999:19;;31658:366;;;:::o;32030:419::-;32196:4;32234:2;32223:9;32219:18;32211:26;;32283:9;32277:4;32273:20;32269:1;32258:9;32254:17;32247:47;32311:131;32437:4;32311:131;:::i;:::-;32303:139;;32030:419;;;:::o;32455:240::-;32595:34;32591:1;32583:6;32579:14;32572:58;32664:23;32659:2;32651:6;32647:15;32640:48;32455:240;:::o;32701:366::-;32843:3;32864:67;32928:2;32923:3;32864:67;:::i;:::-;32857:74;;32940:93;33029:3;32940:93;:::i;:::-;33058:2;33053:3;33049:12;33042:19;;32701:366;;;:::o;33073:419::-;33239:4;33277:2;33266:9;33262:18;33254:26;;33326:9;33320:4;33316:20;33312:1;33301:9;33297:17;33290:47;33354:131;33480:4;33354:131;:::i;:::-;33346:139;;33073:419;;;:::o;33498:169::-;33638:21;33634:1;33626:6;33622:14;33615:45;33498:169;:::o;33673:366::-;33815:3;33836:67;33900:2;33895:3;33836:67;:::i;:::-;33829:74;;33912:93;34001:3;33912:93;:::i;:::-;34030:2;34025:3;34021:12;34014:19;;33673:366;;;:::o;34045:419::-;34211:4;34249:2;34238:9;34234:18;34226:26;;34298:9;34292:4;34288:20;34284:1;34273:9;34269:17;34262:47;34326:131;34452:4;34326:131;:::i;:::-;34318:139;;34045:419;;;:::o;34470:241::-;34610:34;34606:1;34598:6;34594:14;34587:58;34679:24;34674:2;34666:6;34662:15;34655:49;34470:241;:::o;34717:366::-;34859:3;34880:67;34944:2;34939:3;34880:67;:::i;:::-;34873:74;;34956:93;35045:3;34956:93;:::i;:::-;35074:2;35069:3;35065:12;35058:19;;34717:366;;;:::o;35089:419::-;35255:4;35293:2;35282:9;35278:18;35270:26;;35342:9;35336:4;35332:20;35328:1;35317:9;35313:17;35306:47;35370:131;35496:4;35370:131;:::i;:::-;35362:139;;35089:419;;;:::o;35514:191::-;35554:4;35574:20;35592:1;35574:20;:::i;:::-;35569:25;;35608:20;35626:1;35608:20;:::i;:::-;35603:25;;35647:1;35644;35641:8;35638:34;;;35652:18;;:::i;:::-;35638:34;35697:1;35694;35690:9;35682:17;;35514:191;;;;:::o;35711:181::-;35851:33;35847:1;35839:6;35835:14;35828:57;35711:181;:::o;35898:366::-;36040:3;36061:67;36125:2;36120:3;36061:67;:::i;:::-;36054:74;;36137:93;36226:3;36137:93;:::i;:::-;36255:2;36250:3;36246:12;36239:19;;35898:366;;;:::o;36270:419::-;36436:4;36474:2;36463:9;36459:18;36451:26;;36523:9;36517:4;36513:20;36509:1;36498:9;36494:17;36487:47;36551:131;36677:4;36551:131;:::i;:::-;36543:139;;36270:419;;;:::o;36695:225::-;36835:34;36831:1;36823:6;36819:14;36812:58;36904:8;36899:2;36891:6;36887:15;36880:33;36695:225;:::o;36926:366::-;37068:3;37089:67;37153:2;37148:3;37089:67;:::i;:::-;37082:74;;37165:93;37254:3;37165:93;:::i;:::-;37283:2;37278:3;37274:12;37267:19;;36926:366;;;:::o;37298:419::-;37464:4;37502:2;37491:9;37487:18;37479:26;;37551:9;37545:4;37541:20;37537:1;37526:9;37522:17;37515:47;37579:131;37705:4;37579:131;:::i;:::-;37571:139;;37298:419;;;:::o;37723:147::-;37824:11;37861:3;37846:18;;37723:147;;;;:::o;37876:114::-;;:::o;37996:398::-;38155:3;38176:83;38257:1;38252:3;38176:83;:::i;:::-;38169:90;;38268:93;38357:3;38268:93;:::i;:::-;38386:1;38381:3;38377:11;38370:18;;37996:398;;;:::o;38400:379::-;38584:3;38606:147;38749:3;38606:147;:::i;:::-;38599:154;;38770:3;38763:10;;38400:379;;;:::o;38785:442::-;38934:4;38972:2;38961:9;38957:18;38949:26;;38985:71;39053:1;39042:9;39038:17;39029:6;38985:71;:::i;:::-;39066:72;39134:2;39123:9;39119:18;39110:6;39066:72;:::i;:::-;39148;39216:2;39205:9;39201:18;39192:6;39148:72;:::i;:::-;38785:442;;;;;;:::o;39233:180::-;39281:77;39278:1;39271:88;39378:4;39375:1;39368:15;39402:4;39399:1;39392:15;39419:180;39467:77;39464:1;39457:88;39564:4;39561:1;39554:15;39588:4;39585:1;39578:15;39605:143;39662:5;39693:6;39687:13;39678:22;;39709:33;39736:5;39709:33;:::i;:::-;39605:143;;;;:::o;39754:351::-;39824:6;39873:2;39861:9;39852:7;39848:23;39844:32;39841:119;;;39879:79;;:::i;:::-;39841:119;39999:1;40024:64;40080:7;40071:6;40060:9;40056:22;40024:64;:::i;:::-;40014:74;;39970:128;39754:351;;;;:::o;40111:85::-;40156:7;40185:5;40174:16;;40111:85;;;:::o;40202:158::-;40260:9;40293:61;40311:42;40320:32;40346:5;40320:32;:::i;:::-;40311:42;:::i;:::-;40293:61;:::i;:::-;40280:74;;40202:158;;;:::o;40366:147::-;40461:45;40500:5;40461:45;:::i;:::-;40456:3;40449:58;40366:147;;:::o;40519:114::-;40586:6;40620:5;40614:12;40604:22;;40519:114;;;:::o;40639:184::-;40738:11;40772:6;40767:3;40760:19;40812:4;40807:3;40803:14;40788:29;;40639:184;;;;:::o;40829:132::-;40896:4;40919:3;40911:11;;40949:4;40944:3;40940:14;40932:22;;40829:132;;;:::o;40967:108::-;41044:24;41062:5;41044:24;:::i;:::-;41039:3;41032:37;40967:108;;:::o;41081:179::-;41150:10;41171:46;41213:3;41205:6;41171:46;:::i;:::-;41249:4;41244:3;41240:14;41226:28;;41081:179;;;;:::o;41266:113::-;41336:4;41368;41363:3;41359:14;41351:22;;41266:113;;;:::o;41415:732::-;41534:3;41563:54;41611:5;41563:54;:::i;:::-;41633:86;41712:6;41707:3;41633:86;:::i;:::-;41626:93;;41743:56;41793:5;41743:56;:::i;:::-;41822:7;41853:1;41838:284;41863:6;41860:1;41857:13;41838:284;;;41939:6;41933:13;41966:63;42025:3;42010:13;41966:63;:::i;:::-;41959:70;;42052:60;42105:6;42052:60;:::i;:::-;42042:70;;41898:224;41885:1;41882;41878:9;41873:14;;41838:284;;;41842:14;42138:3;42131:10;;41539:608;;;41415:732;;;;:::o;42153:831::-;42416:4;42454:3;42443:9;42439:19;42431:27;;42468:71;42536:1;42525:9;42521:17;42512:6;42468:71;:::i;:::-;42549:80;42625:2;42614:9;42610:18;42601:6;42549:80;:::i;:::-;42676:9;42670:4;42666:20;42661:2;42650:9;42646:18;42639:48;42704:108;42807:4;42798:6;42704:108;:::i;:::-;42696:116;;42822:72;42890:2;42879:9;42875:18;42866:6;42822:72;:::i;:::-;42904:73;42972:3;42961:9;42957:19;42948:6;42904:73;:::i;:::-;42153:831;;;;;;;;:::o;42990:807::-;43239:4;43277:3;43266:9;43262:19;43254:27;;43291:71;43359:1;43348:9;43344:17;43335:6;43291:71;:::i;:::-;43372:72;43440:2;43429:9;43425:18;43416:6;43372:72;:::i;:::-;43454:80;43530:2;43519:9;43515:18;43506:6;43454:80;:::i;:::-;43544;43620:2;43609:9;43605:18;43596:6;43544:80;:::i;:::-;43634:73;43702:3;43691:9;43687:19;43678:6;43634:73;:::i;:::-;43717;43785:3;43774:9;43770:19;43761:6;43717:73;:::i;:::-;42990:807;;;;;;;;;:::o;43803:663::-;43891:6;43899;43907;43956:2;43944:9;43935:7;43931:23;43927:32;43924:119;;;43962:79;;:::i;:::-;43924:119;44082:1;44107:64;44163:7;44154:6;44143:9;44139:22;44107:64;:::i;:::-;44097:74;;44053:128;44220:2;44246:64;44302:7;44293:6;44282:9;44278:22;44246:64;:::i;:::-;44236:74;;44191:129;44359:2;44385:64;44441:7;44432:6;44421:9;44417:22;44385:64;:::i;:::-;44375:74;;44330:129;43803:663;;;;;:::o

Swarm Source

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