ETH Price: $3,382.76 (-1.87%)
Gas: 3 Gwei

Token

That Which Has No Pole (WUJI)
 

Overview

Max Total Supply

1,000,000 WUJI

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,996.329375730136324979 WUJI

Value
$0.00
0x74c160e7b7ff01e32277ffb8162dcde635a72061
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:
WuJiERC20Token

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-30
*/

// The Ultimate of Nothingness
// https://t.me/WujiPortal

// SPDX-License-Identifier: MIT
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;
        }
    }
}

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

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

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

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

    // 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 buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

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

	uint256 public tokensForCharity;
    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("That Which Has No Pole", "WUJI") {
        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 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 8;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000 * 1e18;

        maxTransactionAmount = 20000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 30000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% swap wallet

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

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

		charityWallet = address(0x001B0E85f73691fE27984819BBCdB65F0A60d115); // set as charity wallet
        marketingWallet = address(0x001B0E85f73691fE27984819BBCdB65F0A60d115); // set as marketing wallet
        devWallet = address(0x63Af7bD15FB2AA6435d15A181Ee3bf4b39fA033a); // 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;
    }

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

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

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

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

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

        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);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCharity + 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 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280601681526020017f5468617420576869636820486173204e6f20506f6c65000000000000000000008152506040518060400160405280600481526020017f57554a490000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b5c565b5080600490805190602001906200011b92919062000b5c565b5050506200013e620001326200061c60201b60201c565b6200062460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006ea60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c76565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c76565b6040518363ffffffff1660e01b8152600401620002bd92919062000cb9565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c76565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006ea60201b60201c565b6200036060a0516001620007d460201b60201c565b60008060008060008060089050600080600069d3c21bcecceda1000000905069043c33c193756480000060098190555069065a4da25d3016c00000600b81905550612710602882620003b3919062000d1f565b620003bf919062000daf565b600a8190555088601081905550876011819055508660128190555085601381905550601354601254601154601054620003f9919062000de7565b62000405919062000de7565b62000411919062000de7565b600f81905550846015819055508360168190555082601781905550816018819055506018546017546016546015546200044b919062000de7565b62000457919062000de7565b62000463919062000de7565b601481905550721b0e85f73691fe27984819bbcdb65f0a60d115600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550721b0e85f73691fe27984819bbcdb65f0a60d115600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507363af7bd15fb2aa6435d15a181ee3bf4b39fa033a600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005886200057a6200087560201b60201c565b60016200089f60201b60201c565b6200059b3060016200089f60201b60201c565b620005b061dead60016200089f60201b60201c565b620005d2620005c46200087560201b60201c565b6001620006ea60201b60201c565b620005e5306001620006ea60201b60201c565b620005fa61dead6001620006ea60201b60201c565b6200060c3382620009d960201b60201c565b5050505050505050505062001006565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006fa6200061c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007206200087560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007709062000ea5565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008af6200061c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008d56200087560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200092e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009259062000ea5565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009cd919062000ee4565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a439062000f51565b60405180910390fd5b62000a606000838362000b5260201b60201c565b806002600082825462000a74919062000de7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000acb919062000de7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b32919062000f84565b60405180910390a362000b4e6000838362000b5760201b60201c565b5050565b505050565b505050565b82805462000b6a9062000fd0565b90600052602060002090601f01602090048101928262000b8e576000855562000bda565b82601f1062000ba957805160ff191683800117855562000bda565b8280016001018555821562000bda579182015b8281111562000bd957825182559160200191906001019062000bbc565b5b50905062000be9919062000bed565b5090565b5b8082111562000c0857600081600090555060010162000bee565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c3e8262000c11565b9050919050565b62000c508162000c31565b811462000c5c57600080fd5b50565b60008151905062000c708162000c45565b92915050565b60006020828403121562000c8f5762000c8e62000c0c565b5b600062000c9f8482850162000c5f565b91505092915050565b62000cb38162000c31565b82525050565b600060408201905062000cd0600083018562000ca8565b62000cdf602083018462000ca8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d2c8262000ce6565b915062000d398362000ce6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d755762000d7462000cf0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dbc8262000ce6565b915062000dc98362000ce6565b92508262000ddc5762000ddb62000d80565b5b828204905092915050565b600062000df48262000ce6565b915062000e018362000ce6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e395762000e3862000cf0565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e8d60208362000e44565b915062000e9a8262000e55565b602082019050919050565b6000602082019050818103600083015262000ec08162000e7e565b9050919050565b60008115159050919050565b62000ede8162000ec7565b82525050565b600060208201905062000efb600083018462000ed3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f39601f8362000e44565b915062000f468262000f01565b602082019050919050565b6000602082019050818103600083015262000f6c8162000f2a565b9050919050565b62000f7e8162000ce6565b82525050565b600060208201905062000f9b600083018462000f73565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fe957607f821691505b60208210811415620010005762000fff62000fa1565b5b50919050565b60805160a051614f2d620010646000396000818161121701528181611807015261262e015260008181610e47015281816125d60152818161380a015281816138eb01528181613912015281816139ae01526139d50152614f2d6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613b3d565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613bf8565b610e01565b6040516103da9190613c53565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613c7d565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613c98565b610e25565b6040516104429190613c53565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613d24565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613c7d565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613c7d565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613c7d565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613d3f565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613d6c565b610f8e565b6040516105549190613c53565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613dce565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613de9565b61108c565b005b3480156105bd57600080fd5b506105c661115a565b6040516105d39190613e6c565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613bf8565b611163565b6040516106109190613c53565b60405180910390f35b34801561062557600080fd5b5061062e61120f565b60405161063b9190613c7d565b60405180910390f35b34801561065057600080fd5b50610659611215565b6040516106669190613dce565b60405180910390f35b34801561067b57600080fd5b50610684611239565b6040516106919190613c53565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613c98565b61124c565b6040516106ce9190613c53565b60405180910390f35b3480156106e357600080fd5b506106ec6112a2565b6040516106f99190613c7d565b60405180910390f35b34801561070e57600080fd5b506107176112a8565b6040516107249190613c53565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613c98565b6112bb565b6040516107619190613c7d565b60405180910390f35b34801561077657600080fd5b5061077f611303565b005b34801561078d57600080fd5b5061079661138b565b6040516107a39190613c53565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613eb3565b61142b565b005b3480156107e157600080fd5b506107ea611502565b6040516107f79190613dce565b60405180910390f35b34801561080c57600080fd5b50610815611528565b6040516108229190613dce565b60405180910390f35b34801561083757600080fd5b5061084061154e565b60405161084d9190613c7d565b60405180910390f35b34801561086257600080fd5b5061086b611554565b005b34801561087957600080fd5b50610882611608565b60405161088f9190613dce565b60405180910390f35b3480156108a457600080fd5b506108ad611632565b6040516108ba9190613dce565b60405180910390f35b3480156108cf57600080fd5b506108d8611658565b6040516108e59190613c7d565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613ef3565b61165e565b005b34801561092357600080fd5b5061092c6116f7565b6040516109399190613b3d565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613eb3565b611789565b005b34801561097757600080fd5b506109806118a2565b60405161098d9190613c7d565b60405180910390f35b3480156109a257600080fd5b506109ab6118a8565b6040516109b89190613c7d565b60405180910390f35b3480156109cd57600080fd5b506109d66118ae565b6040516109e39190613c7d565b60405180910390f35b3480156109f857600080fd5b50610a016118b4565b604051610a0e9190613c7d565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613bf8565b6118ba565b604051610a4b9190613c53565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613bf8565b6119a5565b604051610a889190613c53565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613c98565b6119c3565b604051610ac59190613c53565b60405180910390f35b348015610ada57600080fd5b50610ae36119e3565b604051610af09190613c53565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613eb3565b6119f6565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613d3f565b611b1b565b005b348015610b5757600080fd5b50610b60611c2a565b604051610b6d9190613c53565b60405180910390f35b348015610b8257600080fd5b50610b8b611c3d565b604051610b989190613c7d565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613d3f565b611c43565b604051610bd59190613c53565b60405180910390f35b348015610bea57600080fd5b50610bf3611d98565b604051610c009190613c7d565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613f20565b611d9e565b604051610c3d9190613c7d565b60405180910390f35b348015610c5257600080fd5b50610c5b611e25565b604051610c689190613c7d565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613de9565b611e2b565b005b348015610ca657600080fd5b50610caf611ef9565b604051610cbc9190613c53565b60405180910390f35b348015610cd157600080fd5b50610cda611f99565b604051610ce79190613c7d565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613c98565b611f9f565b005b348015610d2557600080fd5b50610d2e612097565b604051610d3b9190613c7d565b60405180910390f35b348015610d5057600080fd5b50610d5961209d565b604051610d669190613c7d565b60405180910390f35b606060038054610d7e90613f8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90613f8f565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e6120a3565b84846120ab565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e876120a3565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611608565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef29061400d565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b919061405c565b610f2591906140e5565b610f2f91906140e5565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614188565b60405180910390fd5b670de0b6b3a764000081610f85919061405c565b60098190555050565b6000610f9b848484612276565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe66120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d9061421a565b60405180910390fd5b61107a856110726120a3565b8584036120ab565b60019150509392505050565b61dead81565b6110946120a3565b73ffffffffffffffffffffffffffffffffffffffff166110b2611608565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff9061400d565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461113a919061423a565b611144919061423a565b61114e919061423a565b600f8190555050505050565b60006012905090565b60006112056111706120a3565b84846001600061117e6120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611200919061423a565b6120ab565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61130b6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611329611608565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061400d565b60405180910390fd5b6113896000612f76565b565b60006113956120a3565b73ffffffffffffffffffffffffffffffffffffffff166113b3611608565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114009061400d565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6114336120a3565b73ffffffffffffffffffffffffffffffffffffffff16611451611608565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e9061400d565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b61155c6120a3565b73ffffffffffffffffffffffffffffffffffffffff1661157a611608565b73ffffffffffffffffffffffffffffffffffffffff16146115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c79061400d565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116666120a3565b73ffffffffffffffffffffffffffffffffffffffff16611684611608565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d19061400d565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461170690613f8f565b80601f016020809104026020016040519081016040528092919081815260200182805461173290613f8f565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b5050505050905090565b6117916120a3565b73ffffffffffffffffffffffffffffffffffffffff166117af611608565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061400d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614302565b60405180910390fd5b61189e828261303c565b5050565b60135481565b601c5481565b60185481565b60105481565b600080600160006118c96120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614394565b60405180910390fd5b61199a6119916120a3565b858584036120ab565b600191505092915050565b60006119b96119b26120a3565b8484612276565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6119fe6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611a1c611608565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a699061400d565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b0f9190613c53565b60405180910390a25050565b611b236120a3565b73ffffffffffffffffffffffffffffffffffffffff16611b41611608565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e9061400d565b60405180910390fd5b670de0b6b3a76400006103e86005611bad610e69565b611bb7919061405c565b611bc191906140e5565b611bcb91906140e5565b811015611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614426565b60405180910390fd5b670de0b6b3a764000081611c21919061405c565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611c4d6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611c6b611608565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb89061400d565b60405180910390fd5b620186a06001611ccf610e69565b611cd9919061405c565b611ce391906140e5565b821015611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c906144b8565b60405180910390fd5b6103e86005611d32610e69565b611d3c919061405c565b611d4691906140e5565b821115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f9061454a565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e336120a3565b73ffffffffffffffffffffffffffffffffffffffff16611e51611608565b73ffffffffffffffffffffffffffffffffffffffff1614611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e9061400d565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611ed9919061423a565b611ee3919061423a565b611eed919061423a565b60148190555050505050565b6000611f036120a3565b73ffffffffffffffffffffffffffffffffffffffff16611f21611608565b73ffffffffffffffffffffffffffffffffffffffff1614611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e9061400d565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611fa76120a3565b73ffffffffffffffffffffffffffffffffffffffff16611fc5611608565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120129061400d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612082906145dc565b60405180910390fd5b61209481612f76565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561211b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121129061466e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290614700565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122699190613c7d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90614824565b60405180910390fd5b60008114156123705761236b838360006130dd565b612f71565b600c60009054906101000a900460ff1615612a335761238d611608565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123fb57506123cb611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124345750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561246e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124875750600560149054906101000a900460ff16155b15612a3257600c60019054906101000a900460ff1661258157601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125415750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257790614890565b60405180910390fd5b5b600e60009054906101000a900460ff16156127495761259e611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561262557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561267d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127485743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa90614948565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127ec5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561289357600954811115612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d906149da565b60405180910390fd5b600b54612842836112bb565b8261284d919061423a565b111561288e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288590614a46565b60405180910390fd5b612a31565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129365750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298557600954811115612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297790614ad8565b60405180910390fd5b612a30565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a2f57600b546129e2836112bb565b826129ed919061423a565b1115612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590614a46565b60405180910390fd5b5b5b5b5b5b6000612a3e306112bb565b90506000600a548210159050808015612a635750600c60029054906101000a900460ff165b8015612a7c5750600560149054906101000a900460ff16155b8015612ad25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b285750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b7e5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bc2576001600560146101000a81548160ff021916908315150217905550612ba661335e565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c785750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c8257600090505b60008115612f6157601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce557506000601454115b15612de557612d126064612d046014548861371f90919063ffffffff16565b61373590919063ffffffff16565b905060145460155482612d25919061405c565b612d2f91906140e5565b60196000828254612d40919061423a565b9250508190555060145460175482612d58919061405c565b612d6291906140e5565b601b6000828254612d73919061423a565b9250508190555060145460185482612d8b919061405c565b612d9591906140e5565b601c6000828254612da6919061423a565b9250508190555060145460165482612dbe919061405c565b612dc891906140e5565b601a6000828254612dd9919061423a565b92505081905550612f3d565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e4057506000600f54115b15612f3c57612e6d6064612e5f600f548861371f90919063ffffffff16565b61373590919063ffffffff16565b9050600f5460105482612e80919061405c565b612e8a91906140e5565b60196000828254612e9b919061423a565b92505081905550600f5460125482612eb3919061405c565b612ebd91906140e5565b601b6000828254612ece919061423a565b92505081905550600f5460135482612ee6919061405c565b612ef091906140e5565b601c6000828254612f01919061423a565b92505081905550600f5460115482612f19919061405c565b612f2391906140e5565b601a6000828254612f34919061423a565b925050819055505b5b6000811115612f5257612f518730836130dd565b5b8085612f5e9190614af8565b94505b612f6c8787876130dd565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561314d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314490614792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b490614824565b60405180910390fd5b6131c883838361374b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324590614b9e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e1919061423a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133459190613c7d565b60405180910390a3613358848484613750565b50505050565b6000613369306112bb565b90506000601c54601a54601b54601954613383919061423a565b61338d919061423a565b613397919061423a565b90506000808314806133a95750600082145b156133b65750505061371d565b6014600a546133c5919061405c565b8311156133de576014600a546133db919061405c565b92505b6000600283601b54866133f1919061405c565b6133fb91906140e5565b61340591906140e5565b9050600061341c828661375590919063ffffffff16565b9050600047905061342c8261376b565b6000613441824761375590919063ffffffff16565b9050600061346c8761345e6019548561371f90919063ffffffff16565b61373590919063ffffffff16565b9050600061349788613489601a548661371f90919063ffffffff16565b61373590919063ffffffff16565b905060006134c2896134b4601c548761371f90919063ffffffff16565b61373590919063ffffffff16565b90506000818385876134d49190614af8565b6134de9190614af8565b6134e89190614af8565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161355090614bef565b60006040518083038185875af1925050503d806000811461358d576040519150601f19603f3d011682016040523d82523d6000602084013e613592565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516135de90614bef565b60006040518083038185875af1925050503d806000811461361b576040519150601f19603f3d011682016040523d82523d6000602084013e613620565b606091505b5050809950506000881180156136365750600081115b156136835761364588826139a8565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161367a93929190614c04565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136c990614bef565b60006040518083038185875af1925050503d8060008114613706576040519150601f19603f3d011682016040523d82523d6000602084013e61370b565b606091505b50508099505050505050505050505050505b565b6000818361372d919061405c565b905092915050565b6000818361374391906140e5565b905092915050565b505050565b505050565b600081836137639190614af8565b905092915050565b6000600267ffffffffffffffff81111561378857613787614c3b565b5b6040519080825280602002602001820160405280156137b65781602001602082028036833780820191505090505b50905030816000815181106137ce576137cd614c6a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138979190614cae565b816001815181106138ab576138aa614c6a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613910307f0000000000000000000000000000000000000000000000000000000000000000846120ab565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613972959493929190614dd4565b600060405180830381600087803b15801561398c57600080fd5b505af11580156139a0573d6000803e3d6000fd5b505050505050565b6139d3307f0000000000000000000000000000000000000000000000000000000000000000846120ab565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613a5a96959493929190614e2e565b60606040518083038185885af1158015613a78573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a9d9190614ea4565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ade578082015181840152602081019050613ac3565b83811115613aed576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b0f82613aa4565b613b198185613aaf565b9350613b29818560208601613ac0565b613b3281613af3565b840191505092915050565b60006020820190508181036000830152613b578184613b04565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b8f82613b64565b9050919050565b613b9f81613b84565b8114613baa57600080fd5b50565b600081359050613bbc81613b96565b92915050565b6000819050919050565b613bd581613bc2565b8114613be057600080fd5b50565b600081359050613bf281613bcc565b92915050565b60008060408385031215613c0f57613c0e613b5f565b5b6000613c1d85828601613bad565b9250506020613c2e85828601613be3565b9150509250929050565b60008115159050919050565b613c4d81613c38565b82525050565b6000602082019050613c686000830184613c44565b92915050565b613c7781613bc2565b82525050565b6000602082019050613c926000830184613c6e565b92915050565b600060208284031215613cae57613cad613b5f565b5b6000613cbc84828501613bad565b91505092915050565b6000819050919050565b6000613cea613ce5613ce084613b64565b613cc5565b613b64565b9050919050565b6000613cfc82613ccf565b9050919050565b6000613d0e82613cf1565b9050919050565b613d1e81613d03565b82525050565b6000602082019050613d396000830184613d15565b92915050565b600060208284031215613d5557613d54613b5f565b5b6000613d6384828501613be3565b91505092915050565b600080600060608486031215613d8557613d84613b5f565b5b6000613d9386828701613bad565b9350506020613da486828701613bad565b9250506040613db586828701613be3565b9150509250925092565b613dc881613b84565b82525050565b6000602082019050613de36000830184613dbf565b92915050565b60008060008060808587031215613e0357613e02613b5f565b5b6000613e1187828801613be3565b9450506020613e2287828801613be3565b9350506040613e3387828801613be3565b9250506060613e4487828801613be3565b91505092959194509250565b600060ff82169050919050565b613e6681613e50565b82525050565b6000602082019050613e816000830184613e5d565b92915050565b613e9081613c38565b8114613e9b57600080fd5b50565b600081359050613ead81613e87565b92915050565b60008060408385031215613eca57613ec9613b5f565b5b6000613ed885828601613bad565b9250506020613ee985828601613e9e565b9150509250929050565b600060208284031215613f0957613f08613b5f565b5b6000613f1784828501613e9e565b91505092915050565b60008060408385031215613f3757613f36613b5f565b5b6000613f4585828601613bad565b9250506020613f5685828601613bad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fa757607f821691505b60208210811415613fbb57613fba613f60565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ff7602083613aaf565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061406782613bc2565b915061407283613bc2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ab576140aa61402d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140f082613bc2565b91506140fb83613bc2565b92508261410b5761410a6140b6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614172602f83613aaf565b915061417d82614116565b604082019050919050565b600060208201905081810360008301526141a181614165565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614204602883613aaf565b915061420f826141a8565b604082019050919050565b60006020820190508181036000830152614233816141f7565b9050919050565b600061424582613bc2565b915061425083613bc2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142855761428461402d565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142ec603983613aaf565b91506142f782614290565b604082019050919050565b6000602082019050818103600083015261431b816142df565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061437e602583613aaf565b915061438982614322565b604082019050919050565b600060208201905081810360008301526143ad81614371565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614410602483613aaf565b915061441b826143b4565b604082019050919050565b6000602082019050818103600083015261443f81614403565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144a2603583613aaf565b91506144ad82614446565b604082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614534603483613aaf565b915061453f826144d8565b604082019050919050565b6000602082019050818103600083015261456381614527565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145c6602683613aaf565b91506145d18261456a565b604082019050919050565b600060208201905081810360008301526145f5816145b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614658602483613aaf565b9150614663826145fc565b604082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ea602283613aaf565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061477c602583613aaf565b915061478782614720565b604082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061480e602383613aaf565b9150614819826147b2565b604082019050919050565b6000602082019050818103600083015261483d81614801565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061487a601683613aaf565b915061488582614844565b602082019050919050565b600060208201905081810360008301526148a98161486d565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614932604983613aaf565b915061493d826148b0565b606082019050919050565b6000602082019050818103600083015261496181614925565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006149c4603583613aaf565b91506149cf82614968565b604082019050919050565b600060208201905081810360008301526149f3816149b7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a30601383613aaf565b9150614a3b826149fa565b602082019050919050565b60006020820190508181036000830152614a5f81614a23565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614ac2603683613aaf565b9150614acd82614a66565b604082019050919050565b60006020820190508181036000830152614af181614ab5565b9050919050565b6000614b0382613bc2565b9150614b0e83613bc2565b925082821015614b2157614b2061402d565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b88602683613aaf565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b600081905092915050565b50565b6000614bd9600083614bbe565b9150614be482614bc9565b600082019050919050565b6000614bfa82614bcc565b9150819050919050565b6000606082019050614c196000830186613c6e565b614c266020830185613c6e565b614c336040830184613c6e565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ca881613b96565b92915050565b600060208284031215614cc457614cc3613b5f565b5b6000614cd284828501614c99565b91505092915050565b6000819050919050565b6000614d00614cfb614cf684614cdb565b613cc5565b613bc2565b9050919050565b614d1081614ce5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d4b81613b84565b82525050565b6000614d5d8383614d42565b60208301905092915050565b6000602082019050919050565b6000614d8182614d16565b614d8b8185614d21565b9350614d9683614d32565b8060005b83811015614dc7578151614dae8882614d51565b9750614db983614d69565b925050600181019050614d9a565b5085935050505092915050565b600060a082019050614de96000830188613c6e565b614df66020830187614d07565b8181036040830152614e088186614d76565b9050614e176060830185613dbf565b614e246080830184613c6e565b9695505050505050565b600060c082019050614e436000830189613dbf565b614e506020830188613c6e565b614e5d6040830187614d07565b614e6a6060830186614d07565b614e776080830185613dbf565b614e8460a0830184613c6e565b979650505050505050565b600081519050614e9e81613bcc565b92915050565b600080600060608486031215614ebd57614ebc613b5f565b5b6000614ecb86828701614e8f565b9350506020614edc86828701614e8f565b9250506040614eed86828701614e8f565b915050925092509256fea2646970667358221220d6c556203f9584d8eccdac4498aa7204231ab960fd65c03c4db5940838175d0c64736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613b3d565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613bf8565b610e01565b6040516103da9190613c53565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613c7d565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613c98565b610e25565b6040516104429190613c53565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613d24565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613c7d565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613c7d565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613c7d565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613d3f565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613d6c565b610f8e565b6040516105549190613c53565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613dce565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613de9565b61108c565b005b3480156105bd57600080fd5b506105c661115a565b6040516105d39190613e6c565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613bf8565b611163565b6040516106109190613c53565b60405180910390f35b34801561062557600080fd5b5061062e61120f565b60405161063b9190613c7d565b60405180910390f35b34801561065057600080fd5b50610659611215565b6040516106669190613dce565b60405180910390f35b34801561067b57600080fd5b50610684611239565b6040516106919190613c53565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613c98565b61124c565b6040516106ce9190613c53565b60405180910390f35b3480156106e357600080fd5b506106ec6112a2565b6040516106f99190613c7d565b60405180910390f35b34801561070e57600080fd5b506107176112a8565b6040516107249190613c53565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613c98565b6112bb565b6040516107619190613c7d565b60405180910390f35b34801561077657600080fd5b5061077f611303565b005b34801561078d57600080fd5b5061079661138b565b6040516107a39190613c53565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613eb3565b61142b565b005b3480156107e157600080fd5b506107ea611502565b6040516107f79190613dce565b60405180910390f35b34801561080c57600080fd5b50610815611528565b6040516108229190613dce565b60405180910390f35b34801561083757600080fd5b5061084061154e565b60405161084d9190613c7d565b60405180910390f35b34801561086257600080fd5b5061086b611554565b005b34801561087957600080fd5b50610882611608565b60405161088f9190613dce565b60405180910390f35b3480156108a457600080fd5b506108ad611632565b6040516108ba9190613dce565b60405180910390f35b3480156108cf57600080fd5b506108d8611658565b6040516108e59190613c7d565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613ef3565b61165e565b005b34801561092357600080fd5b5061092c6116f7565b6040516109399190613b3d565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613eb3565b611789565b005b34801561097757600080fd5b506109806118a2565b60405161098d9190613c7d565b60405180910390f35b3480156109a257600080fd5b506109ab6118a8565b6040516109b89190613c7d565b60405180910390f35b3480156109cd57600080fd5b506109d66118ae565b6040516109e39190613c7d565b60405180910390f35b3480156109f857600080fd5b50610a016118b4565b604051610a0e9190613c7d565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613bf8565b6118ba565b604051610a4b9190613c53565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613bf8565b6119a5565b604051610a889190613c53565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613c98565b6119c3565b604051610ac59190613c53565b60405180910390f35b348015610ada57600080fd5b50610ae36119e3565b604051610af09190613c53565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613eb3565b6119f6565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613d3f565b611b1b565b005b348015610b5757600080fd5b50610b60611c2a565b604051610b6d9190613c53565b60405180910390f35b348015610b8257600080fd5b50610b8b611c3d565b604051610b989190613c7d565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613d3f565b611c43565b604051610bd59190613c53565b60405180910390f35b348015610bea57600080fd5b50610bf3611d98565b604051610c009190613c7d565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613f20565b611d9e565b604051610c3d9190613c7d565b60405180910390f35b348015610c5257600080fd5b50610c5b611e25565b604051610c689190613c7d565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613de9565b611e2b565b005b348015610ca657600080fd5b50610caf611ef9565b604051610cbc9190613c53565b60405180910390f35b348015610cd157600080fd5b50610cda611f99565b604051610ce79190613c7d565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613c98565b611f9f565b005b348015610d2557600080fd5b50610d2e612097565b604051610d3b9190613c7d565b60405180910390f35b348015610d5057600080fd5b50610d5961209d565b604051610d669190613c7d565b60405180910390f35b606060038054610d7e90613f8f565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90613f8f565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e6120a3565b84846120ab565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e876120a3565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611608565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef29061400d565b60405180910390fd5b670de0b6b3a76400006103e86005610f11610e69565b610f1b919061405c565b610f2591906140e5565b610f2f91906140e5565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614188565b60405180910390fd5b670de0b6b3a764000081610f85919061405c565b60098190555050565b6000610f9b848484612276565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe66120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d9061421a565b60405180910390fd5b61107a856110726120a3565b8584036120ab565b60019150509392505050565b61dead81565b6110946120a3565b73ffffffffffffffffffffffffffffffffffffffff166110b2611608565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff9061400d565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461113a919061423a565b611144919061423a565b61114e919061423a565b600f8190555050505050565b60006012905090565b60006112056111706120a3565b84846001600061117e6120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611200919061423a565b6120ab565b6001905092915050565b60195481565b7f000000000000000000000000f30def08b77aeb6047115003c7b334f0e4dad95a81565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61130b6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611329611608565b73ffffffffffffffffffffffffffffffffffffffff161461137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061400d565b60405180910390fd5b6113896000612f76565b565b60006113956120a3565b73ffffffffffffffffffffffffffffffffffffffff166113b3611608565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114009061400d565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6114336120a3565b73ffffffffffffffffffffffffffffffffffffffff16611451611608565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e9061400d565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b61155c6120a3565b73ffffffffffffffffffffffffffffffffffffffff1661157a611608565b73ffffffffffffffffffffffffffffffffffffffff16146115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c79061400d565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116666120a3565b73ffffffffffffffffffffffffffffffffffffffff16611684611608565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d19061400d565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461170690613f8f565b80601f016020809104026020016040519081016040528092919081815260200182805461173290613f8f565b801561177f5780601f106117545761010080835404028352916020019161177f565b820191906000526020600020905b81548152906001019060200180831161176257829003601f168201915b5050505050905090565b6117916120a3565b73ffffffffffffffffffffffffffffffffffffffff166117af611608565b73ffffffffffffffffffffffffffffffffffffffff1614611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061400d565b60405180910390fd5b7f000000000000000000000000f30def08b77aeb6047115003c7b334f0e4dad95a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614302565b60405180910390fd5b61189e828261303c565b5050565b60135481565b601c5481565b60185481565b60105481565b600080600160006118c96120a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614394565b60405180910390fd5b61199a6119916120a3565b858584036120ab565b600191505092915050565b60006119b96119b26120a3565b8484612276565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6119fe6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611a1c611608565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a699061400d565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b0f9190613c53565b60405180910390a25050565b611b236120a3565b73ffffffffffffffffffffffffffffffffffffffff16611b41611608565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e9061400d565b60405180910390fd5b670de0b6b3a76400006103e86005611bad610e69565b611bb7919061405c565b611bc191906140e5565b611bcb91906140e5565b811015611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0490614426565b60405180910390fd5b670de0b6b3a764000081611c21919061405c565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611c4d6120a3565b73ffffffffffffffffffffffffffffffffffffffff16611c6b611608565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb89061400d565b60405180910390fd5b620186a06001611ccf610e69565b611cd9919061405c565b611ce391906140e5565b821015611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c906144b8565b60405180910390fd5b6103e86005611d32610e69565b611d3c919061405c565b611d4691906140e5565b821115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f9061454a565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e336120a3565b73ffffffffffffffffffffffffffffffffffffffff16611e51611608565b73ffffffffffffffffffffffffffffffffffffffff1614611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e9061400d565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611ed9919061423a565b611ee3919061423a565b611eed919061423a565b60148190555050505050565b6000611f036120a3565b73ffffffffffffffffffffffffffffffffffffffff16611f21611608565b73ffffffffffffffffffffffffffffffffffffffff1614611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e9061400d565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611fa76120a3565b73ffffffffffffffffffffffffffffffffffffffff16611fc5611608565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120129061400d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612082906145dc565b60405180910390fd5b61209481612f76565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561211b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121129061466e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218290614700565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122699190613c7d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90614824565b60405180910390fd5b60008114156123705761236b838360006130dd565b612f71565b600c60009054906101000a900460ff1615612a335761238d611608565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123fb57506123cb611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124345750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561246e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124875750600560149054906101000a900460ff16155b15612a3257600c60019054906101000a900460ff1661258157601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125415750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257790614890565b60405180910390fd5b5b600e60009054906101000a900460ff16156127495761259e611608565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561262557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561267d57507f000000000000000000000000f30def08b77aeb6047115003c7b334f0e4dad95a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127485743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa90614948565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127ec5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561289357600954811115612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d906149da565b60405180910390fd5b600b54612842836112bb565b8261284d919061423a565b111561288e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288590614a46565b60405180910390fd5b612a31565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129365750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561298557600954811115612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297790614ad8565b60405180910390fd5b612a30565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612a2f57600b546129e2836112bb565b826129ed919061423a565b1115612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590614a46565b60405180910390fd5b5b5b5b5b5b6000612a3e306112bb565b90506000600a548210159050808015612a635750600c60029054906101000a900460ff165b8015612a7c5750600560149054906101000a900460ff16155b8015612ad25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b285750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612b7e5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bc2576001600560146101000a81548160ff021916908315150217905550612ba661335e565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c785750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c8257600090505b60008115612f6157601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce557506000601454115b15612de557612d126064612d046014548861371f90919063ffffffff16565b61373590919063ffffffff16565b905060145460155482612d25919061405c565b612d2f91906140e5565b60196000828254612d40919061423a565b9250508190555060145460175482612d58919061405c565b612d6291906140e5565b601b6000828254612d73919061423a565b9250508190555060145460185482612d8b919061405c565b612d9591906140e5565b601c6000828254612da6919061423a565b9250508190555060145460165482612dbe919061405c565b612dc891906140e5565b601a6000828254612dd9919061423a565b92505081905550612f3d565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e4057506000600f54115b15612f3c57612e6d6064612e5f600f548861371f90919063ffffffff16565b61373590919063ffffffff16565b9050600f5460105482612e80919061405c565b612e8a91906140e5565b60196000828254612e9b919061423a565b92505081905550600f5460125482612eb3919061405c565b612ebd91906140e5565b601b6000828254612ece919061423a565b92505081905550600f5460135482612ee6919061405c565b612ef091906140e5565b601c6000828254612f01919061423a565b92505081905550600f5460115482612f19919061405c565b612f2391906140e5565b601a6000828254612f34919061423a565b925050819055505b5b6000811115612f5257612f518730836130dd565b5b8085612f5e9190614af8565b94505b612f6c8787876130dd565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561314d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314490614792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b490614824565b60405180910390fd5b6131c883838361374b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324590614b9e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132e1919061423a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133459190613c7d565b60405180910390a3613358848484613750565b50505050565b6000613369306112bb565b90506000601c54601a54601b54601954613383919061423a565b61338d919061423a565b613397919061423a565b90506000808314806133a95750600082145b156133b65750505061371d565b6014600a546133c5919061405c565b8311156133de576014600a546133db919061405c565b92505b6000600283601b54866133f1919061405c565b6133fb91906140e5565b61340591906140e5565b9050600061341c828661375590919063ffffffff16565b9050600047905061342c8261376b565b6000613441824761375590919063ffffffff16565b9050600061346c8761345e6019548561371f90919063ffffffff16565b61373590919063ffffffff16565b9050600061349788613489601a548661371f90919063ffffffff16565b61373590919063ffffffff16565b905060006134c2896134b4601c548761371f90919063ffffffff16565b61373590919063ffffffff16565b90506000818385876134d49190614af8565b6134de9190614af8565b6134e89190614af8565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161355090614bef565b60006040518083038185875af1925050503d806000811461358d576040519150601f19603f3d011682016040523d82523d6000602084013e613592565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516135de90614bef565b60006040518083038185875af1925050503d806000811461361b576040519150601f19603f3d011682016040523d82523d6000602084013e613620565b606091505b5050809950506000881180156136365750600081115b156136835761364588826139a8565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161367a93929190614c04565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136c990614bef565b60006040518083038185875af1925050503d8060008114613706576040519150601f19603f3d011682016040523d82523d6000602084013e61370b565b606091505b50508099505050505050505050505050505b565b6000818361372d919061405c565b905092915050565b6000818361374391906140e5565b905092915050565b505050565b505050565b600081836137639190614af8565b905092915050565b6000600267ffffffffffffffff81111561378857613787614c3b565b5b6040519080825280602002602001820160405280156137b65781602001602082028036833780820191505090505b50905030816000815181106137ce576137cd614c6a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613873573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138979190614cae565b816001815181106138ab576138aa614c6a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613910307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120ab565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613972959493929190614dd4565b600060405180830381600087803b15801561398c57600080fd5b505af11580156139a0573d6000803e3d6000fd5b505050505050565b6139d3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846120ab565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613a5a96959493929190614e2e565b60606040518083038185885af1158015613a78573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613a9d9190614ea4565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ade578082015181840152602081019050613ac3565b83811115613aed576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b0f82613aa4565b613b198185613aaf565b9350613b29818560208601613ac0565b613b3281613af3565b840191505092915050565b60006020820190508181036000830152613b578184613b04565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b8f82613b64565b9050919050565b613b9f81613b84565b8114613baa57600080fd5b50565b600081359050613bbc81613b96565b92915050565b6000819050919050565b613bd581613bc2565b8114613be057600080fd5b50565b600081359050613bf281613bcc565b92915050565b60008060408385031215613c0f57613c0e613b5f565b5b6000613c1d85828601613bad565b9250506020613c2e85828601613be3565b9150509250929050565b60008115159050919050565b613c4d81613c38565b82525050565b6000602082019050613c686000830184613c44565b92915050565b613c7781613bc2565b82525050565b6000602082019050613c926000830184613c6e565b92915050565b600060208284031215613cae57613cad613b5f565b5b6000613cbc84828501613bad565b91505092915050565b6000819050919050565b6000613cea613ce5613ce084613b64565b613cc5565b613b64565b9050919050565b6000613cfc82613ccf565b9050919050565b6000613d0e82613cf1565b9050919050565b613d1e81613d03565b82525050565b6000602082019050613d396000830184613d15565b92915050565b600060208284031215613d5557613d54613b5f565b5b6000613d6384828501613be3565b91505092915050565b600080600060608486031215613d8557613d84613b5f565b5b6000613d9386828701613bad565b9350506020613da486828701613bad565b9250506040613db586828701613be3565b9150509250925092565b613dc881613b84565b82525050565b6000602082019050613de36000830184613dbf565b92915050565b60008060008060808587031215613e0357613e02613b5f565b5b6000613e1187828801613be3565b9450506020613e2287828801613be3565b9350506040613e3387828801613be3565b9250506060613e4487828801613be3565b91505092959194509250565b600060ff82169050919050565b613e6681613e50565b82525050565b6000602082019050613e816000830184613e5d565b92915050565b613e9081613c38565b8114613e9b57600080fd5b50565b600081359050613ead81613e87565b92915050565b60008060408385031215613eca57613ec9613b5f565b5b6000613ed885828601613bad565b9250506020613ee985828601613e9e565b9150509250929050565b600060208284031215613f0957613f08613b5f565b5b6000613f1784828501613e9e565b91505092915050565b60008060408385031215613f3757613f36613b5f565b5b6000613f4585828601613bad565b9250506020613f5685828601613bad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fa757607f821691505b60208210811415613fbb57613fba613f60565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ff7602083613aaf565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061406782613bc2565b915061407283613bc2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ab576140aa61402d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140f082613bc2565b91506140fb83613bc2565b92508261410b5761410a6140b6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614172602f83613aaf565b915061417d82614116565b604082019050919050565b600060208201905081810360008301526141a181614165565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614204602883613aaf565b915061420f826141a8565b604082019050919050565b60006020820190508181036000830152614233816141f7565b9050919050565b600061424582613bc2565b915061425083613bc2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142855761428461402d565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006142ec603983613aaf565b91506142f782614290565b604082019050919050565b6000602082019050818103600083015261431b816142df565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061437e602583613aaf565b915061438982614322565b604082019050919050565b600060208201905081810360008301526143ad81614371565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614410602483613aaf565b915061441b826143b4565b604082019050919050565b6000602082019050818103600083015261443f81614403565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144a2603583613aaf565b91506144ad82614446565b604082019050919050565b600060208201905081810360008301526144d181614495565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614534603483613aaf565b915061453f826144d8565b604082019050919050565b6000602082019050818103600083015261456381614527565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145c6602683613aaf565b91506145d18261456a565b604082019050919050565b600060208201905081810360008301526145f5816145b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614658602483613aaf565b9150614663826145fc565b604082019050919050565b600060208201905081810360008301526146878161464b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ea602283613aaf565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061477c602583613aaf565b915061478782614720565b604082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061480e602383613aaf565b9150614819826147b2565b604082019050919050565b6000602082019050818103600083015261483d81614801565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061487a601683613aaf565b915061488582614844565b602082019050919050565b600060208201905081810360008301526148a98161486d565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614932604983613aaf565b915061493d826148b0565b606082019050919050565b6000602082019050818103600083015261496181614925565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006149c4603583613aaf565b91506149cf82614968565b604082019050919050565b600060208201905081810360008301526149f3816149b7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614a30601383613aaf565b9150614a3b826149fa565b602082019050919050565b60006020820190508181036000830152614a5f81614a23565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614ac2603683613aaf565b9150614acd82614a66565b604082019050919050565b60006020820190508181036000830152614af181614ab5565b9050919050565b6000614b0382613bc2565b9150614b0e83613bc2565b925082821015614b2157614b2061402d565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614b88602683613aaf565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b600081905092915050565b50565b6000614bd9600083614bbe565b9150614be482614bc9565b600082019050919050565b6000614bfa82614bcc565b9150819050919050565b6000606082019050614c196000830186613c6e565b614c266020830185613c6e565b614c336040830184613c6e565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ca881613b96565b92915050565b600060208284031215614cc457614cc3613b5f565b5b6000614cd284828501614c99565b91505092915050565b6000819050919050565b6000614d00614cfb614cf684614cdb565b613cc5565b613bc2565b9050919050565b614d1081614ce5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d4b81613b84565b82525050565b6000614d5d8383614d42565b60208301905092915050565b6000602082019050919050565b6000614d8182614d16565b614d8b8185614d21565b9350614d9683614d32565b8060005b83811015614dc7578151614dae8882614d51565b9750614db983614d69565b925050600181019050614d9a565b5085935050505092915050565b600060a082019050614de96000830188613c6e565b614df66020830187614d07565b8181036040830152614e088186614d76565b9050614e176060830185613dbf565b614e246080830184613c6e565b9695505050505050565b600060c082019050614e436000830189613dbf565b614e506020830188613c6e565b614e5d6040830187614d07565b614e6a6060830186614d07565b614e776080830185613dbf565b614e8460a0830184613c6e565b979650505050505050565b600081519050614e9e81613bcc565b92915050565b600080600060608486031215614ebd57614ebc613b5f565b5b6000614ecb86828701614e8f565b9350506020614edc86828701614e8f565b9250506040614eed86828701614e8f565b915050925092509256fea2646970667358221220d6c556203f9584d8eccdac4498aa7204231ab960fd65c03c4db5940838175d0c64736f6c634300080a0033

Deployed Bytecode Sourcemap

32689:16326:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9617:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11784:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33736:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34173:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32773:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10737:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33957:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33917;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38567:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12435:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32876:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39486:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10579:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13336:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33879:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32831:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33185:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41019:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33704:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33265:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10908:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2852:103;;;;;;;;;;;;;:::i;:::-;;37675:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39115:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33000:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32965:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33597:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37511:112;;;;;;;;;;;;;:::i;:::-;;2201:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33037:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33772:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39378:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9836:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40511:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33671:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33997:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33848:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33562:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14054:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11248:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34394:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33225:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40321:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38850:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33483:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33070:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38062:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33531:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11486:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33112:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39899:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37857:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33634:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3110:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33810:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33152:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9617:100;9671:13;9704:5;9697:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9617:100;:::o;11784:169::-;11867:4;11884:39;11893:12;:10;:12::i;:::-;11907:7;11916:6;11884:8;:39::i;:::-;11941:4;11934:11;;11784:169;;;;:::o;33736:29::-;;;;:::o;34173:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32773:51::-;;;:::o;10737:108::-;10798:7;10825:12;;10818:19;;10737:108;:::o;33957:33::-;;;;:::o;33917:::-;;;;:::o;38567:275::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38704:4:::1;38696;38691:1;38675:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38674:26;;;;:::i;:::-;38673:35;;;;:::i;:::-;38663:6;:45;;38641:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38827:6;38817;:17;;;;:::i;:::-;38794:20;:40;;;;38567:275:::0;:::o;12435:492::-;12575:4;12592:36;12602:6;12610:9;12621:6;12592:9;:36::i;:::-;12641:24;12668:11;:19;12680:6;12668:19;;;;;;;;;;;;;;;:33;12688:12;:10;:12::i;:::-;12668:33;;;;;;;;;;;;;;;;12641:60;;12740:6;12720:16;:26;;12712:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12827:57;12836:6;12844:12;:10;:12::i;:::-;12877:6;12858:16;:25;12827:8;:57::i;:::-;12915:4;12908:11;;;12435:492;;;;;:::o;32876:53::-;32922:6;32876:53;:::o;39486:405::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39670:11:::1;39654:13;:27;;;;39710:13;39692:15;:31;;;;39752:13;39734:15;:31;;;;39788:7;39776:9;:19;;;;39873:9;;39855:15;;39837;;39821:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39806:12;:76;;;;39486:405:::0;;;;:::o;10579:93::-;10637:5;10662:2;10655:9;;10579:93;:::o;13336:215::-;13424:4;13441:80;13450:12;:10;:12::i;:::-;13464:7;13510:10;13473:11;:25;13485:12;:10;:12::i;:::-;13473:25;;;;;;;;;;;;;;;:34;13499:7;13473:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13441:8;:80::i;:::-;13539:4;13532:11;;13336:215;;;;:::o;33879:31::-;;;;:::o;32831:38::-;;;:::o;33185:33::-;;;;;;;;;;;;;:::o;41019:126::-;41085:4;41109:19;:28;41129:7;41109:28;;;;;;;;;;;;;;;;;;;;;;;;;41102:35;;41019:126;;;:::o;33704:28::-;;;;:::o;33265:31::-;;;;;;;;;;;;;:::o;10908:127::-;10982:7;11009:9;:18;11019:7;11009:18;;;;;;;;;;;;;;;;11002:25;;10908:127;;;:::o;2852:103::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2917:30:::1;2944:1;2917:18;:30::i;:::-;2852:103::o:0;37675:121::-;37727:4;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37761:5:::1;37744:14;;:22;;;;;;;;;;;;;;;;;;37784:4;37777:11;;37675:121:::0;:::o;39115:167::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39270:4:::1;39228:31;:39;39260:6;39228:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39115:167:::0;;:::o;33000:30::-;;;;;;;;;;;;;:::o;32965:28::-;;;;;;;;;;;;;:::o;33597:30::-;;;;:::o;37511:112::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37582:4:::1;37566:13;;:20;;;;;;;;;;;;;;;;;;37611:4;37597:11;;:18;;;;;;;;;;;;;;;;;;37511:112::o:0;2201:87::-;2247:7;2274:6;;;;;;;;;;;2267:13;;2201:87;:::o;33037:24::-;;;;;;;;;;;;;:::o;33772:31::-;;;;:::o;39378:100::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39463:7:::1;39449:11;;:21;;;;;;;;;;;;;;;;;;39378:100:::0;:::o;9836:104::-;9892:13;9925:7;9918:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9836:104;:::o;40511:304::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40655:13:::1;40647:21;;:4;:21;;;;40625:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40766:41;40795:4;40801:5;40766:28;:41::i;:::-;40511:304:::0;;:::o;33671:24::-;;;;:::o;33997:27::-;;;;:::o;33848:25::-;;;;:::o;33562:28::-;;;;:::o;14054:413::-;14147:4;14164:24;14191:11;:25;14203:12;:10;:12::i;:::-;14191:25;;;;;;;;;;;;;;;:34;14217:7;14191:34;;;;;;;;;;;;;;;;14164:61;;14264:15;14244:16;:35;;14236:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14357:67;14366:12;:10;:12::i;:::-;14380:7;14408:15;14389:16;:34;14357:8;:67::i;:::-;14455:4;14448:11;;;14054:413;;;;:::o;11248:175::-;11334:4;11351:42;11361:12;:10;:12::i;:::-;11375:9;11386:6;11351:9;:42::i;:::-;11411:4;11404:11;;11248:175;;;;:::o;34394:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33225:33::-;;;;;;;;;;;;;:::o;40321:182::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40437:8:::1;40406:19;:28;40426:7;40406:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40477:7;40461:34;;;40486:8;40461:34;;;;;;:::i;:::-;;;;;;;;40321:182:::0;;:::o;38850:256::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38990:4:::1;38982;38977:1;38961:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38960:26;;;;:::i;:::-;38959:35;;;;:::i;:::-;38949:6;:45;;38927:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39091:6;39081;:17;;;;:::i;:::-;39069:9;:29;;;;38850:256:::0;:::o;33483:39::-;;;;;;;;;;;;;:::o;33070:35::-;;;;:::o;38062:497::-;38170:4;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38249:6:::1;38244:1;38228:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38227:28;;;;:::i;:::-;38214:9;:41;;38192:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38404:4;38399:1;38383:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38382:26;;;;:::i;:::-;38369:9;:39;;38347:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38520:9;38499:18;:30;;;;38547:4;38540:11;;38062:497:::0;;;:::o;33531:27::-;;;;:::o;11486:151::-;11575:7;11602:11;:18;11614:5;11602:18;;;;;;;;;;;;;;;:27;11621:7;11602:27;;;;;;;;;;;;;;;;11595:34;;11486:151;;;;:::o;33112:33::-;;;;:::o;39899:414::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40085:11:::1;40068:14;:28;;;;40126:13;40107:16;:32;;;;40169:13;40150:16;:32;;;;40206:7;40193:10;:20;;;;40295:10;;40276:16;;40257;;40240:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40224:13;:81;;;;39899:414:::0;;;;:::o;37857:135::-;37917:4;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37957:5:::1;37934:20;;:28;;;;;;;;;;;;;;;;;;37980:4;37973:11;;37857:135:::0;:::o;33634:30::-;;;;:::o;3110:201::-;2432:12;:10;:12::i;:::-;2421:23;;:7;:5;:7::i;:::-;:23;;;2413:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3219:1:::1;3199:22;;:8;:22;;;;3191:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3275:28;3294:8;3275:18;:28::i;:::-;3110:201:::0;:::o;33810:31::-;;;;:::o;33152:24::-;;;;:::o;874:98::-;927:7;954:10;947:17;;874:98;:::o;17738:380::-;17891:1;17874:19;;:5;:19;;;;17866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17972:1;17953:21;;:7;:21;;;;17945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18056:6;18026:11;:18;18038:5;18026:18;;;;;;;;;;;;;;;:27;18045:7;18026:27;;;;;;;;;;;;;;;:36;;;;18094:7;18078:32;;18087:5;18078:32;;;18103:6;18078:32;;;;;;:::i;:::-;;;;;;;;17738:380;;;:::o;41153:4847::-;41301:1;41285:18;;:4;:18;;;;41277:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41378:1;41364:16;;:2;:16;;;;41356:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41447:1;41437:6;:11;41433:93;;;41465:28;41481:4;41487:2;41491:1;41465:15;:28::i;:::-;41508:7;;41433:93;41542:14;;;;;;;;;;;41538:2487;;;41603:7;:5;:7::i;:::-;41595:15;;:4;:15;;;;:49;;;;;41637:7;:5;:7::i;:::-;41631:13;;:2;:13;;;;41595:49;:86;;;;;41679:1;41665:16;;:2;:16;;;;41595:86;:128;;;;;41716:6;41702:21;;:2;:21;;;;41595:128;:158;;;;;41745:8;;;;;;;;;;;41744:9;41595:158;41573:2441;;;41793:13;;;;;;;;;;;41788:223;;41865:19;:25;41885:4;41865:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41894:19;:23;41914:2;41894:23;;;;;;;;;;;;;;;;;;;;;;;;;41865:52;41831:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41788:223;42167:20;;;;;;;;;;;42163:641;;;42248:7;:5;:7::i;:::-;42242:13;;:2;:13;;;;:72;;;;;42298:15;42284:30;;:2;:30;;;;42242:72;:129;;;;;42357:13;42343:28;;:2;:28;;;;42242:129;42212:573;;;42535:12;42460:28;:39;42489:9;42460:39;;;;;;;;;;;;;;;;:87;42422:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42749:12;42707:28;:39;42736:9;42707:39;;;;;;;;;;;;;;;:54;;;;42212:573;42163:641;42878:25;:31;42904:4;42878:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42935:31;:35;42967:2;42935:35;;;;;;;;;;;;;;;;;;;;;;;;;42934:36;42878:92;42852:1147;;;43057:20;;43047:6;:30;;43013:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43265:9;;43248:13;43258:2;43248:9;:13::i;:::-;43239:6;:22;;;;:::i;:::-;:35;;43205:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42852:1147;;;43443:25;:29;43469:2;43443:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43498:31;:37;43530:4;43498:37;;;;;;;;;;;;;;;;;;;;;;;;;43497:38;43443:92;43417:582;;;43622:20;;43612:6;:30;;43578:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43417:582;;;43779:31;:35;43811:2;43779:35;;;;;;;;;;;;;;;;;;;;;;;;;43774:225;;43899:9;;43882:13;43892:2;43882:9;:13::i;:::-;43873:6;:22;;;;:::i;:::-;:35;;43839:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43774:225;43417:582;42852:1147;41573:2441;41538:2487;44037:28;44068:24;44086:4;44068:9;:24::i;:::-;44037:55;;44105:12;44144:18;;44120:20;:42;;44105:57;;44193:7;:35;;;;;44217:11;;;;;;;;;;;44193:35;:61;;;;;44246:8;;;;;;;;;;;44245:9;44193:61;:110;;;;;44272:25;:31;44298:4;44272:31;;;;;;;;;;;;;;;;;;;;;;;;;44271:32;44193:110;:153;;;;;44321:19;:25;44341:4;44321:25;;;;;;;;;;;;;;;;;;;;;;;;;44320:26;44193:153;:194;;;;;44364:19;:23;44384:2;44364:23;;;;;;;;;;;;;;;;;;;;;;;;;44363:24;44193:194;44175:326;;;44425:4;44414:8;;:15;;;;;;;;;;;;;;;;;;44446:10;:8;:10::i;:::-;44484:5;44473:8;;:16;;;;;;;;;;;;;;;;;;44175:326;44513:12;44529:8;;;;;;;;;;;44528:9;44513:24;;44639:19;:25;44659:4;44639:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44668:19;:23;44688:2;44668:23;;;;;;;;;;;;;;;;;;;;;;;;;44639:52;44635:100;;;44718:5;44708:15;;44635:100;44747:12;44852:7;44848:1099;;;44904:25;:29;44930:2;44904:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44953:1;44937:13;;:17;44904:50;44900:898;;;44982:34;45012:3;44982:25;44993:13;;44982:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44975:41;;45069:13;;45051:14;;45044:4;:21;;;;:::i;:::-;45043:39;;;;:::i;:::-;45023:16;;:59;;;;;;;:::i;:::-;;;;;;;;45151:13;;45131:16;;45124:4;:23;;;;:::i;:::-;45123:41;;;;:::i;:::-;45101:18;;:63;;;;;;;:::i;:::-;;;;;;;;45221:13;;45207:10;;45200:4;:17;;;;:::i;:::-;45199:35;;;;:::i;:::-;45183:12;;:51;;;;;;;:::i;:::-;;;;;;;;45303:13;;45283:16;;45276:4;:23;;;;:::i;:::-;45275:41;;;;:::i;:::-;45253:18;;:63;;;;;;;:::i;:::-;;;;;;;;44900:898;;;45378:25;:31;45404:4;45378:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45428:1;45413:12;;:16;45378:51;45374:424;;;45457:33;45486:3;45457:24;45468:12;;45457:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45450:40;;45542:12;;45525:13;;45518:4;:20;;;;:::i;:::-;45517:37;;;;:::i;:::-;45497:16;;:57;;;;;;;:::i;:::-;;;;;;;;45622:12;;45603:15;;45596:4;:22;;;;:::i;:::-;45595:39;;;;:::i;:::-;45573:18;;:61;;;;;;;:::i;:::-;;;;;;;;45690:12;;45677:9;;45670:4;:16;;;;:::i;:::-;45669:33;;;;:::i;:::-;45653:12;;:49;;;;;;;:::i;:::-;;;;;;;;45770:12;;45751:15;;45744:4;:22;;;;:::i;:::-;45743:39;;;;:::i;:::-;45721:18;;:61;;;;;;;:::i;:::-;;;;;;;;45374:424;44900:898;45825:1;45818:4;:8;45814:91;;;45847:42;45863:4;45877;45884;45847:15;:42::i;:::-;45814:91;45931:4;45921:14;;;;;:::i;:::-;;;44848:1099;45959:33;45975:4;45981:2;45985:6;45959:15;:33::i;:::-;41266:4734;;;;41153:4847;;;;:::o;3471:191::-;3545:16;3564:6;;;;;;;;;;;3545:25;;3590:8;3581:6;;:17;;;;;;;;;;;;;;;;;;3645:8;3614:40;;3635:8;3614:40;;;;;;;;;;;;3534:128;3471:191;:::o;40823:188::-;40940:5;40906:25;:31;40932:4;40906:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40997:5;40963:40;;40991:4;40963:40;;;;;;;;;;;;40823:188;;:::o;14957:733::-;15115:1;15097:20;;:6;:20;;;;15089:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15199:1;15178:23;;:9;:23;;;;15170:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15254:47;15275:6;15283:9;15294:6;15254:20;:47::i;:::-;15314:21;15338:9;:17;15348:6;15338:17;;;;;;;;;;;;;;;;15314:41;;15391:6;15374:13;:23;;15366:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15512:6;15496:13;:22;15476:9;:17;15486:6;15476:17;;;;;;;;;;;;;;;:42;;;;15564:6;15540:9;:20;15550:9;15540:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15605:9;15588:35;;15597:6;15588:35;;;15616:6;15588:35;;;;;;:::i;:::-;;;;;;;;15636:46;15656:6;15664:9;15675:6;15636:19;:46::i;:::-;15078:612;14957:733;;;:::o;47128:1882::-;47167:23;47193:24;47211:4;47193:9;:24::i;:::-;47167:50;;47228:25;47317:12;;47296:18;;47275;;47256:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47228:101;;47340:12;47388:1;47369:15;:20;:46;;;;47414:1;47393:17;:22;47369:46;47365:85;;;47432:7;;;;;47365:85;47505:2;47484:18;;:23;;;;:::i;:::-;47466:15;:41;47462:115;;;47563:2;47542:18;;:23;;;;:::i;:::-;47524:41;;47462:115;47638:23;47725:1;47705:17;47683:18;;47665:15;:36;;;;:::i;:::-;47664:58;;;;:::i;:::-;:62;;;;:::i;:::-;47638:88;;47737:26;47766:36;47786:15;47766;:19;;:36;;;;:::i;:::-;47737:65;;47815:25;47843:21;47815:49;;47877:36;47894:18;47877:16;:36::i;:::-;47926:18;47947:44;47973:17;47947:21;:25;;:44;;;;:::i;:::-;47926:65;;47998:21;48022:55;48059:17;48022:32;48037:16;;48022:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;47998:79;;48088:23;48114:57;48153:17;48114:34;48129:18;;48114:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48088:83;;48182:17;48202:51;48235:17;48202:28;48217:12;;48202:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48182:71;;48266:23;48339:9;48321:15;48305:13;48292:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48266:82;;48382:1;48361:18;:22;;;;48407:1;48388:16;:20;;;;48440:1;48419:18;:22;;;;48467:1;48452:12;:16;;;;48503:9;;;;;;;;;;;48495:23;;48526:9;48495:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48481:59;;;;;48573:15;;;;;;;;;;;48565:29;;48602:15;48565:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48551:71;;;;;48659:1;48641:15;:19;:42;;;;;48682:1;48664:15;:19;48641:42;48637:278;;;48700:46;48713:15;48730;48700:12;:46::i;:::-;48766:137;48799:18;48836:15;48870:18;;48766:137;;;;;;;;:::i;:::-;;;;;;;;48637:278;48949:13;;;;;;;;;;;48941:27;;48976:21;48941:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48927:75;;;;;47156:1854;;;;;;;;;;;47128:1882;:::o;23191:98::-;23249:7;23280:1;23276;:5;;;;:::i;:::-;23269:12;;23191:98;;;;:::o;23590:::-;23648:7;23679:1;23675;:5;;;;:::i;:::-;23668:12;;23590:98;;;;:::o;18718:125::-;;;;:::o;19447:124::-;;;;:::o;22834:98::-;22892:7;22923:1;22919;:5;;;;:::i;:::-;22912:12;;22834:98;;;;:::o;46008:589::-;46134:21;46172:1;46158:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46134:40;;46203:4;46185;46190:1;46185:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46229:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46219:4;46224:1;46219:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46264:62;46281:4;46296:15;46314:11;46264:8;:62::i;:::-;46365:15;:66;;;46446:11;46472:1;46516:4;46543;46563:15;46365:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46063:534;46008:589;:::o;46605:515::-;46753:62;46770:4;46785:15;46803:11;46753:8;:62::i;:::-;46858:15;:31;;;46897:9;46930:4;46950:11;46976:1;47019;47062:9;;;;;;;;;;;47086:15;46858:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46605:515;;:::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:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:244::-;14148:34;14144:1;14136:6;14132:14;14125:58;14217:27;14212:2;14204:6;14200:15;14193:52;14008:244;:::o;14258:366::-;14400:3;14421:67;14485:2;14480:3;14421:67;:::i;:::-;14414:74;;14497:93;14586:3;14497:93;:::i;:::-;14615:2;14610:3;14606:12;14599:19;;14258:366;;;:::o;14630:419::-;14796:4;14834:2;14823:9;14819:18;14811:26;;14883:9;14877:4;14873:20;14869:1;14858:9;14854:17;14847:47;14911:131;15037:4;14911:131;:::i;:::-;14903:139;;14630:419;;;:::o;15055:224::-;15195:34;15191:1;15183:6;15179:14;15172:58;15264:7;15259:2;15251:6;15247:15;15240:32;15055:224;:::o;15285:366::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:419::-;15823:4;15861:2;15850:9;15846:18;15838:26;;15910:9;15904:4;15900:20;15896:1;15885:9;15881:17;15874:47;15938:131;16064:4;15938:131;:::i;:::-;15930:139;;15657:419;;;:::o;16082:223::-;16222:34;16218:1;16210:6;16206:14;16199:58;16291:6;16286:2;16278:6;16274:15;16267:31;16082:223;:::o;16311:366::-;16453:3;16474:67;16538:2;16533:3;16474:67;:::i;:::-;16467:74;;16550:93;16639:3;16550:93;:::i;:::-;16668:2;16663:3;16659:12;16652:19;;16311:366;;;:::o;16683:419::-;16849:4;16887:2;16876:9;16872:18;16864:26;;16936:9;16930:4;16926:20;16922:1;16911:9;16907:17;16900:47;16964:131;17090:4;16964:131;:::i;:::-;16956:139;;16683:419;;;:::o;17108:240::-;17248:34;17244:1;17236:6;17232:14;17225:58;17317:23;17312:2;17304:6;17300:15;17293:48;17108:240;:::o;17354:366::-;17496:3;17517:67;17581:2;17576:3;17517:67;:::i;:::-;17510:74;;17593:93;17682:3;17593:93;:::i;:::-;17711:2;17706:3;17702:12;17695:19;;17354:366;;;:::o;17726:419::-;17892:4;17930:2;17919:9;17915:18;17907:26;;17979:9;17973:4;17969:20;17965:1;17954:9;17950:17;17943:47;18007:131;18133:4;18007:131;:::i;:::-;17999:139;;17726:419;;;:::o;18151:239::-;18291:34;18287:1;18279:6;18275:14;18268:58;18360:22;18355:2;18347:6;18343:15;18336:47;18151:239;:::o;18396:366::-;18538:3;18559:67;18623:2;18618:3;18559:67;:::i;:::-;18552:74;;18635:93;18724:3;18635:93;:::i;:::-;18753:2;18748:3;18744:12;18737:19;;18396:366;;;:::o;18768:419::-;18934:4;18972:2;18961:9;18957:18;18949:26;;19021:9;19015:4;19011:20;19007:1;18996:9;18992:17;18985:47;19049:131;19175:4;19049:131;:::i;:::-;19041:139;;18768:419;;;:::o;19193:225::-;19333:34;19329:1;19321:6;19317:14;19310:58;19402:8;19397:2;19389:6;19385:15;19378:33;19193:225;:::o;19424:366::-;19566:3;19587:67;19651:2;19646:3;19587:67;:::i;:::-;19580:74;;19663:93;19752:3;19663:93;:::i;:::-;19781:2;19776:3;19772:12;19765:19;;19424:366;;;:::o;19796:419::-;19962:4;20000:2;19989:9;19985:18;19977:26;;20049:9;20043:4;20039:20;20035:1;20024:9;20020:17;20013:47;20077:131;20203:4;20077:131;:::i;:::-;20069:139;;19796:419;;;:::o;20221:223::-;20361:34;20357:1;20349:6;20345:14;20338:58;20430:6;20425:2;20417:6;20413:15;20406:31;20221:223;:::o;20450:366::-;20592:3;20613:67;20677:2;20672:3;20613:67;:::i;:::-;20606:74;;20689:93;20778:3;20689:93;:::i;:::-;20807:2;20802:3;20798:12;20791:19;;20450:366;;;:::o;20822:419::-;20988:4;21026:2;21015:9;21011:18;21003:26;;21075:9;21069:4;21065:20;21061:1;21050:9;21046:17;21039:47;21103:131;21229:4;21103:131;:::i;:::-;21095:139;;20822:419;;;:::o;21247:221::-;21387:34;21383:1;21375:6;21371:14;21364:58;21456:4;21451:2;21443:6;21439:15;21432:29;21247:221;:::o;21474:366::-;21616:3;21637:67;21701:2;21696:3;21637:67;:::i;:::-;21630:74;;21713:93;21802:3;21713:93;:::i;:::-;21831:2;21826:3;21822:12;21815:19;;21474:366;;;:::o;21846:419::-;22012:4;22050:2;22039:9;22035:18;22027:26;;22099:9;22093:4;22089:20;22085:1;22074:9;22070:17;22063:47;22127:131;22253:4;22127:131;:::i;:::-;22119:139;;21846:419;;;:::o;22271:224::-;22411:34;22407:1;22399:6;22395:14;22388:58;22480:7;22475:2;22467:6;22463:15;22456:32;22271:224;:::o;22501:366::-;22643:3;22664:67;22728:2;22723:3;22664:67;:::i;:::-;22657:74;;22740:93;22829:3;22740:93;:::i;:::-;22858:2;22853:3;22849:12;22842:19;;22501:366;;;:::o;22873:419::-;23039:4;23077:2;23066:9;23062:18;23054:26;;23126:9;23120:4;23116:20;23112:1;23101:9;23097:17;23090:47;23154:131;23280:4;23154:131;:::i;:::-;23146:139;;22873:419;;;:::o;23298:222::-;23438:34;23434:1;23426:6;23422:14;23415:58;23507:5;23502:2;23494:6;23490:15;23483:30;23298:222;:::o;23526:366::-;23668:3;23689:67;23753:2;23748:3;23689:67;:::i;:::-;23682:74;;23765:93;23854:3;23765:93;:::i;:::-;23883:2;23878:3;23874:12;23867:19;;23526:366;;;:::o;23898:419::-;24064:4;24102:2;24091:9;24087:18;24079:26;;24151:9;24145:4;24141:20;24137:1;24126:9;24122:17;24115:47;24179:131;24305:4;24179:131;:::i;:::-;24171:139;;23898:419;;;:::o;24323:172::-;24463:24;24459:1;24451:6;24447:14;24440:48;24323:172;:::o;24501:366::-;24643:3;24664:67;24728:2;24723:3;24664:67;:::i;:::-;24657:74;;24740:93;24829:3;24740:93;:::i;:::-;24858:2;24853:3;24849:12;24842:19;;24501:366;;;:::o;24873:419::-;25039:4;25077:2;25066:9;25062:18;25054:26;;25126:9;25120:4;25116:20;25112:1;25101:9;25097:17;25090:47;25154:131;25280:4;25154:131;:::i;:::-;25146:139;;24873:419;;;:::o;25298:297::-;25438:34;25434:1;25426:6;25422:14;25415:58;25507:34;25502:2;25494:6;25490:15;25483:59;25576:11;25571:2;25563:6;25559:15;25552:36;25298:297;:::o;25601:366::-;25743:3;25764:67;25828:2;25823:3;25764:67;:::i;:::-;25757:74;;25840:93;25929:3;25840:93;:::i;:::-;25958:2;25953:3;25949:12;25942:19;;25601:366;;;:::o;25973:419::-;26139:4;26177:2;26166:9;26162:18;26154:26;;26226:9;26220:4;26216:20;26212:1;26201:9;26197:17;26190:47;26254:131;26380:4;26254:131;:::i;:::-;26246:139;;25973:419;;;:::o;26398:240::-;26538:34;26534:1;26526:6;26522:14;26515:58;26607:23;26602:2;26594:6;26590:15;26583:48;26398:240;:::o;26644:366::-;26786:3;26807:67;26871:2;26866:3;26807:67;:::i;:::-;26800:74;;26883:93;26972:3;26883:93;:::i;:::-;27001:2;26996:3;26992:12;26985:19;;26644:366;;;:::o;27016:419::-;27182:4;27220:2;27209:9;27205:18;27197:26;;27269:9;27263:4;27259:20;27255:1;27244:9;27240:17;27233:47;27297:131;27423:4;27297:131;:::i;:::-;27289:139;;27016:419;;;:::o;27441:169::-;27581:21;27577:1;27569:6;27565:14;27558:45;27441:169;:::o;27616:366::-;27758:3;27779:67;27843:2;27838:3;27779:67;:::i;:::-;27772:74;;27855:93;27944:3;27855:93;:::i;:::-;27973:2;27968:3;27964:12;27957:19;;27616:366;;;:::o;27988:419::-;28154:4;28192:2;28181:9;28177:18;28169:26;;28241:9;28235:4;28231:20;28227:1;28216:9;28212:17;28205:47;28269:131;28395:4;28269:131;:::i;:::-;28261:139;;27988:419;;;:::o;28413:241::-;28553:34;28549:1;28541:6;28537:14;28530:58;28622:24;28617:2;28609:6;28605:15;28598:49;28413:241;:::o;28660:366::-;28802:3;28823:67;28887:2;28882:3;28823:67;:::i;:::-;28816:74;;28899:93;28988:3;28899:93;:::i;:::-;29017:2;29012:3;29008:12;29001:19;;28660:366;;;:::o;29032:419::-;29198:4;29236:2;29225:9;29221:18;29213:26;;29285:9;29279:4;29275:20;29271:1;29260:9;29256:17;29249:47;29313:131;29439:4;29313:131;:::i;:::-;29305:139;;29032:419;;;:::o;29457:191::-;29497:4;29517:20;29535:1;29517:20;:::i;:::-;29512:25;;29551:20;29569:1;29551:20;:::i;:::-;29546:25;;29590:1;29587;29584:8;29581:34;;;29595:18;;:::i;:::-;29581:34;29640:1;29637;29633:9;29625:17;;29457:191;;;;:::o;29654:225::-;29794:34;29790:1;29782:6;29778:14;29771:58;29863:8;29858:2;29850:6;29846:15;29839:33;29654:225;:::o;29885:366::-;30027:3;30048:67;30112:2;30107:3;30048:67;:::i;:::-;30041:74;;30124:93;30213:3;30124:93;:::i;:::-;30242:2;30237:3;30233:12;30226:19;;29885:366;;;:::o;30257:419::-;30423:4;30461:2;30450:9;30446:18;30438:26;;30510:9;30504:4;30500:20;30496:1;30485:9;30481:17;30474:47;30538:131;30664:4;30538:131;:::i;:::-;30530:139;;30257:419;;;:::o;30682:147::-;30783:11;30820:3;30805:18;;30682:147;;;;:::o;30835:114::-;;:::o;30955:398::-;31114:3;31135:83;31216:1;31211:3;31135:83;:::i;:::-;31128:90;;31227:93;31316:3;31227:93;:::i;:::-;31345:1;31340:3;31336:11;31329:18;;30955:398;;;:::o;31359:379::-;31543:3;31565:147;31708:3;31565:147;:::i;:::-;31558:154;;31729:3;31722:10;;31359:379;;;:::o;31744:442::-;31893:4;31931:2;31920:9;31916:18;31908:26;;31944:71;32012:1;32001:9;31997:17;31988:6;31944:71;:::i;:::-;32025:72;32093:2;32082:9;32078:18;32069:6;32025:72;:::i;:::-;32107;32175:2;32164:9;32160:18;32151:6;32107:72;:::i;:::-;31744:442;;;;;;:::o;32192:180::-;32240:77;32237:1;32230:88;32337:4;32334:1;32327:15;32361:4;32358:1;32351:15;32378:180;32426:77;32423:1;32416:88;32523:4;32520:1;32513:15;32547:4;32544:1;32537:15;32564:143;32621:5;32652:6;32646:13;32637:22;;32668:33;32695:5;32668:33;:::i;:::-;32564:143;;;;:::o;32713:351::-;32783:6;32832:2;32820:9;32811:7;32807:23;32803:32;32800:119;;;32838:79;;:::i;:::-;32800:119;32958:1;32983:64;33039:7;33030:6;33019:9;33015:22;32983:64;:::i;:::-;32973:74;;32929:128;32713:351;;;;:::o;33070:85::-;33115:7;33144:5;33133:16;;33070:85;;;:::o;33161:158::-;33219:9;33252:61;33270:42;33279:32;33305:5;33279:32;:::i;:::-;33270:42;:::i;:::-;33252:61;:::i;:::-;33239:74;;33161:158;;;:::o;33325:147::-;33420:45;33459:5;33420:45;:::i;:::-;33415:3;33408:58;33325:147;;:::o;33478:114::-;33545:6;33579:5;33573:12;33563:22;;33478:114;;;:::o;33598:184::-;33697:11;33731:6;33726:3;33719:19;33771:4;33766:3;33762:14;33747:29;;33598:184;;;;:::o;33788:132::-;33855:4;33878:3;33870:11;;33908:4;33903:3;33899:14;33891:22;;33788:132;;;:::o;33926:108::-;34003:24;34021:5;34003:24;:::i;:::-;33998:3;33991:37;33926:108;;:::o;34040:179::-;34109:10;34130:46;34172:3;34164:6;34130:46;:::i;:::-;34208:4;34203:3;34199:14;34185:28;;34040:179;;;;:::o;34225:113::-;34295:4;34327;34322:3;34318:14;34310:22;;34225:113;;;:::o;34374:732::-;34493:3;34522:54;34570:5;34522:54;:::i;:::-;34592:86;34671:6;34666:3;34592:86;:::i;:::-;34585:93;;34702:56;34752:5;34702:56;:::i;:::-;34781:7;34812:1;34797:284;34822:6;34819:1;34816:13;34797:284;;;34898:6;34892:13;34925:63;34984:3;34969:13;34925:63;:::i;:::-;34918:70;;35011:60;35064:6;35011:60;:::i;:::-;35001:70;;34857:224;34844:1;34841;34837:9;34832:14;;34797:284;;;34801:14;35097:3;35090:10;;34498:608;;;34374:732;;;;:::o;35112:831::-;35375:4;35413:3;35402:9;35398:19;35390:27;;35427:71;35495:1;35484:9;35480:17;35471:6;35427:71;:::i;:::-;35508:80;35584:2;35573:9;35569:18;35560:6;35508:80;:::i;:::-;35635:9;35629:4;35625:20;35620:2;35609:9;35605:18;35598:48;35663:108;35766:4;35757:6;35663:108;:::i;:::-;35655:116;;35781:72;35849:2;35838:9;35834:18;35825:6;35781:72;:::i;:::-;35863:73;35931:3;35920:9;35916:19;35907:6;35863:73;:::i;:::-;35112:831;;;;;;;;:::o;35949:807::-;36198:4;36236:3;36225:9;36221:19;36213:27;;36250:71;36318:1;36307:9;36303:17;36294:6;36250:71;:::i;:::-;36331:72;36399:2;36388:9;36384:18;36375:6;36331:72;:::i;:::-;36413:80;36489:2;36478:9;36474:18;36465:6;36413:80;:::i;:::-;36503;36579:2;36568:9;36564:18;36555:6;36503:80;:::i;:::-;36593:73;36661:3;36650:9;36646:19;36637:6;36593:73;:::i;:::-;36676;36744:3;36733:9;36729:19;36720:6;36676:73;:::i;:::-;35949:807;;;;;;;;;:::o;36762:143::-;36819:5;36850:6;36844:13;36835:22;;36866:33;36893:5;36866:33;:::i;:::-;36762:143;;;;:::o;36911:663::-;36999:6;37007;37015;37064:2;37052:9;37043:7;37039:23;37035:32;37032:119;;;37070:79;;:::i;:::-;37032:119;37190:1;37215:64;37271:7;37262:6;37251:9;37247:22;37215:64;:::i;:::-;37205:74;;37161:128;37328:2;37354:64;37410:7;37401:6;37390:9;37386:22;37354:64;:::i;:::-;37344:74;;37299:129;37467:2;37493:64;37549:7;37540:6;37529:9;37525:22;37493:64;:::i;:::-;37483:74;;37438:129;36911:663;;;;;:::o

Swarm Source

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