ETH Price: $3,263.41 (-0.62%)
Gas: 1 Gwei

Token

No Dev Token (NODEV)
 

Overview

Max Total Supply

1,000,000,000,000 NODEV

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,981,142,573.511650346204724283 NODEV

Value
$0.00
0x88Ccc40938Ec0B395a064bd8989aF0deDD8A4446
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:
NoDevToken

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 2023-01-12
*/

// File: NoDevToken.sol

/*⠀⠀⠀⠀

https://medium.com/@coryli_59068/no-dev-token-b9e975ef0d30

*/



pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/
/* 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 NoDevToken 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 buyReflectionsFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellReflectionsFee;

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("No Dev Token", "NODEV") {
        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 _buyReflectionsFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellReflectionsFee = 0;

        uint256 totalSupply = 1_000_000_000_000 * 1e18;

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

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyReflectionsFee = _buyReflectionsFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyReflectionsFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellReflectionsFee = _sellReflectionsFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellReflectionsFee;

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

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

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

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

    receive() external payable {}

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

    // remove limits after token is stable
    function setMaxTransactionAmount() 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 removeLimits(uint256 newNum) external onlyOwner {
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        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 _ReflectionsFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyReflectionsFee = _ReflectionsFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyReflectionsFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _ReflectionsFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellReflectionsFee = _ReflectionsFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellReflectionsFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% 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 * sellReflectionsFee) / 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 * buyReflectionsFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"buyReflectionsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"sellReflectionsFee","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":"setMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_ReflectionsFee","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":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_ReflectionsFee","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"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600c81526020017f4e6f2044657620546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600581526020017f4e4f44455600000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b07565b5080600490805190602001906200014792919062000b07565b5050506200016a6200015e620005c760201b60201c565b620005cf60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c21565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c21565b6040518363ffffffff1660e01b8152600401620002e992919062000c64565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c21565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069560201b60201c565b6200038c60a05160016200077f60201b60201c565b60008060008060008060006c0c9f2c9cd04674edea4000000090506b409f9cbc7c4a04c2200000006008819055506b60ef6b1aba6f072330000000600a81905550612710600582620003df919062000cca565b620003eb919062000d5a565b6009819055508660158190555085601681905550846017819055506017546016546015546200041b919062000d92565b62000427919062000d92565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000457919062000d92565b62000463919062000d92565b60188190555073d3a06cad967d82efdbc971fe67b3806e9e3bfef4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d3a06cad967d82efdbc971fe67b3806e9e3bfef4600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000535620005276200082060201b60201c565b60016200084a60201b60201c565b620005483060016200084a60201b60201c565b6200055d61dead60016200084a60201b60201c565b6200057f620005716200082060201b60201c565b60016200069560201b60201c565b620005923060016200069560201b60201c565b620005a761dead60016200069560201b60201c565b620005b933826200098460201b60201c565b505050505050505062000fb1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a5620005c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006cb6200082060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000724576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071b9062000e50565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085a620005c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008806200082060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d09062000e50565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000978919062000e8f565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009ee9062000efc565b60405180910390fd5b62000a0b6000838362000afd60201b60201c565b806002600082825462000a1f919062000d92565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a76919062000d92565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000add919062000f2f565b60405180910390a362000af96000838362000b0260201b60201c565b5050565b505050565b505050565b82805462000b159062000f7b565b90600052602060002090601f01602090048101928262000b39576000855562000b85565b82601f1062000b5457805160ff191683800117855562000b85565b8280016001018555821562000b85579182015b8281111562000b8457825182559160200191906001019062000b67565b5b50905062000b94919062000b98565b5090565b5b8082111562000bb357600081600090555060010162000b99565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000be98262000bbc565b9050919050565b62000bfb8162000bdc565b811462000c0757600080fd5b50565b60008151905062000c1b8162000bf0565b92915050565b60006020828403121562000c3a5762000c3962000bb7565b5b600062000c4a8482850162000c0a565b91505092915050565b62000c5e8162000bdc565b82525050565b600060408201905062000c7b600083018562000c53565b62000c8a602083018462000c53565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cd78262000c91565b915062000ce48362000c91565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d205762000d1f62000c9b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d678262000c91565b915062000d748362000c91565b92508262000d875762000d8662000d2b565b5b828204905092915050565b600062000d9f8262000c91565b915062000dac8362000c91565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000de45762000de362000c9b565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3860208362000def565b915062000e458262000e00565b602082019050919050565b6000602082019050818103600083015262000e6b8162000e29565b9050919050565b60008115159050919050565b62000e898162000e72565b82525050565b600060208201905062000ea6600083018462000e7e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee4601f8362000def565b915062000ef18262000eac565b602082019050919050565b6000602082019050818103600083015262000f178162000ed5565b9050919050565b62000f298162000c91565b82525050565b600060208201905062000f46600083018462000f1e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9457607f821691505b6020821081141562000fab5762000faa62000f4c565b5b50919050565b60805160a0516159bc62001039600039600081816112de01528181611a5a015281816125bb015281816126720152818161269f01528181612d8301528181613e8701528181613f400152613f6d015260008181610f9001528181612d2b015281816140e3015281816141c4015281816141eb0152818161428701526142ae01526159bc6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063c17b5b8c1161010d578063e559d86a116100a0578063f63743421161006f578063f637434214610e01578063f8b45b0514610e2c578063fe72b27a14610e57578063ff35b41514610e94576103b8565b8063e559d86a14610d59578063e884f26014610d82578063f11a24d314610dad578063f2fde38b14610dd8576103b8565b8063d257b34f116100dc578063d257b34f14610c89578063d85ba06314610cc6578063dd62ed3e14610cf1578063e2f4560514610d2e576103b8565b8063c17b5b8c14610be1578063c18bc19514610c0a578063c876d0b914610c33578063c8c8ebe414610c5e576103b8565b80639fccce3211610185578063aacebbe311610154578063aacebbe314610b27578063b62496f514610b50578063bbc0c74214610b8d578063c024666814610bb8576103b8565b80639fccce3214610a57578063a457c2d714610a82578063a4c82a0014610abf578063a9059cbb14610aea576103b8565b8063924de9b7116101c1578063924de9b7146109af57806395d89b41146109d85780639a7a23d614610a035780639ec22c0e14610a2c576103b8565b80638da5cb5b1461092e5780638ea5220f146109595780639213691314610984576103b8565b806339509351116102d757806370a082311161026a57806375f0a8741161023957806375f0a874146108985780637bce5a04146108c35780638095d564146108ee5780638a8c523c14610917576103b8565b806370a08231146107f2578063715018a61461082f578063730c1888146108465780637571336a1461086f576103b8565b806359e1ee0d116102a657806359e1ee0d146107465780635dfba900146107715780636a486a8e1461079c5780636ddd1713146107c7576103b8565b8063395093511461067657806349bd5a5e146106b35780634a62bb65146106de5780634fbee19314610709576103b8565b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105ca5780632c3e486c146105f55780632e82f1a014610620578063313ce5671461064b576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f1461056257806323b872dd1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143f6565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906144b1565b610f51565b60405161041c919061450c565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614527565b610f6f565b604051610459919061450c565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b60405161048491906145b3565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906145dd565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614527565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906145dd565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906145dd565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906145dd565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906145dd565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145f8565b611110565b6040516105c1919061450c565b60405180910390f35b3480156105d657600080fd5b506105df611208565b6040516105ec919061465a565b60405180910390f35b34801561060157600080fd5b5061060a61120e565b60405161061791906145dd565b60405180910390f35b34801561062c57600080fd5b50610635611214565b604051610642919061450c565b60405180910390f35b34801561065757600080fd5b50610660611227565b60405161066d9190614691565b60405180910390f35b34801561068257600080fd5b5061069d600480360381019061069891906144b1565b611230565b6040516106aa919061450c565b60405180910390f35b3480156106bf57600080fd5b506106c86112dc565b6040516106d5919061465a565b60405180910390f35b3480156106ea57600080fd5b506106f3611300565b604051610700919061450c565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190614527565b611313565b60405161073d919061450c565b60405180910390f35b34801561075257600080fd5b5061075b611369565b60405161076891906145dd565b60405180910390f35b34801561077d57600080fd5b5061078661136f565b60405161079391906145dd565b60405180910390f35b3480156107a857600080fd5b506107b1611375565b6040516107be91906145dd565b60405180910390f35b3480156107d357600080fd5b506107dc61137b565b6040516107e9919061450c565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190614527565b61138e565b60405161082691906145dd565b60405180910390f35b34801561083b57600080fd5b506108446113d6565b005b34801561085257600080fd5b5061086d600480360381019061086891906146d8565b61145e565b005b34801561087b57600080fd5b506108966004803603810190610891919061472b565b61159e565b005b3480156108a457600080fd5b506108ad611675565b6040516108ba919061465a565b60405180910390f35b3480156108cf57600080fd5b506108d861169b565b6040516108e591906145dd565b60405180910390f35b3480156108fa57600080fd5b506109156004803603810190610910919061476b565b6116a1565b005b34801561092357600080fd5b5061092c6117a0565b005b34801561093a57600080fd5b5061094361185b565b604051610950919061465a565b60405180910390f35b34801561096557600080fd5b5061096e611885565b60405161097b919061465a565b60405180910390f35b34801561099057600080fd5b506109996118ab565b6040516109a691906145dd565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d191906147be565b6118b1565b005b3480156109e457600080fd5b506109ed61194a565b6040516109fa91906143f6565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a25919061472b565b6119dc565b005b348015610a3857600080fd5b50610a41611af5565b604051610a4e91906145dd565b60405180910390f35b348015610a6357600080fd5b50610a6c611afb565b604051610a7991906145dd565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa491906144b1565b611b01565b604051610ab6919061450c565b60405180910390f35b348015610acb57600080fd5b50610ad4611bec565b604051610ae191906145dd565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c91906144b1565b611bf2565b604051610b1e919061450c565b60405180910390f35b348015610b3357600080fd5b50610b4e6004803603810190610b499190614527565b611c10565b005b348015610b5c57600080fd5b50610b776004803603810190610b729190614527565b611d4c565b604051610b84919061450c565b60405180910390f35b348015610b9957600080fd5b50610ba2611d6c565b604051610baf919061450c565b60405180910390f35b348015610bc457600080fd5b50610bdf6004803603810190610bda919061472b565b611d7f565b005b348015610bed57600080fd5b50610c086004803603810190610c03919061476b565b611ea4565b005b348015610c1657600080fd5b50610c316004803603810190610c2c91906147eb565b611fa3565b005b348015610c3f57600080fd5b50610c4861203c565b604051610c55919061450c565b60405180910390f35b348015610c6a57600080fd5b50610c7361204f565b604051610c8091906145dd565b60405180910390f35b348015610c9557600080fd5b50610cb06004803603810190610cab91906147eb565b612055565b604051610cbd919061450c565b60405180910390f35b348015610cd257600080fd5b50610cdb6121aa565b604051610ce891906145dd565b60405180910390f35b348015610cfd57600080fd5b50610d186004803603810190610d139190614818565b6121b0565b604051610d2591906145dd565b60405180910390f35b348015610d3a57600080fd5b50610d43612237565b604051610d5091906145dd565b60405180910390f35b348015610d6557600080fd5b50610d806004803603810190610d7b91906147eb565b61223d565b005b348015610d8e57600080fd5b50610d976122d6565b604051610da4919061450c565b60405180910390f35b348015610db957600080fd5b50610dc2612376565b604051610dcf91906145dd565b60405180910390f35b348015610de457600080fd5b50610dff6004803603810190610dfa9190614527565b61237c565b005b348015610e0d57600080fd5b50610e16612474565b604051610e2391906145dd565b60405180910390f35b348015610e3857600080fd5b50610e4161247a565b604051610e4e91906145dd565b60405180910390f35b348015610e6357600080fd5b50610e7e6004803603810190610e7991906147eb565b612480565b604051610e8b919061450c565b60405180910390f35b348015610ea057600080fd5b50610ea9612758565b604051610eb6919061450c565b60405180910390f35b606060038054610ece90614887565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614887565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6127f8565b8484612800565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46127f8565b73ffffffffffffffffffffffffffffffffffffffff16610fe261185b565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614905565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b600061111d8484846129cb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111686127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90614997565b60405180910390fd5b6111fc856111f46127f8565b858403612800565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112d261123d6127f8565b84846001600061124b6127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112cd91906149e6565b612800565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601b5481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113de6127f8565b73ffffffffffffffffffffffffffffffffffffffff166113fc61185b565b73ffffffffffffffffffffffffffffffffffffffff1614611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990614905565b60405180910390fd5b61145c6000613763565b565b6114666127f8565b73ffffffffffffffffffffffffffffffffffffffff1661148461185b565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190614905565b60405180910390fd5b61025883101561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614aae565b60405180910390fd5b6103e88211158015611532575060008210155b611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890614b40565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6115a66127f8565b73ffffffffffffffffffffffffffffffffffffffff166115c461185b565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190614905565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6116a96127f8565b73ffffffffffffffffffffffffffffffffffffffff166116c761185b565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490614905565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461174591906149e6565b61174f91906149e6565b6014819055506019601454111561179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290614bac565b60405180910390fd5b505050565b6117a86127f8565b73ffffffffffffffffffffffffffffffffffffffff166117c661185b565b73ffffffffffffffffffffffffffffffffffffffff161461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390614905565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6118b96127f8565b73ffffffffffffffffffffffffffffffffffffffff166118d761185b565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490614905565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b60606004805461195990614887565b80601f016020809104026020016040519081016040528092919081815260200182805461198590614887565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b5050505050905090565b6119e46127f8565b73ffffffffffffffffffffffffffffffffffffffff16611a0261185b565b73ffffffffffffffffffffffffffffffffffffffff1614611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90614905565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90614c3e565b60405180910390fd5b611af18282613829565b5050565b60105481565b601e5481565b60008060016000611b106127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490614cd0565b60405180910390fd5b611be1611bd86127f8565b85858403612800565b600191505092915050565b600e5481565b6000611c06611bff6127f8565b84846129cb565b6001905092915050565b611c186127f8565b73ffffffffffffffffffffffffffffffffffffffff16611c3661185b565b73ffffffffffffffffffffffffffffffffffffffff1614611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614905565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d876127f8565b73ffffffffffffffffffffffffffffffffffffffff16611da561185b565b73ffffffffffffffffffffffffffffffffffffffff1614611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290614905565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e98919061450c565b60405180910390a25050565b611eac6127f8565b73ffffffffffffffffffffffffffffffffffffffff16611eca61185b565b73ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790614905565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f4891906149e6565b611f5291906149e6565b60188190555060196018541115611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590614bac565b60405180910390fd5b505050565b611fab6127f8565b73ffffffffffffffffffffffffffffffffffffffff16611fc961185b565b73ffffffffffffffffffffffffffffffffffffffff161461201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690614905565b60405180910390fd5b670de0b6b3a7640000816120339190614cf0565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061205f6127f8565b73ffffffffffffffffffffffffffffffffffffffff1661207d61185b565b73ffffffffffffffffffffffffffffffffffffffff16146120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90614905565b60405180910390fd5b620186a060016120e1610fb2565b6120eb9190614cf0565b6120f59190614d79565b821015612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e90614e1c565b60405180910390fd5b6103e86005612144610fb2565b61214e9190614cf0565b6121589190614d79565b82111561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614eae565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6122456127f8565b73ffffffffffffffffffffffffffffffffffffffff1661226361185b565b73ffffffffffffffffffffffffffffffffffffffff16146122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090614905565b60405180910390fd5b670de0b6b3a7640000816122cd9190614cf0565b60088190555050565b60006122e06127f8565b73ffffffffffffffffffffffffffffffffffffffff166122fe61185b565b73ffffffffffffffffffffffffffffffffffffffff1614612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90614905565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6123846127f8565b73ffffffffffffffffffffffffffffffffffffffff166123a261185b565b73ffffffffffffffffffffffffffffffffffffffff16146123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef90614905565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90614f40565b60405180910390fd5b61247181613763565b50565b601a5481565b600a5481565b600061248a6127f8565b73ffffffffffffffffffffffffffffffffffffffff166124a861185b565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614905565b60405180910390fd5b600f5460105461250e91906149e6565b421161254f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254690614fac565b60405180910390fd5b6103e8821115612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b9061503e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016125f6919061465a565b602060405180830381865afa158015612613573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126379190615073565b9050600061266261271061265486856138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050600081111561269b5761269a7f000000000000000000000000000000000000000000000000000000000000000061dead836138f6565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561270857600080fd5b505af115801561271c573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b60006127626127f8565b73ffffffffffffffffffffffffffffffffffffffff1661278061185b565b73ffffffffffffffffffffffffffffffffffffffff16146127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd90614905565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790615112565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906151a4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129be91906145dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa2906152c8565b60405180910390fd5b6000811415612ac557612ac0838360006138f6565b61375e565b601160009054906101000a900460ff161561318857612ae261185b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b505750612b2061185b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b895750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bdc5750600560149054906101000a900460ff16155b1561318757601160019054906101000a900460ff16612cd657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c965750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90615334565b60405180910390fd5b5b601360009054906101000a900460ff1615612e9e57612cf361185b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d7a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dd257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e9d5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906153ec565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f415750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fe857600854811115612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f829061547e565b60405180910390fd5b600a54612f978361138e565b82612fa291906149e6565b1115612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda906154ea565b60405180910390fd5b613186565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561308b5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130da576008548111156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc9061557c565b60405180910390fd5b613185565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661318457600a546131378361138e565b8261314291906149e6565b1115613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a906154ea565b60405180910390fd5b5b5b5b5b5b60006131933061138e565b9050600060095482101590508080156131b85750601160029054906101000a900460ff165b80156131d15750600560149054906101000a900460ff16155b80156132275750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561327d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132d35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613317576001600560146101000a81548160ff0219169083151502179055506132fb613b77565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561337d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133955750600c60009054906101000a900460ff165b80156133b05750600d54600e546133ac91906149e6565b4210155b80156134065750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561341557613413613e5e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134cb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134d557600090505b6000811561374e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561353857506000601854115b15613605576135656064613557601854886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601854601a54826135789190614cf0565b6135829190614d79565b601d600082825461359391906149e6565b92505081905550601854601b54826135ab9190614cf0565b6135b59190614d79565b601e60008282546135c691906149e6565b92505081905550601854601954826135de9190614cf0565b6135e89190614d79565b601c60008282546135f991906149e6565b9250508190555061372a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561366057506000601454115b156137295761368d606461367f601454886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601454601654826136a09190614cf0565b6136aa9190614d79565b601d60008282546136bb91906149e6565b92505081905550601454601754826136d39190614cf0565b6136dd9190614d79565b601e60008282546136ee91906149e6565b92505081905550601454601554826137069190614cf0565b6137109190614d79565b601c600082825461372191906149e6565b925050819055505b5b600081111561373f5761373e8730836138f6565b5b808561374b919061559c565b94505b6137598787876138f6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138d89190614cf0565b905092915050565b600081836138ee9190614d79565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395d90615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cd906152c8565b60405180910390fd5b6139e1838383614024565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5e90615642565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613afa91906149e6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b5e91906145dd565b60405180910390a3613b71848484614029565b50505050565b6000613b823061138e565b90506000601e54601c54601d54613b9991906149e6565b613ba391906149e6565b9050600080831480613bb55750600082145b15613bc257505050613e5c565b6014600954613bd19190614cf0565b831115613bea576014600954613be79190614cf0565b92505b6000600283601d5486613bfd9190614cf0565b613c079190614d79565b613c119190614d79565b90506000613c28828661402e90919063ffffffff16565b90506000479050613c3882614044565b6000613c4d824761402e90919063ffffffff16565b90506000613c7887613c6a601c54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000613ca388613c95601e54866138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000818385613cb4919061559c565b613cbe919061559c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d1e90615693565b60006040518083038185875af1925050503d8060008114613d5b576040519150601f19603f3d011682016040523d82523d6000602084013e613d60565b606091505b505080985050600087118015613d765750600081115b15613dc357613d858782614281565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613dba939291906156a8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e0990615693565b60006040518083038185875af1925050503d8060008114613e46576040519150601f19603f3d011682016040523d82523d6000602084013e613e4b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613ec2919061465a565b602060405180830381865afa158015613edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f039190615073565b90506000613f30612710613f22600b54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000811115613f6957613f687f000000000000000000000000000000000000000000000000000000000000000061dead836138f6565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613fd657600080fd5b505af1158015613fea573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361403c919061559c565b905092915050565b6000600267ffffffffffffffff811115614061576140606156df565b5b60405190808252806020026020018201604052801561408f5781602001602082028036833780820191505090505b50905030816000815181106140a7576140a661570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561414c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141709190615752565b816001815181106141845761418361570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141e9307f000000000000000000000000000000000000000000000000000000000000000084612800565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161424b959493929190615878565b600060405180830381600087803b15801561426557600080fd5b505af1158015614279573d6000803e3d6000fd5b505050505050565b6142ac307f000000000000000000000000000000000000000000000000000000000000000084612800565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614313969594939291906158d2565b60606040518083038185885af1158015614331573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143569190615933565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561439757808201518184015260208101905061437c565b838111156143a6576000848401525b50505050565b6000601f19601f8301169050919050565b60006143c88261435d565b6143d28185614368565b93506143e2818560208601614379565b6143eb816143ac565b840191505092915050565b6000602082019050818103600083015261441081846143bd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144488261441d565b9050919050565b6144588161443d565b811461446357600080fd5b50565b6000813590506144758161444f565b92915050565b6000819050919050565b61448e8161447b565b811461449957600080fd5b50565b6000813590506144ab81614485565b92915050565b600080604083850312156144c8576144c7614418565b5b60006144d685828601614466565b92505060206144e78582860161449c565b9150509250929050565b60008115159050919050565b614506816144f1565b82525050565b600060208201905061452160008301846144fd565b92915050565b60006020828403121561453d5761453c614418565b5b600061454b84828501614466565b91505092915050565b6000819050919050565b600061457961457461456f8461441d565b614554565b61441d565b9050919050565b600061458b8261455e565b9050919050565b600061459d82614580565b9050919050565b6145ad81614592565b82525050565b60006020820190506145c860008301846145a4565b92915050565b6145d78161447b565b82525050565b60006020820190506145f260008301846145ce565b92915050565b60008060006060848603121561461157614610614418565b5b600061461f86828701614466565b935050602061463086828701614466565b92505060406146418682870161449c565b9150509250925092565b6146548161443d565b82525050565b600060208201905061466f600083018461464b565b92915050565b600060ff82169050919050565b61468b81614675565b82525050565b60006020820190506146a66000830184614682565b92915050565b6146b5816144f1565b81146146c057600080fd5b50565b6000813590506146d2816146ac565b92915050565b6000806000606084860312156146f1576146f0614418565b5b60006146ff8682870161449c565b93505060206147108682870161449c565b9250506040614721868287016146c3565b9150509250925092565b6000806040838503121561474257614741614418565b5b600061475085828601614466565b9250506020614761858286016146c3565b9150509250929050565b60008060006060848603121561478457614783614418565b5b60006147928682870161449c565b93505060206147a38682870161449c565b92505060406147b48682870161449c565b9150509250925092565b6000602082840312156147d4576147d3614418565b5b60006147e2848285016146c3565b91505092915050565b60006020828403121561480157614800614418565b5b600061480f8482850161449c565b91505092915050565b6000806040838503121561482f5761482e614418565b5b600061483d85828601614466565b925050602061484e85828601614466565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489f57607f821691505b602082108114156148b3576148b2614858565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ef602083614368565b91506148fa826148b9565b602082019050919050565b6000602082019050818103600083015261491e816148e2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614981602883614368565b915061498c82614925565b604082019050919050565b600060208201905081810360008301526149b081614974565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149f18261447b565b91506149fc8361447b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a3157614a306149b7565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a98603383614368565b9150614aa382614a3c565b604082019050919050565b60006020820190508181036000830152614ac781614a8b565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b2a603083614368565b9150614b3582614ace565b604082019050919050565b60006020820190508181036000830152614b5981614b1d565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614b96601d83614368565b9150614ba182614b60565b602082019050919050565b60006020820190508181036000830152614bc581614b89565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c28603983614368565b9150614c3382614bcc565b604082019050919050565b60006020820190508181036000830152614c5781614c1b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614cba602583614368565b9150614cc582614c5e565b604082019050919050565b60006020820190508181036000830152614ce981614cad565b9050919050565b6000614cfb8261447b565b9150614d068361447b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d3f57614d3e6149b7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d848261447b565b9150614d8f8361447b565b925082614d9f57614d9e614d4a565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e06603583614368565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614e98603483614368565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f2a602683614368565b9150614f3582614ece565b604082019050919050565b60006020820190508181036000830152614f5981614f1d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614f96602083614368565b9150614fa182614f60565b602082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615028602a83614368565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b60008151905061506d81614485565b92915050565b60006020828403121561508957615088614418565b5b60006150978482850161505e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150fc602483614368565b9150615107826150a0565b604082019050919050565b6000602082019050818103600083015261512b816150ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061518e602283614368565b915061519982615132565b604082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615220602583614368565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152b2602383614368565b91506152bd82615256565b604082019050919050565b600060208201905081810360008301526152e1816152a5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061531e601683614368565b9150615329826152e8565b602082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153d6604983614368565b91506153e182615354565b606082019050919050565b60006020820190508181036000830152615405816153c9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615468603583614368565b91506154738261540c565b604082019050919050565b600060208201905081810360008301526154978161545b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154d4601383614368565b91506154df8261549e565b602082019050919050565b60006020820190508181036000830152615503816154c7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615566603683614368565b91506155718261550a565b604082019050919050565b6000602082019050818103600083015261559581615559565b9050919050565b60006155a78261447b565b91506155b28361447b565b9250828210156155c5576155c46149b7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061562c602683614368565b9150615637826155d0565b604082019050919050565b6000602082019050818103600083015261565b8161561f565b9050919050565b600081905092915050565b50565b600061567d600083615662565b91506156888261566d565b600082019050919050565b600061569e82615670565b9150819050919050565b60006060820190506156bd60008301866145ce565b6156ca60208301856145ce565b6156d760408301846145ce565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061574c8161444f565b92915050565b60006020828403121561576857615767614418565b5b60006157768482850161573d565b91505092915050565b6000819050919050565b60006157a461579f61579a8461577f565b614554565b61447b565b9050919050565b6157b481615789565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ef8161443d565b82525050565b600061580183836157e6565b60208301905092915050565b6000602082019050919050565b6000615825826157ba565b61582f81856157c5565b935061583a836157d6565b8060005b8381101561586b57815161585288826157f5565b975061585d8361580d565b92505060018101905061583e565b5085935050505092915050565b600060a08201905061588d60008301886145ce565b61589a60208301876157ab565b81810360408301526158ac818661581a565b90506158bb606083018561464b565b6158c860808301846145ce565b9695505050505050565b600060c0820190506158e7600083018961464b565b6158f460208301886145ce565b61590160408301876157ab565b61590e60608301866157ab565b61591b608083018561464b565b61592860a08301846145ce565b979650505050505050565b60008060006060848603121561594c5761594b614418565b5b600061595a8682870161505e565b935050602061596b8682870161505e565b925050604061597c8682870161505e565b915050925092509256fea2646970667358221220c51d77cdb3a63f029edd2431e2d72aa4addf90fb9c325cc72252484d2edf1c3364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063c17b5b8c1161010d578063e559d86a116100a0578063f63743421161006f578063f637434214610e01578063f8b45b0514610e2c578063fe72b27a14610e57578063ff35b41514610e94576103b8565b8063e559d86a14610d59578063e884f26014610d82578063f11a24d314610dad578063f2fde38b14610dd8576103b8565b8063d257b34f116100dc578063d257b34f14610c89578063d85ba06314610cc6578063dd62ed3e14610cf1578063e2f4560514610d2e576103b8565b8063c17b5b8c14610be1578063c18bc19514610c0a578063c876d0b914610c33578063c8c8ebe414610c5e576103b8565b80639fccce3211610185578063aacebbe311610154578063aacebbe314610b27578063b62496f514610b50578063bbc0c74214610b8d578063c024666814610bb8576103b8565b80639fccce3214610a57578063a457c2d714610a82578063a4c82a0014610abf578063a9059cbb14610aea576103b8565b8063924de9b7116101c1578063924de9b7146109af57806395d89b41146109d85780639a7a23d614610a035780639ec22c0e14610a2c576103b8565b80638da5cb5b1461092e5780638ea5220f146109595780639213691314610984576103b8565b806339509351116102d757806370a082311161026a57806375f0a8741161023957806375f0a874146108985780637bce5a04146108c35780638095d564146108ee5780638a8c523c14610917576103b8565b806370a08231146107f2578063715018a61461082f578063730c1888146108465780637571336a1461086f576103b8565b806359e1ee0d116102a657806359e1ee0d146107465780635dfba900146107715780636a486a8e1461079c5780636ddd1713146107c7576103b8565b8063395093511461067657806349bd5a5e146106b35780634a62bb65146106de5780634fbee19314610709576103b8565b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105ca5780632c3e486c146105f55780632e82f1a014610620578063313ce5671461064b576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f1461056257806323b872dd1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143f6565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906144b1565b610f51565b60405161041c919061450c565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614527565b610f6f565b604051610459919061450c565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b60405161048491906145b3565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906145dd565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614527565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906145dd565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906145dd565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906145dd565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906145dd565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145f8565b611110565b6040516105c1919061450c565b60405180910390f35b3480156105d657600080fd5b506105df611208565b6040516105ec919061465a565b60405180910390f35b34801561060157600080fd5b5061060a61120e565b60405161061791906145dd565b60405180910390f35b34801561062c57600080fd5b50610635611214565b604051610642919061450c565b60405180910390f35b34801561065757600080fd5b50610660611227565b60405161066d9190614691565b60405180910390f35b34801561068257600080fd5b5061069d600480360381019061069891906144b1565b611230565b6040516106aa919061450c565b60405180910390f35b3480156106bf57600080fd5b506106c86112dc565b6040516106d5919061465a565b60405180910390f35b3480156106ea57600080fd5b506106f3611300565b604051610700919061450c565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190614527565b611313565b60405161073d919061450c565b60405180910390f35b34801561075257600080fd5b5061075b611369565b60405161076891906145dd565b60405180910390f35b34801561077d57600080fd5b5061078661136f565b60405161079391906145dd565b60405180910390f35b3480156107a857600080fd5b506107b1611375565b6040516107be91906145dd565b60405180910390f35b3480156107d357600080fd5b506107dc61137b565b6040516107e9919061450c565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190614527565b61138e565b60405161082691906145dd565b60405180910390f35b34801561083b57600080fd5b506108446113d6565b005b34801561085257600080fd5b5061086d600480360381019061086891906146d8565b61145e565b005b34801561087b57600080fd5b506108966004803603810190610891919061472b565b61159e565b005b3480156108a457600080fd5b506108ad611675565b6040516108ba919061465a565b60405180910390f35b3480156108cf57600080fd5b506108d861169b565b6040516108e591906145dd565b60405180910390f35b3480156108fa57600080fd5b506109156004803603810190610910919061476b565b6116a1565b005b34801561092357600080fd5b5061092c6117a0565b005b34801561093a57600080fd5b5061094361185b565b604051610950919061465a565b60405180910390f35b34801561096557600080fd5b5061096e611885565b60405161097b919061465a565b60405180910390f35b34801561099057600080fd5b506109996118ab565b6040516109a691906145dd565b60405180910390f35b3480156109bb57600080fd5b506109d660048036038101906109d191906147be565b6118b1565b005b3480156109e457600080fd5b506109ed61194a565b6040516109fa91906143f6565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a25919061472b565b6119dc565b005b348015610a3857600080fd5b50610a41611af5565b604051610a4e91906145dd565b60405180910390f35b348015610a6357600080fd5b50610a6c611afb565b604051610a7991906145dd565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa491906144b1565b611b01565b604051610ab6919061450c565b60405180910390f35b348015610acb57600080fd5b50610ad4611bec565b604051610ae191906145dd565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c91906144b1565b611bf2565b604051610b1e919061450c565b60405180910390f35b348015610b3357600080fd5b50610b4e6004803603810190610b499190614527565b611c10565b005b348015610b5c57600080fd5b50610b776004803603810190610b729190614527565b611d4c565b604051610b84919061450c565b60405180910390f35b348015610b9957600080fd5b50610ba2611d6c565b604051610baf919061450c565b60405180910390f35b348015610bc457600080fd5b50610bdf6004803603810190610bda919061472b565b611d7f565b005b348015610bed57600080fd5b50610c086004803603810190610c03919061476b565b611ea4565b005b348015610c1657600080fd5b50610c316004803603810190610c2c91906147eb565b611fa3565b005b348015610c3f57600080fd5b50610c4861203c565b604051610c55919061450c565b60405180910390f35b348015610c6a57600080fd5b50610c7361204f565b604051610c8091906145dd565b60405180910390f35b348015610c9557600080fd5b50610cb06004803603810190610cab91906147eb565b612055565b604051610cbd919061450c565b60405180910390f35b348015610cd257600080fd5b50610cdb6121aa565b604051610ce891906145dd565b60405180910390f35b348015610cfd57600080fd5b50610d186004803603810190610d139190614818565b6121b0565b604051610d2591906145dd565b60405180910390f35b348015610d3a57600080fd5b50610d43612237565b604051610d5091906145dd565b60405180910390f35b348015610d6557600080fd5b50610d806004803603810190610d7b91906147eb565b61223d565b005b348015610d8e57600080fd5b50610d976122d6565b604051610da4919061450c565b60405180910390f35b348015610db957600080fd5b50610dc2612376565b604051610dcf91906145dd565b60405180910390f35b348015610de457600080fd5b50610dff6004803603810190610dfa9190614527565b61237c565b005b348015610e0d57600080fd5b50610e16612474565b604051610e2391906145dd565b60405180910390f35b348015610e3857600080fd5b50610e4161247a565b604051610e4e91906145dd565b60405180910390f35b348015610e6357600080fd5b50610e7e6004803603810190610e7991906147eb565b612480565b604051610e8b919061450c565b60405180910390f35b348015610ea057600080fd5b50610ea9612758565b604051610eb6919061450c565b60405180910390f35b606060038054610ece90614887565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614887565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6127f8565b8484612800565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46127f8565b73ffffffffffffffffffffffffffffffffffffffff16610fe261185b565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614905565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b600061111d8484846129cb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111686127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90614997565b60405180910390fd5b6111fc856111f46127f8565b858403612800565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112d261123d6127f8565b84846001600061124b6127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112cd91906149e6565b612800565b6001905092915050565b7f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601b5481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113de6127f8565b73ffffffffffffffffffffffffffffffffffffffff166113fc61185b565b73ffffffffffffffffffffffffffffffffffffffff1614611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990614905565b60405180910390fd5b61145c6000613763565b565b6114666127f8565b73ffffffffffffffffffffffffffffffffffffffff1661148461185b565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190614905565b60405180910390fd5b61025883101561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690614aae565b60405180910390fd5b6103e88211158015611532575060008210155b611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890614b40565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6115a66127f8565b73ffffffffffffffffffffffffffffffffffffffff166115c461185b565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190614905565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6116a96127f8565b73ffffffffffffffffffffffffffffffffffffffff166116c761185b565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171490614905565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461174591906149e6565b61174f91906149e6565b6014819055506019601454111561179b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179290614bac565b60405180910390fd5b505050565b6117a86127f8565b73ffffffffffffffffffffffffffffffffffffffff166117c661185b565b73ffffffffffffffffffffffffffffffffffffffff161461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390614905565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6118b96127f8565b73ffffffffffffffffffffffffffffffffffffffff166118d761185b565b73ffffffffffffffffffffffffffffffffffffffff161461192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490614905565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b60606004805461195990614887565b80601f016020809104026020016040519081016040528092919081815260200182805461198590614887565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b5050505050905090565b6119e46127f8565b73ffffffffffffffffffffffffffffffffffffffff16611a0261185b565b73ffffffffffffffffffffffffffffffffffffffff1614611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90614905565b60405180910390fd5b7f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90614c3e565b60405180910390fd5b611af18282613829565b5050565b60105481565b601e5481565b60008060016000611b106127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490614cd0565b60405180910390fd5b611be1611bd86127f8565b85858403612800565b600191505092915050565b600e5481565b6000611c06611bff6127f8565b84846129cb565b6001905092915050565b611c186127f8565b73ffffffffffffffffffffffffffffffffffffffff16611c3661185b565b73ffffffffffffffffffffffffffffffffffffffff1614611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614905565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d876127f8565b73ffffffffffffffffffffffffffffffffffffffff16611da561185b565b73ffffffffffffffffffffffffffffffffffffffff1614611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290614905565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e98919061450c565b60405180910390a25050565b611eac6127f8565b73ffffffffffffffffffffffffffffffffffffffff16611eca61185b565b73ffffffffffffffffffffffffffffffffffffffff1614611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790614905565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f4891906149e6565b611f5291906149e6565b60188190555060196018541115611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9590614bac565b60405180910390fd5b505050565b611fab6127f8565b73ffffffffffffffffffffffffffffffffffffffff16611fc961185b565b73ffffffffffffffffffffffffffffffffffffffff161461201f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201690614905565b60405180910390fd5b670de0b6b3a7640000816120339190614cf0565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061205f6127f8565b73ffffffffffffffffffffffffffffffffffffffff1661207d61185b565b73ffffffffffffffffffffffffffffffffffffffff16146120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90614905565b60405180910390fd5b620186a060016120e1610fb2565b6120eb9190614cf0565b6120f59190614d79565b821015612137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212e90614e1c565b60405180910390fd5b6103e86005612144610fb2565b61214e9190614cf0565b6121589190614d79565b82111561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614eae565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6122456127f8565b73ffffffffffffffffffffffffffffffffffffffff1661226361185b565b73ffffffffffffffffffffffffffffffffffffffff16146122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b090614905565b60405180910390fd5b670de0b6b3a7640000816122cd9190614cf0565b60088190555050565b60006122e06127f8565b73ffffffffffffffffffffffffffffffffffffffff166122fe61185b565b73ffffffffffffffffffffffffffffffffffffffff1614612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90614905565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6123846127f8565b73ffffffffffffffffffffffffffffffffffffffff166123a261185b565b73ffffffffffffffffffffffffffffffffffffffff16146123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef90614905565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90614f40565b60405180910390fd5b61247181613763565b50565b601a5481565b600a5481565b600061248a6127f8565b73ffffffffffffffffffffffffffffffffffffffff166124a861185b565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614905565b60405180910390fd5b600f5460105461250e91906149e6565b421161254f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254690614fac565b60405180910390fd5b6103e8821115612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b9061503e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab6040518263ffffffff1660e01b81526004016125f6919061465a565b602060405180830381865afa158015612613573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126379190615073565b9050600061266261271061265486856138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050600081111561269b5761269a7f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab61dead836138f6565b5b60007f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561270857600080fd5b505af115801561271c573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b60006127626127f8565b73ffffffffffffffffffffffffffffffffffffffff1661278061185b565b73ffffffffffffffffffffffffffffffffffffffff16146127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd90614905565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790615112565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906151a4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129be91906145dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa2906152c8565b60405180910390fd5b6000811415612ac557612ac0838360006138f6565b61375e565b601160009054906101000a900460ff161561318857612ae261185b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b505750612b2061185b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b895750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bdc5750600560149054906101000a900460ff16155b1561318757601160019054906101000a900460ff16612cd657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c965750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90615334565b60405180910390fd5b5b601360009054906101000a900460ff1615612e9e57612cf361185b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d7a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dd257507f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e9d5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906153ec565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f415750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fe857600854811115612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f829061547e565b60405180910390fd5b600a54612f978361138e565b82612fa291906149e6565b1115612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda906154ea565b60405180910390fd5b613186565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561308b5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130da576008548111156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc9061557c565b60405180910390fd5b613185565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661318457600a546131378361138e565b8261314291906149e6565b1115613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a906154ea565b60405180910390fd5b5b5b5b5b5b60006131933061138e565b9050600060095482101590508080156131b85750601160029054906101000a900460ff165b80156131d15750600560149054906101000a900460ff16155b80156132275750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561327d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132d35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613317576001600560146101000a81548160ff0219169083151502179055506132fb613b77565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561337d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133955750600c60009054906101000a900460ff165b80156133b05750600d54600e546133ac91906149e6565b4210155b80156134065750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561341557613413613e5e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134cb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134d557600090505b6000811561374e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561353857506000601854115b15613605576135656064613557601854886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601854601a54826135789190614cf0565b6135829190614d79565b601d600082825461359391906149e6565b92505081905550601854601b54826135ab9190614cf0565b6135b59190614d79565b601e60008282546135c691906149e6565b92505081905550601854601954826135de9190614cf0565b6135e89190614d79565b601c60008282546135f991906149e6565b9250508190555061372a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561366057506000601454115b156137295761368d606461367f601454886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601454601654826136a09190614cf0565b6136aa9190614d79565b601d60008282546136bb91906149e6565b92505081905550601454601754826136d39190614cf0565b6136dd9190614d79565b601e60008282546136ee91906149e6565b92505081905550601454601554826137069190614cf0565b6137109190614d79565b601c600082825461372191906149e6565b925050819055505b5b600081111561373f5761373e8730836138f6565b5b808561374b919061559c565b94505b6137598787876138f6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138d89190614cf0565b905092915050565b600081836138ee9190614d79565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395d90615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cd906152c8565b60405180910390fd5b6139e1838383614024565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5e90615642565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613afa91906149e6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b5e91906145dd565b60405180910390a3613b71848484614029565b50505050565b6000613b823061138e565b90506000601e54601c54601d54613b9991906149e6565b613ba391906149e6565b9050600080831480613bb55750600082145b15613bc257505050613e5c565b6014600954613bd19190614cf0565b831115613bea576014600954613be79190614cf0565b92505b6000600283601d5486613bfd9190614cf0565b613c079190614d79565b613c119190614d79565b90506000613c28828661402e90919063ffffffff16565b90506000479050613c3882614044565b6000613c4d824761402e90919063ffffffff16565b90506000613c7887613c6a601c54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000613ca388613c95601e54866138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000818385613cb4919061559c565b613cbe919061559c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d1e90615693565b60006040518083038185875af1925050503d8060008114613d5b576040519150601f19603f3d011682016040523d82523d6000602084013e613d60565b606091505b505080985050600087118015613d765750600081115b15613dc357613d858782614281565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613dba939291906156a8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e0990615693565b60006040518083038185875af1925050503d8060008114613e46576040519150601f19603f3d011682016040523d82523d6000602084013e613e4b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab6040518263ffffffff1660e01b8152600401613ec2919061465a565b602060405180830381865afa158015613edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f039190615073565b90506000613f30612710613f22600b54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000811115613f6957613f687f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab61dead836138f6565b5b60007f0000000000000000000000005a8e933f08fc502789c642db7f6687627b742aab90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613fd657600080fd5b505af1158015613fea573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361403c919061559c565b905092915050565b6000600267ffffffffffffffff811115614061576140606156df565b5b60405190808252806020026020018201604052801561408f5781602001602082028036833780820191505090505b50905030816000815181106140a7576140a661570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561414c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141709190615752565b816001815181106141845761418361570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612800565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161424b959493929190615878565b600060405180830381600087803b15801561426557600080fd5b505af1158015614279573d6000803e3d6000fd5b505050505050565b6142ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612800565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614313969594939291906158d2565b60606040518083038185885af1158015614331573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143569190615933565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561439757808201518184015260208101905061437c565b838111156143a6576000848401525b50505050565b6000601f19601f8301169050919050565b60006143c88261435d565b6143d28185614368565b93506143e2818560208601614379565b6143eb816143ac565b840191505092915050565b6000602082019050818103600083015261441081846143bd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144488261441d565b9050919050565b6144588161443d565b811461446357600080fd5b50565b6000813590506144758161444f565b92915050565b6000819050919050565b61448e8161447b565b811461449957600080fd5b50565b6000813590506144ab81614485565b92915050565b600080604083850312156144c8576144c7614418565b5b60006144d685828601614466565b92505060206144e78582860161449c565b9150509250929050565b60008115159050919050565b614506816144f1565b82525050565b600060208201905061452160008301846144fd565b92915050565b60006020828403121561453d5761453c614418565b5b600061454b84828501614466565b91505092915050565b6000819050919050565b600061457961457461456f8461441d565b614554565b61441d565b9050919050565b600061458b8261455e565b9050919050565b600061459d82614580565b9050919050565b6145ad81614592565b82525050565b60006020820190506145c860008301846145a4565b92915050565b6145d78161447b565b82525050565b60006020820190506145f260008301846145ce565b92915050565b60008060006060848603121561461157614610614418565b5b600061461f86828701614466565b935050602061463086828701614466565b92505060406146418682870161449c565b9150509250925092565b6146548161443d565b82525050565b600060208201905061466f600083018461464b565b92915050565b600060ff82169050919050565b61468b81614675565b82525050565b60006020820190506146a66000830184614682565b92915050565b6146b5816144f1565b81146146c057600080fd5b50565b6000813590506146d2816146ac565b92915050565b6000806000606084860312156146f1576146f0614418565b5b60006146ff8682870161449c565b93505060206147108682870161449c565b9250506040614721868287016146c3565b9150509250925092565b6000806040838503121561474257614741614418565b5b600061475085828601614466565b9250506020614761858286016146c3565b9150509250929050565b60008060006060848603121561478457614783614418565b5b60006147928682870161449c565b93505060206147a38682870161449c565b92505060406147b48682870161449c565b9150509250925092565b6000602082840312156147d4576147d3614418565b5b60006147e2848285016146c3565b91505092915050565b60006020828403121561480157614800614418565b5b600061480f8482850161449c565b91505092915050565b6000806040838503121561482f5761482e614418565b5b600061483d85828601614466565b925050602061484e85828601614466565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489f57607f821691505b602082108114156148b3576148b2614858565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ef602083614368565b91506148fa826148b9565b602082019050919050565b6000602082019050818103600083015261491e816148e2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614981602883614368565b915061498c82614925565b604082019050919050565b600060208201905081810360008301526149b081614974565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149f18261447b565b91506149fc8361447b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a3157614a306149b7565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614a98603383614368565b9150614aa382614a3c565b604082019050919050565b60006020820190508181036000830152614ac781614a8b565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b2a603083614368565b9150614b3582614ace565b604082019050919050565b60006020820190508181036000830152614b5981614b1d565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614b96601d83614368565b9150614ba182614b60565b602082019050919050565b60006020820190508181036000830152614bc581614b89565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c28603983614368565b9150614c3382614bcc565b604082019050919050565b60006020820190508181036000830152614c5781614c1b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614cba602583614368565b9150614cc582614c5e565b604082019050919050565b60006020820190508181036000830152614ce981614cad565b9050919050565b6000614cfb8261447b565b9150614d068361447b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d3f57614d3e6149b7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d848261447b565b9150614d8f8361447b565b925082614d9f57614d9e614d4a565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e06603583614368565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614e98603483614368565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f2a602683614368565b9150614f3582614ece565b604082019050919050565b60006020820190508181036000830152614f5981614f1d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614f96602083614368565b9150614fa182614f60565b602082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615028602a83614368565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b60008151905061506d81614485565b92915050565b60006020828403121561508957615088614418565b5b60006150978482850161505e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150fc602483614368565b9150615107826150a0565b604082019050919050565b6000602082019050818103600083015261512b816150ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061518e602283614368565b915061519982615132565b604082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615220602583614368565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152b2602383614368565b91506152bd82615256565b604082019050919050565b600060208201905081810360008301526152e1816152a5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061531e601683614368565b9150615329826152e8565b602082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153d6604983614368565b91506153e182615354565b606082019050919050565b60006020820190508181036000830152615405816153c9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615468603583614368565b91506154738261540c565b604082019050919050565b600060208201905081810360008301526154978161545b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154d4601383614368565b91506154df8261549e565b602082019050919050565b60006020820190508181036000830152615503816154c7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615566603683614368565b91506155718261550a565b604082019050919050565b6000602082019050818103600083015261559581615559565b9050919050565b60006155a78261447b565b91506155b28361447b565b9250828210156155c5576155c46149b7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061562c602683614368565b9150615637826155d0565b604082019050919050565b6000602082019050818103600083015261565b8161561f565b9050919050565b600081905092915050565b50565b600061567d600083615662565b91506156888261566d565b600082019050919050565b600061569e82615670565b9150819050919050565b60006060820190506156bd60008301866145ce565b6156ca60208301856145ce565b6156d760408301846145ce565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061574c8161444f565b92915050565b60006020828403121561576857615767614418565b5b60006157768482850161573d565b91505092915050565b6000819050919050565b60006157a461579f61579a8461577f565b614554565b61447b565b9050919050565b6157b481615789565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ef8161443d565b82525050565b600061580183836157e6565b60208301905092915050565b6000602082019050919050565b6000615825826157ba565b61582f81856157c5565b935061583a836157d6565b8060005b8381101561586b57815161585288826157f5565b975061585d8361580d565b92505060018101905061583e565b5085935050505092915050565b600060a08201905061588d60008301886145ce565b61589a60208301876157ab565b81810360408301526158ac818661581a565b90506158bb606083018561464b565b6158c860808301846145ce565b9695505050505050565b600060c0820190506158e7600083018961464b565b6158f460208301886145ce565b61590160408301876157ab565b61590e60608301866157ab565b61591b608083018561464b565b61592860a08301846145ce565b979650505050505050565b60008060006060848603121561594c5761594b614418565b5b600061595a8682870161505e565b935050602061596b8682870161505e565b925050604061597c8682870161505e565b915050925092509256fea2646970667358221220c51d77cdb3a63f029edd2431e2d72aa4addf90fb9c325cc72252484d2edf1c3364736f6c634300080a0033

Deployed Bytecode Sourcemap

32824:19336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9639:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11806:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34471:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32904:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10759:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41472:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33469:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33284:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34255:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34215;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12457:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33007:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33379:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33340:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10601:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13358:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32962:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33567:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41637:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34021:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34173:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34062:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33647:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10930:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2874:103;;;;;;;;;;;;;:::i;:::-;;49742:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39269:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33099:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33947;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39640:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37913:155;;;;;;;;;;;;;:::i;:::-;;2223:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33136:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34097:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39532:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9858:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40725:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33523:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34295:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14076:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33431:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11270:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41233:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34692:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33607:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40535:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40083:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39147:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33865:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33169:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38518:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33913:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11508:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33211:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39023:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38313:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33984:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3132:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34135:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33251:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51101:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38120:132;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9639:100;9693:13;9726:5;9719:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9639:100;:::o;11806:169::-;11889:4;11906:39;11915:12;:10;:12::i;:::-;11929:7;11938:6;11906:8;:39::i;:::-;11963:4;11956:11;;11806:169;;;;:::o;34471:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32904:51::-;;;:::o;10759:108::-;10820:7;10847:12;;10840:19;;10759:108;:::o;41472:157::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41579:9:::1;;;;;;;;;;;41551:38;;41568:9;41551:38;;;;;;;;;;;;41612:9;41600;;:21;;;;;;;;;;;;;;;;;;41472:157:::0;:::o;33469:47::-;;;;:::o;33284:36::-;;;;:::o;34255:33::-;;;;:::o;34215:::-;;;;:::o;12457:492::-;12597:4;12614:36;12624:6;12632:9;12643:6;12614:9;:36::i;:::-;12663:24;12690:11;:19;12702:6;12690:19;;;;;;;;;;;;;;;:33;12710:12;:10;:12::i;:::-;12690:33;;;;;;;;;;;;;;;;12663:60;;12762:6;12742:16;:26;;12734:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12849:57;12858:6;12866:12;:10;:12::i;:::-;12899:6;12880:16;:25;12849:8;:57::i;:::-;12937:4;12930:11;;;12457:492;;;;;:::o;33007:53::-;33053:6;33007:53;:::o;33379:45::-;;;;:::o;33340:32::-;;;;;;;;;;;;;:::o;10601:93::-;10659:5;10684:2;10677:9;;10601:93;:::o;13358:215::-;13446:4;13463:80;13472:12;:10;:12::i;:::-;13486:7;13532:10;13495:11;:25;13507:12;:10;:12::i;:::-;13495:25;;;;;;;;;;;;;;;:34;13521:7;13495:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13463:8;:80::i;:::-;13561:4;13554:11;;13358:215;;;;:::o;32962:38::-;;;:::o;33567:33::-;;;;;;;;;;;;;:::o;41637:126::-;41703:4;41727:19;:28;41747:7;41727:28;;;;;;;;;;;;;;;;;;;;;;;;;41720:35;;41637:126;;;:::o;34021:32::-;;;;:::o;34173:33::-;;;;:::o;34062:28::-;;;;:::o;33647:31::-;;;;;;;;;;;;;:::o;10930:127::-;11004:7;11031:9;:18;11041:7;11031:18;;;;;;;;;;;;;;;;11024:25;;10930:127;;;:::o;2874:103::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2939:30:::1;2966:1;2939:18;:30::i;:::-;2874:103::o:0;49742:555::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49944:3:::1;49921:19;:26;;49899:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50071:4;50059:8;:16;;:33;;;;;50091:1;50079:8;:13;;50059:33;50037:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50197:19;50179:15;:37;;;;50246:8;50227:16;:27;;;;50281:8;50265:13;;:24;;;;;;;;;;;;;;;;;;49742:555:::0;;;:::o;39269:167::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39424:4:::1;39382:31;:39;39414:6;39382:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39269:167:::0;;:::o;33099:30::-;;;;;;;;;;;;;:::o;33947:::-;;;;:::o;39640:435::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39816:13:::1;39798:15;:31;;;;39858:13;39840:15;:31;;;;39902:15;39882:17;:35;;;;39979:17;;39961:15;;39943;;:33;;;;:::i;:::-;:53;;;;:::i;:::-;39928:12;:68;;;;40031:2;40015:12;;:18;;40007:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39640:435:::0;;;:::o;37913:155::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37984:4:::1;37968:13;;:20;;;;;;;;;;;;;;;;;;38013:4;37999:11;;:18;;;;;;;;;;;;;;;;;;38045:15;38028:14;:32;;;;37913:155::o:0;2223:87::-;2269:7;2296:6;;;;;;;;;;;2289:13;;2223:87;:::o;33136:24::-;;;;;;;;;;;;;:::o;34097:31::-;;;;:::o;39532:100::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39617:7:::1;39603:11;;:21;;;;;;;;;;;;;;;;;;39532:100:::0;:::o;9858:104::-;9914:13;9947:7;9940:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9858:104;:::o;40725:304::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40869:13:::1;40861:21;;:4;:21;;;;40839:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40980:41;41009:4;41015:5;40980:28;:41::i;:::-;40725:304:::0;;:::o;33523:35::-;;;;:::o;34295:27::-;;;;:::o;14076:413::-;14169:4;14186:24;14213:11;:25;14225:12;:10;:12::i;:::-;14213:25;;;;;;;;;;;;;;;:34;14239:7;14213:34;;;;;;;;;;;;;;;;14186:61;;14286:15;14266:16;:35;;14258:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14379:67;14388:12;:10;:12::i;:::-;14402:7;14430:15;14411:16;:34;14379:8;:67::i;:::-;14477:4;14470:11;;;14076:413;;;;:::o;33431:29::-;;;;:::o;11270:175::-;11356:4;11373:42;11383:12;:10;:12::i;:::-;11397:9;11408:6;11373:9;:42::i;:::-;11433:4;11426:11;;11270:175;;;;:::o;41233:231::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41393:15:::1;;;;;;;;;;;41350:59;;41373:18;41350:59;;;;;;;;;;;;41438:18;41420:15;;:36;;;;;;;;;;;;;;;;;;41233:231:::0;:::o;34692:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33607:33::-;;;;;;;;;;;;;:::o;40535:182::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40651:8:::1;40620:19;:28;40640:7;40620:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40691:7;40675:34;;;40700:8;40675:34;;;;;;:::i;:::-;;;;;;;;40535:182:::0;;:::o;40083:444::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40261:13:::1;40242:16;:32;;;;40304:13;40285:16;:32;;;;40349:15;40328:18;:36;;;;40429:18;;40410:16;;40391;;:35;;;;:::i;:::-;:56;;;;:::i;:::-;40375:13;:72;;;;40483:2;40466:13;;:19;;40458:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40083:444:::0;;;:::o;39147:114::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39246:6:::1;39236;:17;;;;:::i;:::-;39224:9;:29;;;;39147:114:::0;:::o;33865:39::-;;;;;;;;;;;;;:::o;33169:35::-;;;;:::o;38518:497::-;38626:4;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38705:6:::1;38700:1;38684:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38683:28;;;;:::i;:::-;38670:9;:41;;38648:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38860:4;38855:1;38839:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38838:26;;;;:::i;:::-;38825:9;:39;;38803:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38976:9;38955:18;:30;;;;39003:4;38996:11;;38518:497:::0;;;:::o;33913:27::-;;;;:::o;11508:151::-;11597:7;11624:11;:18;11636:5;11624:18;;;;;;;;;;;;;;;:27;11643:7;11624:27;;;;;;;;;;;;;;;;11617:34;;11508:151;;;;:::o;33211:33::-;;;;:::o;39023:116::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39124:6:::1;39114;:17;;;;:::i;:::-;39091:20;:40;;;;39023:116:::0;:::o;38313:135::-;38373:4;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38413:5:::1;38390:20;;:28;;;;;;;;;;;;;;;;;;38436:4;38429:11;;38313:135:::0;:::o;33984:30::-;;;;:::o;3132:201::-;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3241:1:::1;3221:22;;:8;:22;;;;3213:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3297:28;3316:8;3297:18;:28::i;:::-;3132:201:::0;:::o;34135:31::-;;;;:::o;33251:24::-;;;;:::o;51101:1056::-;51212:4;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51297:19:::1;;51274:20;;:42;;;;:::i;:::-;51256:15;:60;51234:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51406:4;51395:7;:15;;51387:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51491:15;51468:20;:38;;;;51561:28;51592:4;:14;;;51607:13;51592:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51561:60;;51671:20;51694:44;51732:5;51694:33;51719:7;51694:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51671:67;;51858:1;51843:12;:16;51839:110;;;51876:61;51892:13;51915:6;51924:12;51876:15;:61::i;:::-;51839:110;52024:19;52061:13;52024:51;;52086:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52113:14;;;;;;;;;;52145:4;52138:11;;;;;51101:1056:::0;;;:::o;38120:132::-;38183:4;2454:12;:10;:12::i;:::-;2443:23;;:7;:5;:7::i;:::-;:23;;;2435:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38217:5:::1;38200:14;;:22;;;;;;;;;;;;;;;;;;38240:4;38233:11;;38120:132:::0;:::o;896:98::-;949:7;976:10;969:17;;896:98;:::o;17760:380::-;17913:1;17896:19;;:5;:19;;;;17888:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17994:1;17975:21;;:7;:21;;;;17967:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18078:6;18048:11;:18;18060:5;18048:18;;;;;;;;;;;;;;;:27;18067:7;18048:27;;;;;;;;;;;;;;;:36;;;;18116:7;18100:32;;18109:5;18100:32;;;18125:6;18100:32;;;;;;:::i;:::-;;;;;;;;17760:380;;;:::o;41821:5027::-;41969:1;41953:18;;:4;:18;;;;41945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42046:1;42032:16;;:2;:16;;;;42024:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42115:1;42105:6;:11;42101:93;;;42133:28;42149:4;42155:2;42159:1;42133:15;:28::i;:::-;42176:7;;42101:93;42210:14;;;;;;;;;;;42206:2487;;;42271:7;:5;:7::i;:::-;42263:15;;:4;:15;;;;:49;;;;;42305:7;:5;:7::i;:::-;42299:13;;:2;:13;;;;42263:49;:86;;;;;42347:1;42333:16;;:2;:16;;;;42263:86;:128;;;;;42384:6;42370:21;;:2;:21;;;;42263:128;:158;;;;;42413:8;;;;;;;;;;;42412:9;42263:158;42241:2441;;;42461:13;;;;;;;;;;;42456:223;;42533:19;:25;42553:4;42533:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42562:19;:23;42582:2;42562:23;;;;;;;;;;;;;;;;;;;;;;;;;42533:52;42499:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42456:223;42835:20;;;;;;;;;;;42831:641;;;42916:7;:5;:7::i;:::-;42910:13;;:2;:13;;;;:72;;;;;42966:15;42952:30;;:2;:30;;;;42910:72;:129;;;;;43025:13;43011:28;;:2;:28;;;;42910:129;42880:573;;;43203:12;43128:28;:39;43157:9;43128:39;;;;;;;;;;;;;;;;:87;43090:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43417:12;43375:28;:39;43404:9;43375:39;;;;;;;;;;;;;;;:54;;;;42880:573;42831:641;43546:25;:31;43572:4;43546:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43603:31;:35;43635:2;43603:35;;;;;;;;;;;;;;;;;;;;;;;;;43602:36;43546:92;43520:1147;;;43725:20;;43715:6;:30;;43681:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43933:9;;43916:13;43926:2;43916:9;:13::i;:::-;43907:6;:22;;;;:::i;:::-;:35;;43873:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43520:1147;;;44111:25;:29;44137:2;44111:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44166:31;:37;44198:4;44166:37;;;;;;;;;;;;;;;;;;;;;;;;;44165:38;44111:92;44085:582;;;44290:20;;44280:6;:30;;44246:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44085:582;;;44447:31;:35;44479:2;44447:35;;;;;;;;;;;;;;;;;;;;;;;;;44442:225;;44567:9;;44550:13;44560:2;44550:9;:13::i;:::-;44541:6;:22;;;;:::i;:::-;:35;;44507:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44442:225;44085:582;43520:1147;42241:2441;42206:2487;44705:28;44736:24;44754:4;44736:9;:24::i;:::-;44705:55;;44773:12;44812:18;;44788:20;:42;;44773:57;;44861:7;:35;;;;;44885:11;;;;;;;;;;;44861:35;:61;;;;;44914:8;;;;;;;;;;;44913:9;44861:61;:110;;;;;44940:25;:31;44966:4;44940:31;;;;;;;;;;;;;;;;;;;;;;;;;44939:32;44861:110;:153;;;;;44989:19;:25;45009:4;44989:25;;;;;;;;;;;;;;;;;;;;;;;;;44988:26;44861:153;:194;;;;;45032:19;:23;45052:2;45032:23;;;;;;;;;;;;;;;;;;;;;;;;;45031:24;44861:194;44843:326;;;45093:4;45082:8;;:15;;;;;;;;;;;;;;;;;;45114:10;:8;:10::i;:::-;45152:5;45141:8;;:16;;;;;;;;;;;;;;;;;;44843:326;45200:8;;;;;;;;;;;45199:9;:55;;;;;45225:25;:29;45251:2;45225:29;;;;;;;;;;;;;;;;;;;;;;;;;45199:55;:85;;;;;45271:13;;;;;;;;;;;45199:85;:153;;;;;45337:15;;45320:14;;:32;;;;:::i;:::-;45301:15;:51;;45199:153;:196;;;;;45370:19;:25;45390:4;45370:25;;;;;;;;;;;;;;;;;;;;;;;;;45369:26;45199:196;45181:282;;;45422:29;:27;:29::i;:::-;;45181:282;45475:12;45491:8;;;;;;;;;;;45490:9;45475:24;;45601:19;:25;45621:4;45601:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45630:19;:23;45650:2;45630:23;;;;;;;;;;;;;;;;;;;;;;;;;45601:52;45597:100;;;45680:5;45670:15;;45597:100;45709:12;45814:7;45810:985;;;45866:25;:29;45892:2;45866:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45915:1;45899:13;;:17;45866:50;45862:784;;;45944:34;45974:3;45944:25;45955:13;;45944:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45937:41;;46047:13;;46027:16;;46020:4;:23;;;;:::i;:::-;46019:41;;;;:::i;:::-;45997:18;;:63;;;;;;;:::i;:::-;;;;;;;;46125:13;;46103:18;;46096:4;:25;;;;:::i;:::-;46095:43;;;;:::i;:::-;46079:12;;:59;;;;;;;:::i;:::-;;;;;;;;46207:13;;46187:16;;46180:4;:23;;;;:::i;:::-;46179:41;;;;:::i;:::-;46157:18;;:63;;;;;;;:::i;:::-;;;;;;;;45862:784;;;46282:25;:31;46308:4;46282:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46332:1;46317:12;;:16;46282:51;46278:368;;;46361:33;46390:3;46361:24;46372:12;;46361:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46354:40;;46462:12;;46443:15;;46436:4;:22;;;;:::i;:::-;46435:39;;;;:::i;:::-;46413:18;;:61;;;;;;;:::i;:::-;;;;;;;;46538:12;;46517:17;;46510:4;:24;;;;:::i;:::-;46509:41;;;;:::i;:::-;46493:12;;:57;;;;;;;:::i;:::-;;;;;;;;46618:12;;46599:15;;46592:4;:22;;;;:::i;:::-;46591:39;;;;:::i;:::-;46569:18;;:61;;;;;;;:::i;:::-;;;;;;;;46278:368;45862:784;46673:1;46666:4;:8;46662:91;;;46695:42;46711:4;46725;46732;46695:15;:42::i;:::-;46662:91;46779:4;46769:14;;;;;:::i;:::-;;;45810:985;46807:33;46823:4;46829:2;46833:6;46807:15;:33::i;:::-;41934:4914;;;;41821:5027;;;;:::o;3493:191::-;3567:16;3586:6;;;;;;;;;;;3567:25;;3612:8;3603:6;;:17;;;;;;;;;;;;;;;;;;3667:8;3636:40;;3657:8;3636:40;;;;;;;;;;;;3556:128;3493:191;:::o;41037:188::-;41154:5;41120:25;:31;41146:4;41120:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41211:5;41177:40;;41205:4;41177:40;;;;;;;;;;;;41037:188;;:::o;23213:98::-;23271:7;23302:1;23298;:5;;;;:::i;:::-;23291:12;;23213:98;;;;:::o;23612:::-;23670:7;23701:1;23697;:5;;;;:::i;:::-;23690:12;;23612:98;;;;:::o;14979:733::-;15137:1;15119:20;;:6;:20;;;;15111:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15221:1;15200:23;;:9;:23;;;;15192:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15276:47;15297:6;15305:9;15316:6;15276:20;:47::i;:::-;15336:21;15360:9;:17;15370:6;15360:17;;;;;;;;;;;;;;;;15336:41;;15413:6;15396:13;:23;;15388:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15534:6;15518:13;:22;15498:9;:17;15508:6;15498:17;;;;;;;;;;;;;;;:42;;;;15586:6;15562:9;:20;15572:9;15562:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15627:9;15610:35;;15619:6;15610:35;;;15638:6;15610:35;;;;;;:::i;:::-;;;;;;;;15658:46;15678:6;15686:9;15697:6;15658:19;:46::i;:::-;15100:612;14979:733;;;:::o;47978:1756::-;48017:23;48043:24;48061:4;48043:9;:24::i;:::-;48017:50;;48078:25;48174:12;;48140:18;;48106;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48078:108;;48197:12;48245:1;48226:15;:20;:46;;;;48271:1;48250:17;:22;48226:46;48222:85;;;48289:7;;;;;48222:85;48362:2;48341:18;;:23;;;;:::i;:::-;48323:15;:41;48319:115;;;48420:2;48399:18;;:23;;;;:::i;:::-;48381:41;;48319:115;48495:23;48608:1;48575:17;48540:18;;48522:15;:36;;;;:::i;:::-;48521:71;;;;:::i;:::-;:88;;;;:::i;:::-;48495:114;;48620:26;48649:36;48669:15;48649;:19;;:36;;;;:::i;:::-;48620:65;;48698:25;48726:21;48698:49;;48760:36;48777:18;48760:16;:36::i;:::-;48809:18;48830:44;48856:17;48830:21;:25;;:44;;;;:::i;:::-;48809:65;;48887:23;48913:81;48966:17;48913:34;48928:18;;48913:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48887:107;;49005:17;49025:51;49058:17;49025:28;49040:12;;49025:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49005:71;;49089:23;49146:9;49128:15;49115:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49089:66;;49189:1;49168:18;:22;;;;49222:1;49201:18;:22;;;;49249:1;49234:12;:16;;;;49285:9;;;;;;;;;;;49277:23;;49308:9;49277:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49263:59;;;;;49357:1;49339:15;:19;:42;;;;;49380:1;49362:15;:19;49339:42;49335:278;;;49398:46;49411:15;49428;49398:12;:46::i;:::-;49464:137;49497:18;49534:15;49568:18;;49464:137;;;;;;;;:::i;:::-;;;;;;;;49335:278;49647:15;;;;;;;;;;;49639:29;;49690:21;49639:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49625:101;;;;;48006:1728;;;;;;;;;;47978:1756;:::o;50305:788::-;50362:4;50396:15;50379:14;:32;;;;50466:28;50497:4;:14;;;50512:13;50497:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50466:60;;50576:20;50599:77;50660:5;50599:42;50624:16;;50599:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50576:100;;50796:1;50781:12;:16;50777:110;;;50814:61;50830:13;50853:6;50862:12;50814:15;:61::i;:::-;50777:110;50962:19;50999:13;50962:51;;51024:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51051:12;;;;;;;;;;51081:4;51074:11;;;;;50305:788;:::o;18740:125::-;;;;:::o;19469:124::-;;;;:::o;22856:98::-;22914:7;22945:1;22941;:5;;;;:::i;:::-;22934:12;;22856:98;;;;:::o;46856:589::-;46982:21;47020:1;47006:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46982:40;;47051:4;47033;47038:1;47033:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47077:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47067:4;47072:1;47067:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47112:62;47129:4;47144:15;47162:11;47112:8;:62::i;:::-;47213:15;:66;;;47294:11;47320:1;47364:4;47391;47411:15;47213:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46911:534;46856:589;:::o;47453:517::-;47601:62;47618:4;47633:15;47651:11;47601:8;:62::i;:::-;47706:15;:31;;;47745:9;47778:4;47798:11;47824:1;47867;33053:6;47936:15;47706:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47453: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:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:613::-;6901:6;6909;6917;6966:2;6954:9;6945:7;6941:23;6937:32;6934:119;;;6972:79;;:::i;:::-;6934:119;7092:1;7117:53;7162:7;7153:6;7142:9;7138:22;7117:53;:::i;:::-;7107:63;;7063:117;7219:2;7245:53;7290:7;7281:6;7270:9;7266:22;7245:53;:::i;:::-;7235:63;;7190:118;7347:2;7373:50;7415:7;7406:6;7395:9;7391:22;7373:50;:::i;:::-;7363:60;;7318:115;6827:613;;;;;:::o;7446:468::-;7511:6;7519;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7694:1;7719:53;7764:7;7755:6;7744:9;7740:22;7719:53;:::i;:::-;7709:63;;7665:117;7821:2;7847:50;7889:7;7880:6;7869:9;7865:22;7847:50;:::i;:::-;7837:60;;7792:115;7446:468;;;;;:::o;7920:619::-;7997:6;8005;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:53;8386:7;8377:6;8366:9;8362:22;8341:53;:::i;:::-;8331:63;;8286:118;8443:2;8469:53;8514:7;8505:6;8494:9;8490:22;8469:53;:::i;:::-;8459:63;;8414:118;7920:619;;;;;:::o;8545:323::-;8601:6;8650:2;8638:9;8629:7;8625:23;8621:32;8618:119;;;8656:79;;:::i;:::-;8618:119;8776:1;8801:50;8843:7;8834:6;8823:9;8819:22;8801:50;:::i;:::-;8791:60;;8747:114;8545:323;;;;:::o;8874:329::-;8933:6;8982:2;8970:9;8961:7;8957:23;8953:32;8950:119;;;8988:79;;:::i;:::-;8950:119;9108:1;9133:53;9178:7;9169:6;9158:9;9154:22;9133:53;:::i;:::-;9123:63;;9079:117;8874:329;;;;:::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:227::-;11326:34;11322:1;11314:6;11310:14;11303:58;11395:10;11390:2;11382:6;11378:15;11371:35;11186:227;:::o;11419:366::-;11561:3;11582:67;11646:2;11641:3;11582:67;:::i;:::-;11575:74;;11658:93;11747:3;11658:93;:::i;:::-;11776:2;11771:3;11767:12;11760:19;;11419:366;;;:::o;11791:419::-;11957:4;11995:2;11984:9;11980:18;11972:26;;12044:9;12038:4;12034:20;12030:1;12019:9;12015:17;12008:47;12072:131;12198:4;12072:131;:::i;:::-;12064:139;;11791:419;;;:::o;12216:180::-;12264:77;12261:1;12254:88;12361:4;12358:1;12351:15;12385:4;12382:1;12375:15;12402:305;12442:3;12461:20;12479:1;12461:20;:::i;:::-;12456:25;;12495:20;12513:1;12495:20;:::i;:::-;12490:25;;12649:1;12581:66;12577:74;12574:1;12571:81;12568:107;;;12655:18;;:::i;:::-;12568:107;12699:1;12696;12692:9;12685:16;;12402:305;;;;:::o;12713:238::-;12853:34;12849:1;12841:6;12837:14;12830:58;12922:21;12917:2;12909:6;12905:15;12898:46;12713:238;:::o;12957:366::-;13099:3;13120:67;13184:2;13179:3;13120:67;:::i;:::-;13113:74;;13196:93;13285:3;13196:93;:::i;:::-;13314:2;13309:3;13305:12;13298:19;;12957:366;;;:::o;13329:419::-;13495:4;13533:2;13522:9;13518:18;13510:26;;13582:9;13576:4;13572:20;13568:1;13557:9;13553:17;13546:47;13610:131;13736:4;13610:131;:::i;:::-;13602:139;;13329:419;;;:::o;13754:235::-;13894:34;13890:1;13882:6;13878:14;13871:58;13963:18;13958:2;13950:6;13946:15;13939:43;13754:235;:::o;13995:366::-;14137:3;14158:67;14222:2;14217:3;14158:67;:::i;:::-;14151:74;;14234:93;14323:3;14234:93;:::i;:::-;14352:2;14347:3;14343:12;14336:19;;13995:366;;;:::o;14367:419::-;14533:4;14571:2;14560:9;14556:18;14548:26;;14620:9;14614:4;14610:20;14606:1;14595:9;14591:17;14584:47;14648:131;14774:4;14648:131;:::i;:::-;14640:139;;14367:419;;;:::o;14792:179::-;14932:31;14928:1;14920:6;14916:14;14909:55;14792:179;:::o;14977:366::-;15119:3;15140:67;15204:2;15199:3;15140:67;:::i;:::-;15133:74;;15216:93;15305:3;15216:93;:::i;:::-;15334:2;15329:3;15325:12;15318:19;;14977:366;;;:::o;15349:419::-;15515:4;15553:2;15542:9;15538:18;15530:26;;15602:9;15596:4;15592:20;15588:1;15577:9;15573:17;15566:47;15630:131;15756:4;15630:131;:::i;:::-;15622:139;;15349:419;;;:::o;15774:244::-;15914:34;15910:1;15902:6;15898:14;15891:58;15983:27;15978:2;15970:6;15966:15;15959:52;15774:244;:::o;16024:366::-;16166:3;16187:67;16251:2;16246:3;16187:67;:::i;:::-;16180:74;;16263:93;16352:3;16263:93;:::i;:::-;16381:2;16376:3;16372:12;16365:19;;16024:366;;;:::o;16396:419::-;16562:4;16600:2;16589:9;16585:18;16577:26;;16649:9;16643:4;16639:20;16635:1;16624:9;16620:17;16613:47;16677:131;16803:4;16677:131;:::i;:::-;16669:139;;16396:419;;;:::o;16821:224::-;16961:34;16957:1;16949:6;16945:14;16938:58;17030:7;17025:2;17017:6;17013:15;17006:32;16821:224;:::o;17051:366::-;17193:3;17214:67;17278:2;17273:3;17214:67;:::i;:::-;17207:74;;17290:93;17379:3;17290:93;:::i;:::-;17408:2;17403:3;17399:12;17392:19;;17051:366;;;:::o;17423:419::-;17589:4;17627:2;17616:9;17612:18;17604:26;;17676:9;17670:4;17666:20;17662:1;17651:9;17647:17;17640:47;17704:131;17830:4;17704:131;:::i;:::-;17696:139;;17423:419;;;:::o;17848:348::-;17888:7;17911:20;17929:1;17911:20;:::i;:::-;17906:25;;17945:20;17963:1;17945:20;:::i;:::-;17940:25;;18133:1;18065:66;18061:74;18058:1;18055:81;18050:1;18043:9;18036:17;18032:105;18029:131;;;18140:18;;:::i;:::-;18029:131;18188:1;18185;18181:9;18170:20;;17848:348;;;;:::o;18202:180::-;18250:77;18247:1;18240:88;18347:4;18344:1;18337:15;18371:4;18368:1;18361:15;18388:185;18428:1;18445:20;18463:1;18445:20;:::i;:::-;18440:25;;18479:20;18497:1;18479:20;:::i;:::-;18474:25;;18518:1;18508:35;;18523:18;;:::i;:::-;18508:35;18565:1;18562;18558:9;18553:14;;18388:185;;;;:::o;18579:240::-;18719:34;18715:1;18707:6;18703:14;18696:58;18788:23;18783:2;18775:6;18771:15;18764:48;18579:240;:::o;18825:366::-;18967:3;18988:67;19052:2;19047:3;18988:67;:::i;:::-;18981:74;;19064:93;19153:3;19064:93;:::i;:::-;19182:2;19177:3;19173:12;19166:19;;18825:366;;;:::o;19197:419::-;19363:4;19401:2;19390:9;19386:18;19378:26;;19450:9;19444:4;19440:20;19436:1;19425:9;19421:17;19414:47;19478:131;19604:4;19478:131;:::i;:::-;19470:139;;19197:419;;;:::o;19622:239::-;19762:34;19758:1;19750:6;19746:14;19739:58;19831:22;19826:2;19818:6;19814:15;19807:47;19622:239;:::o;19867:366::-;20009:3;20030:67;20094:2;20089:3;20030:67;:::i;:::-;20023:74;;20106:93;20195:3;20106:93;:::i;:::-;20224:2;20219:3;20215:12;20208:19;;19867:366;;;:::o;20239:419::-;20405:4;20443:2;20432:9;20428:18;20420:26;;20492:9;20486:4;20482:20;20478:1;20467:9;20463:17;20456:47;20520:131;20646:4;20520:131;:::i;:::-;20512:139;;20239:419;;;:::o;20664:225::-;20804:34;20800:1;20792:6;20788:14;20781:58;20873:8;20868:2;20860:6;20856:15;20849:33;20664:225;:::o;20895:366::-;21037:3;21058:67;21122:2;21117:3;21058:67;:::i;:::-;21051:74;;21134:93;21223:3;21134:93;:::i;:::-;21252:2;21247:3;21243:12;21236:19;;20895:366;;;:::o;21267:419::-;21433:4;21471:2;21460:9;21456:18;21448:26;;21520:9;21514:4;21510:20;21506:1;21495:9;21491:17;21484:47;21548:131;21674:4;21548:131;:::i;:::-;21540:139;;21267:419;;;:::o;21692:182::-;21832:34;21828:1;21820:6;21816:14;21809:58;21692:182;:::o;21880:366::-;22022:3;22043:67;22107:2;22102:3;22043:67;:::i;:::-;22036:74;;22119:93;22208:3;22119:93;:::i;:::-;22237:2;22232:3;22228:12;22221:19;;21880:366;;;:::o;22252:419::-;22418:4;22456:2;22445:9;22441:18;22433:26;;22505:9;22499:4;22495:20;22491:1;22480:9;22476:17;22469:47;22533:131;22659:4;22533:131;:::i;:::-;22525:139;;22252:419;;;:::o;22677:229::-;22817:34;22813:1;22805:6;22801:14;22794:58;22886:12;22881:2;22873:6;22869:15;22862:37;22677:229;:::o;22912:366::-;23054:3;23075:67;23139:2;23134:3;23075:67;:::i;:::-;23068:74;;23151:93;23240:3;23151:93;:::i;:::-;23269:2;23264:3;23260:12;23253:19;;22912:366;;;:::o;23284:419::-;23450:4;23488:2;23477:9;23473:18;23465:26;;23537:9;23531:4;23527:20;23523:1;23512:9;23508:17;23501:47;23565:131;23691:4;23565:131;:::i;:::-;23557:139;;23284:419;;;:::o;23709:143::-;23766:5;23797:6;23791:13;23782:22;;23813:33;23840:5;23813:33;:::i;:::-;23709:143;;;;:::o;23858:351::-;23928:6;23977:2;23965:9;23956:7;23952:23;23948:32;23945:119;;;23983:79;;:::i;:::-;23945:119;24103:1;24128:64;24184:7;24175:6;24164:9;24160:22;24128:64;:::i;:::-;24118:74;;24074:128;23858:351;;;;:::o;24215:223::-;24355:34;24351:1;24343:6;24339:14;24332:58;24424:6;24419:2;24411:6;24407:15;24400:31;24215:223;:::o;24444:366::-;24586:3;24607:67;24671:2;24666:3;24607:67;:::i;:::-;24600:74;;24683:93;24772:3;24683:93;:::i;:::-;24801:2;24796:3;24792:12;24785:19;;24444:366;;;:::o;24816:419::-;24982:4;25020:2;25009:9;25005:18;24997:26;;25069:9;25063:4;25059:20;25055:1;25044:9;25040:17;25033:47;25097:131;25223:4;25097:131;:::i;:::-;25089:139;;24816:419;;;:::o;25241:221::-;25381:34;25377:1;25369:6;25365:14;25358:58;25450:4;25445:2;25437:6;25433:15;25426:29;25241:221;:::o;25468:366::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:419::-;26006:4;26044:2;26033:9;26029:18;26021:26;;26093:9;26087:4;26083:20;26079:1;26068:9;26064:17;26057:47;26121:131;26247:4;26121:131;:::i;:::-;26113:139;;25840:419;;;:::o;26265:224::-;26405:34;26401:1;26393:6;26389:14;26382:58;26474:7;26469:2;26461:6;26457:15;26450:32;26265:224;:::o;26495:366::-;26637:3;26658:67;26722:2;26717:3;26658:67;:::i;:::-;26651:74;;26734:93;26823:3;26734:93;:::i;:::-;26852:2;26847:3;26843:12;26836:19;;26495:366;;;:::o;26867:419::-;27033:4;27071:2;27060:9;27056:18;27048:26;;27120:9;27114:4;27110:20;27106:1;27095:9;27091:17;27084:47;27148:131;27274:4;27148:131;:::i;:::-;27140:139;;26867:419;;;:::o;27292:222::-;27432:34;27428:1;27420:6;27416:14;27409:58;27501:5;27496:2;27488:6;27484:15;27477:30;27292:222;:::o;27520:366::-;27662:3;27683:67;27747:2;27742:3;27683:67;:::i;:::-;27676:74;;27759:93;27848:3;27759:93;:::i;:::-;27877:2;27872:3;27868:12;27861:19;;27520:366;;;:::o;27892:419::-;28058:4;28096:2;28085:9;28081:18;28073:26;;28145:9;28139:4;28135:20;28131:1;28120:9;28116:17;28109:47;28173:131;28299:4;28173:131;:::i;:::-;28165:139;;27892:419;;;:::o;28317:172::-;28457:24;28453:1;28445:6;28441:14;28434:48;28317:172;:::o;28495:366::-;28637:3;28658:67;28722:2;28717:3;28658:67;:::i;:::-;28651:74;;28734:93;28823:3;28734:93;:::i;:::-;28852:2;28847:3;28843:12;28836:19;;28495:366;;;:::o;28867:419::-;29033:4;29071:2;29060:9;29056:18;29048:26;;29120:9;29114:4;29110:20;29106:1;29095:9;29091:17;29084:47;29148:131;29274:4;29148:131;:::i;:::-;29140:139;;28867:419;;;:::o;29292:297::-;29432:34;29428:1;29420:6;29416:14;29409:58;29501:34;29496:2;29488:6;29484:15;29477:59;29570:11;29565:2;29557:6;29553:15;29546:36;29292:297;:::o;29595:366::-;29737:3;29758:67;29822:2;29817:3;29758:67;:::i;:::-;29751:74;;29834:93;29923:3;29834:93;:::i;:::-;29952:2;29947:3;29943:12;29936:19;;29595:366;;;:::o;29967:419::-;30133:4;30171:2;30160:9;30156:18;30148:26;;30220:9;30214:4;30210:20;30206:1;30195:9;30191:17;30184:47;30248:131;30374:4;30248:131;:::i;:::-;30240:139;;29967:419;;;:::o;30392:240::-;30532:34;30528:1;30520:6;30516:14;30509:58;30601:23;30596:2;30588:6;30584:15;30577:48;30392:240;:::o;30638:366::-;30780:3;30801:67;30865:2;30860:3;30801:67;:::i;:::-;30794:74;;30877:93;30966:3;30877:93;:::i;:::-;30995:2;30990:3;30986:12;30979:19;;30638:366;;;:::o;31010:419::-;31176:4;31214:2;31203:9;31199:18;31191:26;;31263:9;31257:4;31253:20;31249:1;31238:9;31234:17;31227:47;31291:131;31417:4;31291:131;:::i;:::-;31283:139;;31010:419;;;:::o;31435:169::-;31575:21;31571:1;31563:6;31559:14;31552:45;31435:169;:::o;31610:366::-;31752:3;31773:67;31837:2;31832:3;31773:67;:::i;:::-;31766:74;;31849:93;31938:3;31849:93;:::i;:::-;31967:2;31962:3;31958:12;31951:19;;31610:366;;;:::o;31982:419::-;32148:4;32186:2;32175:9;32171:18;32163:26;;32235:9;32229:4;32225:20;32221:1;32210:9;32206:17;32199:47;32263:131;32389:4;32263:131;:::i;:::-;32255:139;;31982:419;;;:::o;32407:241::-;32547:34;32543:1;32535:6;32531:14;32524:58;32616:24;32611:2;32603:6;32599:15;32592:49;32407:241;:::o;32654:366::-;32796:3;32817:67;32881:2;32876:3;32817:67;:::i;:::-;32810:74;;32893:93;32982:3;32893:93;:::i;:::-;33011:2;33006:3;33002:12;32995:19;;32654:366;;;:::o;33026:419::-;33192:4;33230:2;33219:9;33215:18;33207:26;;33279:9;33273:4;33269:20;33265:1;33254:9;33250:17;33243:47;33307:131;33433:4;33307:131;:::i;:::-;33299:139;;33026:419;;;:::o;33451:191::-;33491:4;33511:20;33529:1;33511:20;:::i;:::-;33506:25;;33545:20;33563:1;33545:20;:::i;:::-;33540:25;;33584:1;33581;33578:8;33575:34;;;33589:18;;:::i;:::-;33575:34;33634:1;33631;33627:9;33619:17;;33451:191;;;;:::o;33648:225::-;33788:34;33784:1;33776:6;33772:14;33765:58;33857:8;33852:2;33844:6;33840:15;33833:33;33648:225;:::o;33879:366::-;34021:3;34042:67;34106:2;34101:3;34042:67;:::i;:::-;34035:74;;34118:93;34207:3;34118:93;:::i;:::-;34236:2;34231:3;34227:12;34220:19;;33879:366;;;:::o;34251:419::-;34417:4;34455:2;34444:9;34440:18;34432:26;;34504:9;34498:4;34494:20;34490:1;34479:9;34475:17;34468:47;34532:131;34658:4;34532:131;:::i;:::-;34524:139;;34251:419;;;:::o;34676:147::-;34777:11;34814:3;34799:18;;34676:147;;;;:::o;34829:114::-;;:::o;34949:398::-;35108:3;35129:83;35210:1;35205:3;35129:83;:::i;:::-;35122:90;;35221:93;35310:3;35221:93;:::i;:::-;35339:1;35334:3;35330:11;35323:18;;34949:398;;;:::o;35353:379::-;35537:3;35559:147;35702:3;35559:147;:::i;:::-;35552:154;;35723:3;35716:10;;35353:379;;;:::o;35738:442::-;35887:4;35925:2;35914:9;35910:18;35902:26;;35938:71;36006:1;35995:9;35991:17;35982:6;35938:71;:::i;:::-;36019:72;36087:2;36076:9;36072:18;36063:6;36019:72;:::i;:::-;36101;36169:2;36158:9;36154:18;36145:6;36101:72;:::i;:::-;35738:442;;;;;;:::o;36186:180::-;36234:77;36231:1;36224:88;36331:4;36328:1;36321:15;36355:4;36352:1;36345:15;36372:180;36420:77;36417:1;36410:88;36517:4;36514:1;36507:15;36541:4;36538:1;36531:15;36558:143;36615:5;36646:6;36640:13;36631:22;;36662:33;36689:5;36662:33;:::i;:::-;36558:143;;;;:::o;36707:351::-;36777:6;36826:2;36814:9;36805:7;36801:23;36797:32;36794:119;;;36832:79;;:::i;:::-;36794:119;36952:1;36977:64;37033:7;37024:6;37013:9;37009:22;36977:64;:::i;:::-;36967:74;;36923:128;36707:351;;;;:::o;37064:85::-;37109:7;37138:5;37127:16;;37064:85;;;:::o;37155:158::-;37213:9;37246:61;37264:42;37273:32;37299:5;37273:32;:::i;:::-;37264:42;:::i;:::-;37246:61;:::i;:::-;37233:74;;37155:158;;;:::o;37319:147::-;37414:45;37453:5;37414:45;:::i;:::-;37409:3;37402:58;37319:147;;:::o;37472:114::-;37539:6;37573:5;37567:12;37557:22;;37472:114;;;:::o;37592:184::-;37691:11;37725:6;37720:3;37713:19;37765:4;37760:3;37756:14;37741:29;;37592:184;;;;:::o;37782:132::-;37849:4;37872:3;37864:11;;37902:4;37897:3;37893:14;37885:22;;37782:132;;;:::o;37920:108::-;37997:24;38015:5;37997:24;:::i;:::-;37992:3;37985:37;37920:108;;:::o;38034:179::-;38103:10;38124:46;38166:3;38158:6;38124:46;:::i;:::-;38202:4;38197:3;38193:14;38179:28;;38034:179;;;;:::o;38219:113::-;38289:4;38321;38316:3;38312:14;38304:22;;38219:113;;;:::o;38368:732::-;38487:3;38516:54;38564:5;38516:54;:::i;:::-;38586:86;38665:6;38660:3;38586:86;:::i;:::-;38579:93;;38696:56;38746:5;38696:56;:::i;:::-;38775:7;38806:1;38791:284;38816:6;38813:1;38810:13;38791:284;;;38892:6;38886:13;38919:63;38978:3;38963:13;38919:63;:::i;:::-;38912:70;;39005:60;39058:6;39005:60;:::i;:::-;38995:70;;38851:224;38838:1;38835;38831:9;38826:14;;38791:284;;;38795:14;39091:3;39084:10;;38492:608;;;38368:732;;;;:::o;39106:831::-;39369:4;39407:3;39396:9;39392:19;39384:27;;39421:71;39489:1;39478:9;39474:17;39465:6;39421:71;:::i;:::-;39502:80;39578:2;39567:9;39563:18;39554:6;39502:80;:::i;:::-;39629:9;39623:4;39619:20;39614:2;39603:9;39599:18;39592:48;39657:108;39760:4;39751:6;39657:108;:::i;:::-;39649:116;;39775:72;39843:2;39832:9;39828:18;39819:6;39775:72;:::i;:::-;39857:73;39925:3;39914:9;39910:19;39901:6;39857:73;:::i;:::-;39106:831;;;;;;;;:::o;39943:807::-;40192:4;40230:3;40219:9;40215:19;40207:27;;40244:71;40312:1;40301:9;40297:17;40288:6;40244:71;:::i;:::-;40325:72;40393:2;40382:9;40378:18;40369:6;40325:72;:::i;:::-;40407:80;40483:2;40472:9;40468:18;40459:6;40407:80;:::i;:::-;40497;40573:2;40562:9;40558:18;40549:6;40497:80;:::i;:::-;40587:73;40655:3;40644:9;40640:19;40631:6;40587:73;:::i;:::-;40670;40738:3;40727:9;40723:19;40714:6;40670:73;:::i;:::-;39943:807;;;;;;;;;:::o;40756:663::-;40844:6;40852;40860;40909:2;40897:9;40888:7;40884:23;40880:32;40877:119;;;40915:79;;:::i;:::-;40877:119;41035:1;41060:64;41116:7;41107:6;41096:9;41092:22;41060:64;:::i;:::-;41050:74;;41006:128;41173:2;41199:64;41255:7;41246:6;41235:9;41231:22;41199:64;:::i;:::-;41189:74;;41144:129;41312:2;41338:64;41394:7;41385:6;41374:9;41370:22;41338:64;:::i;:::-;41328:74;;41283:129;40756:663;;;;;:::o

Swarm Source

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