ETH Price: $3,115.92 (+1.55%)
Gas: 14 Gwei

Token

PokeAI (PokeAI)
 

Overview

Max Total Supply

1,000,000,000 PokeAI

Holders

244

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
remembertofinishonthebachneverfinishondebussy.eth
Balance
2,891,868.482380438849862656 PokeAI

Value
$0.00
0x6761c6a415658f680b386474CF04de493b33f6bB
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:
PokeAi

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-11
*/

// SPDX-License-Identifier: MIT
/**
DESIGED FOR POKE AI    
LOW TAX                
REWARDS @ EACH SWAP    
AIRDROP FOR TESTERS    
ANTIBOT MECHANISM      
*/
pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract PokeAi 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 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 = false;

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

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

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("PokeAI", "PokeAI") {
        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 _buyLiquidityFee = 2;
        uint256 _buyMarketingFee = 2;

        uint256 _sellLiquidityFee = 2;
        uint256 _sellMarketingFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 50_000_000 * 1e18; // 1,5% from total supply
        maxWallet = 500_000_000 * 1e18; // 5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 100; // 0.4% swap wallet

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

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

        devWallet = address(0xA69B2a6327bf39322C62897DdE34EbE4B050671c); // 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() * 8) / 1000,
            "Swap amount cannot be higher than 0.8% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _MarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 10, "Buy Fee");
    }

    function updateSellFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;
    }

    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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    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] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks 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);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (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
            owner(),
            block.timestamp
        );
    }

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

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

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

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600681526020017f506f6b65414900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f506f6b654149000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000a94565b5080600490805190602001906200011b92919062000a94565b5050506200013e620001326200055460201b60201c565b6200055c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200062260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e557600080fd5b505afa158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000220919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028357600080fd5b505afa15801562000298573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002be919062000bae565b6040518363ffffffff1660e01b8152600401620002dd92919062000bf1565b602060405180830381600087803b158015620002f857600080fd5b505af11580156200030d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000333919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037b60a05160016200062260201b60201c565b6200039060a05160016200070c60201b60201c565b60006002905060006002905060006002905060006002905060006b033b2e3c9fd0803ce800000090506a295be96e640669720000006007819055506b019d971e4fe8401e740000006009819055506064600482620003ef919062000c57565b620003fb919062000ce7565b60088190555084600e8190555083600f81905550600f54600e5462000421919062000d1f565b600d81905550826011819055508160128190555060125460115462000447919062000d1f565b60108190555073a69b2a6327bf39322c62897dde34ebe4b050671c600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c4620004b6620007ad60201b60201c565b6001620007d760201b60201c565b620004d7306001620007d760201b60201c565b620004ec61dead6001620007d760201b60201c565b6200050e62000500620007ad60201b60201c565b60016200062260201b60201c565b620005213060016200062260201b60201c565b6200053661dead60016200062260201b60201c565b6200054833826200091160201b60201c565b50505050505062000f3e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006326200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000658620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a89062000ddd565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e76200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200080d620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085d9062000ddd565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000905919062000e1c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000984576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097b9062000e89565b60405180910390fd5b620009986000838362000a8a60201b60201c565b8060026000828254620009ac919062000d1f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a03919062000d1f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a6a919062000ebc565b60405180910390a362000a866000838362000a8f60201b60201c565b5050565b505050565b505050565b82805462000aa29062000f08565b90600052602060002090601f01602090048101928262000ac6576000855562000b12565b82601f1062000ae157805160ff191683800117855562000b12565b8280016001018555821562000b12579182015b8281111562000b1157825182559160200191906001019062000af4565b5b50905062000b21919062000b25565b5090565b5b8082111562000b4057600081600090555060010162000b26565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b768262000b49565b9050919050565b62000b888162000b69565b811462000b9457600080fd5b50565b60008151905062000ba88162000b7d565b92915050565b60006020828403121562000bc75762000bc662000b44565b5b600062000bd78482850162000b97565b91505092915050565b62000beb8162000b69565b82525050565b600060408201905062000c08600083018562000be0565b62000c17602083018462000be0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c648262000c1e565b915062000c718362000c1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cad5762000cac62000c28565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cf48262000c1e565b915062000d018362000c1e565b92508262000d145762000d1362000cb8565b5b828204905092915050565b600062000d2c8262000c1e565b915062000d398362000c1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d715762000d7062000c28565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dc560208362000d7c565b915062000dd28262000d8d565b602082019050919050565b6000602082019050818103600083015262000df88162000db6565b9050919050565b60008115159050919050565b62000e168162000dff565b82525050565b600060208201905062000e33600083018462000e0b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e71601f8362000d7c565b915062000e7e8262000e39565b602082019050919050565b6000602082019050818103600083015262000ea48162000e62565b9050919050565b62000eb68162000c1e565b82525050565b600060208201905062000ed3600083018462000eab565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f2157607f821691505b6020821081141562000f385762000f3762000ed9565b5b50919050565b60805160a05161521562000f9c600039600081816115fd01528181611c8b01526129d2015260008181610d6f0152818161297a0152818161393a01528181613a2a01528181613a5101528181613aed0152613b1401526152156000f3fe6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b806395d89b411461084b5780639a7a23d6146108765780639fccce321461089f576102ef565b80637bce5a041461075f5780638a8c523c1461078a5780638da5cb5b146107a15780638ea5220f146107cc57806392136913146107f7578063924de9b714610822576102ef565b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b806339509351146105285780633aeac4e1146105655780633ccfd60b1461058e57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631816467f116102a15780631816467f146104185780631a8145bb14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613c12565b610bf9565b005b34801561032957600080fd5b50610332610c9d565b60405161033f9190613ceb565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613d6b565b610d2f565b60405161037c9190613dc6565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613de1565b610d4d565b6040516103b99190613dc6565b60405180910390f35b3480156103ce57600080fd5b506103d7610d6d565b6040516103e49190613e6d565b60405180910390f35b3480156103f957600080fd5b50610402610d91565b60405161040f9190613e97565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613de1565b610d9b565b005b34801561044d57600080fd5b50610456610ed7565b6040516104639190613e97565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613eb2565b610edd565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613edf565b610fec565b6040516104c99190613dc6565b60405180910390f35b3480156104de57600080fd5b506104e76110e4565b6040516104f49190613f41565b60405180910390f35b34801561050957600080fd5b506105126110ea565b60405161051f9190613f78565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613d6b565b6110f3565b60405161055c9190613dc6565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613f93565b61119f565b005b34801561059a57600080fd5b506105a361141a565b005b3480156105b157600080fd5b506105ba6115fb565b6040516105c79190613f41565b60405180910390f35b3480156105dc57600080fd5b506105e561161f565b6040516105f29190613dc6565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613de1565b611632565b60405161062f9190613dc6565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613c12565b611688565b005b34801561066d57600080fd5b50610676611772565b6040516106839190613e97565b60405180910390f35b34801561069857600080fd5b506106a1611778565b6040516106ae9190613dc6565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613de1565b61178b565b6040516106eb9190613e97565b60405180910390f35b34801561070057600080fd5b506107096117d3565b005b34801561071757600080fd5b5061072061185b565b60405161072d9190613dc6565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613fff565b6118fb565b005b34801561076b57600080fd5b506107746119d2565b6040516107819190613e97565b60405180910390f35b34801561079657600080fd5b5061079f6119d8565b005b3480156107ad57600080fd5b506107b6611a8c565b6040516107c39190613f41565b60405180910390f35b3480156107d857600080fd5b506107e1611ab6565b6040516107ee9190613f41565b60405180910390f35b34801561080357600080fd5b5061080c611adc565b6040516108199190613e97565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061403f565b611ae2565b005b34801561085757600080fd5b50610860611b7b565b60405161086d9190613ceb565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190613fff565b611c0d565b005b3480156108ab57600080fd5b506108b4611d26565b6040516108c19190613e97565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613d6b565b611d2c565b6040516108fe9190613dc6565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613d6b565b611e17565b60405161093b9190613dc6565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613de1565b611e35565b6040516109789190613dc6565b60405180910390f35b34801561098d57600080fd5b50610996611e55565b6040516109a39190613dc6565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190613fff565b611e68565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613eb2565b611f8d565b005b348015610a0a57600080fd5b50610a1361209c565b604051610a209190613dc6565b60405180910390f35b348015610a3557600080fd5b50610a3e6120af565b604051610a4b9190613e97565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613eb2565b6120b5565b604051610a889190613dc6565b60405180910390f35b348015610a9d57600080fd5b50610aa661220a565b604051610ab39190613e97565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613f93565b612210565b604051610af09190613e97565b60405180910390f35b348015610b0557600080fd5b50610b0e612297565b604051610b1b9190613e97565b60405180910390f35b348015610b3057600080fd5b50610b3961229d565b604051610b469190613dc6565b60405180910390f35b348015610b5b57600080fd5b50610b6461233d565b604051610b719190613e97565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613de1565b612343565b005b348015610baf57600080fd5b50610bb861243b565b604051610bc59190613e97565b60405180910390f35b348015610bda57600080fd5b50610be3612441565b604051610bf09190613e97565b60405180910390f35b610c01612447565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906140b8565b60405180910390fd5b8160118190555080601281905550601254601154610c939190614107565b6010819055505050565b606060038054610cac9061418c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd89061418c565b8015610d255780601f10610cfa57610100808354040283529160200191610d25565b820191906000526020600020905b815481529060010190602001808311610d0857829003601f168201915b5050505050905090565b6000610d43610d3c612447565b848461244f565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610da3612447565b73ffffffffffffffffffffffffffffffffffffffff16610dc1611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e906140b8565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610ee5612447565b73ffffffffffffffffffffffffffffffffffffffff16610f03611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f50906140b8565b60405180910390fd5b670de0b6b3a76400006103e86001610f6f610d91565b610f7991906141be565b610f839190614247565b610f8d9190614247565b811015610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906142ea565b60405180910390fd5b670de0b6b3a764000081610fe391906141be565b60078190555050565b6000610ff984848461261a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611044612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061437c565b60405180910390fd5b6110d8856110d0612447565b85840361244f565b60019150509392505050565b61dead81565b60006012905090565b6000611195611100612447565b84846001600061110e612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111909190614107565b61244f565b6001905092915050565b6111a7612447565b73ffffffffffffffffffffffffffffffffffffffff166111c5611a8c565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611212906140b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611282906143e8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190614454565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113359190613f41565b60206040518083038186803b15801561134d57600080fd5b505afa158015611361573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113859190614489565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016113c29291906144b6565b602060405180830381600087803b1580156113dc57600080fd5b505af11580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141491906144f4565b50505050565b611422612447565b73ffffffffffffffffffffffffffffffffffffffff16611440611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906140b8565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114d19190613f41565b60206040518083038186803b1580156114e957600080fd5b505afa1580156114fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115219190614489565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161155e9291906144b6565b602060405180830381600087803b15801561157857600080fd5b505af115801561158c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b091906144f4565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156115f7573d6000803e3d6000fd5b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611690612447565b73ffffffffffffffffffffffffffffffffffffffff166116ae611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906140b8565b60405180910390fd5b81600e8190555080600f81905550600f54600e546117229190614107565b600d81905550600a600d54111561176e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117659061456d565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117db612447565b73ffffffffffffffffffffffffffffffffffffffff166117f9611a8c565b73ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906140b8565b60405180910390fd5b611859600061325a565b565b6000611865612447565b73ffffffffffffffffffffffffffffffffffffffff16611883611a8c565b73ffffffffffffffffffffffffffffffffffffffff16146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d0906140b8565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611903612447565b73ffffffffffffffffffffffffffffffffffffffff16611921611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e906140b8565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b6119e0612447565b73ffffffffffffffffffffffffffffffffffffffff166119fe611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b906140b8565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611aea612447565b73ffffffffffffffffffffffffffffffffffffffff16611b08611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b55906140b8565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611b8a9061418c565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb69061418c565b8015611c035780601f10611bd857610100808354040283529160200191611c03565b820191906000526020600020905b815481529060010190602001808311611be657829003601f168201915b5050505050905090565b611c15612447565b73ffffffffffffffffffffffffffffffffffffffff16611c33611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906140b8565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f906145ff565b60405180910390fd5b611d228282613320565b5050565b60145481565b60008060016000611d3b612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90614691565b60405180910390fd5b611e0c611e03612447565b8585840361244f565b600191505092915050565b6000611e2b611e24612447565b848461261a565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611e70612447565b73ffffffffffffffffffffffffffffffffffffffff16611e8e611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906140b8565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f819190613dc6565b60405180910390a25050565b611f95612447565b73ffffffffffffffffffffffffffffffffffffffff16611fb3611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612000906140b8565b60405180910390fd5b670de0b6b3a76400006103e8600561201f610d91565b61202991906141be565b6120339190614247565b61203d9190614247565b81101561207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690614723565b60405180910390fd5b670de0b6b3a76400008161209391906141be565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006120bf612447565b73ffffffffffffffffffffffffffffffffffffffff166120dd611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906140b8565b60405180910390fd5b620186a06001612141610d91565b61214b91906141be565b6121559190614247565b821015612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906147b5565b60405180910390fd5b6103e860086121a4610d91565b6121ae91906141be565b6121b89190614247565b8211156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614847565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122a7612447565b73ffffffffffffffffffffffffffffffffffffffff166122c5611a8c565b73ffffffffffffffffffffffffffffffffffffffff161461231b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612312906140b8565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61234b612447565b73ffffffffffffffffffffffffffffffffffffffff16612369611a8c565b73ffffffffffffffffffffffffffffffffffffffff16146123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b6906140b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612426906148d9565b60405180910390fd5b6124388161325a565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b69061496b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612526906149fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161260d9190613e97565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268190614a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f190614b21565b60405180910390fd5b60008114156127145761270f838360006133c1565b613255565b600a60009054906101000a900460ff1615612de357612731611a8c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561279f575061276f611a8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127d85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612812575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282b5750600560149054906101000a900460ff16155b15612de257600a60019054906101000a900460ff1661292557601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90614b8d565b60405180910390fd5b5b600c60009054906101000a900460ff1615612af957612942611a8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129c957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af857436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a739190614107565b10612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90614c45565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b9c5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c4357600754811115612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90614cd7565b60405180910390fd5b600954612bf28361178b565b82612bfd9190614107565b1115612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3590614d43565b60405180910390fd5b612de1565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce65750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d3557600754811115612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790614dd5565b60405180910390fd5b612de0565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ddf57600954612d928361178b565b82612d9d9190614107565b1115612dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd590614d43565b60405180910390fd5b5b5b5b5b5b6000612dee3061178b565b905060006008548210159050808015612e135750600a60029054906101000a900460ff165b8015612e2c5750600560149054906101000a900460ff16155b8015612e825750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed85750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f2e5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f72576001600560146101000a81548160ff021916908315150217905550612f56613642565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130285750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561303257600090505b6000811561324557601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309557506000601054115b1561312f576130c260646130b46010548861384f90919063ffffffff16565b61386590919063ffffffff16565b9050601054601154826130d591906141be565b6130df9190614247565b601360008282546130f09190614107565b925050819055506010546012548261310891906141be565b6131129190614247565b601460008282546131239190614107565b92505081905550613221565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561318a57506000600d54115b15613220576131b760646131a9600d548861384f90919063ffffffff16565b61386590919063ffffffff16565b9050600d54600e54826131ca91906141be565b6131d49190614247565b601360008282546131e59190614107565b92505081905550600d54600f54826131fd91906141be565b6132079190614247565b601460008282546132189190614107565b925050819055505b5b6000811115613236576132358730836133c1565b5b80856132429190614df5565b94505b6132508787876133c1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342890614a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349890614b21565b60405180910390fd5b6134ac83838361387b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352990614e9b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135c59190614107565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136299190613e97565b60405180910390a361363c848484613880565b50505050565b600061364d3061178b565b905060006014546013546136619190614107565b90506000808314806136735750600082145b156136805750505061384d565b601460085461368f91906141be565b8311156136a85760146008546136a591906141be565b92505b6000600283601354866136bb91906141be565b6136c59190614247565b6136cf9190614247565b905060006136e6828661388590919063ffffffff16565b905060004790506136f68261389b565b600061370b824761388590919063ffffffff16565b90506000613736876137286014548561384f90919063ffffffff16565b61386590919063ffffffff16565b9050600081836137469190614df5565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161379e90614eec565b60006040518083038185875af1925050503d80600081146137db576040519150601f19603f3d011682016040523d82523d6000602084013e6137e0565b606091505b5050809750506000861180156137f65750600081115b15613843576138058682613ae7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161383a93929190614f01565b60405180910390a15b5050505050505050505b565b6000818361385d91906141be565b905092915050565b600081836138739190614247565b905092915050565b505050565b505050565b600081836138939190614df5565b905092915050565b6000600267ffffffffffffffff8111156138b8576138b7614f38565b5b6040519080825280602002602001820160405280156138e65781602001602082028036833780820191505090505b50905030816000815181106138fe576138fd614f67565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561399e57600080fd5b505afa1580156139b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d69190614fab565b816001815181106139ea576139e9614f67565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a4f307f00000000000000000000000000000000000000000000000000000000000000008461244f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ab19594939291906150d1565b600060405180830381600087803b158015613acb57600080fd5b505af1158015613adf573d6000803e3d6000fd5b505050505050565b613b12307f00000000000000000000000000000000000000000000000000000000000000008461244f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b5c611a8c565b426040518863ffffffff1660e01b8152600401613b7e9695949392919061512b565b6060604051808303818588803b158015613b9757600080fd5b505af1158015613bab573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613bd0919061518c565b5050505050565b600080fd5b6000819050919050565b613bef81613bdc565b8114613bfa57600080fd5b50565b600081359050613c0c81613be6565b92915050565b60008060408385031215613c2957613c28613bd7565b5b6000613c3785828601613bfd565b9250506020613c4885828601613bfd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c8c578082015181840152602081019050613c71565b83811115613c9b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613cbd82613c52565b613cc78185613c5d565b9350613cd7818560208601613c6e565b613ce081613ca1565b840191505092915050565b60006020820190508181036000830152613d058184613cb2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d3882613d0d565b9050919050565b613d4881613d2d565b8114613d5357600080fd5b50565b600081359050613d6581613d3f565b92915050565b60008060408385031215613d8257613d81613bd7565b5b6000613d9085828601613d56565b9250506020613da185828601613bfd565b9150509250929050565b60008115159050919050565b613dc081613dab565b82525050565b6000602082019050613ddb6000830184613db7565b92915050565b600060208284031215613df757613df6613bd7565b5b6000613e0584828501613d56565b91505092915050565b6000819050919050565b6000613e33613e2e613e2984613d0d565b613e0e565b613d0d565b9050919050565b6000613e4582613e18565b9050919050565b6000613e5782613e3a565b9050919050565b613e6781613e4c565b82525050565b6000602082019050613e826000830184613e5e565b92915050565b613e9181613bdc565b82525050565b6000602082019050613eac6000830184613e88565b92915050565b600060208284031215613ec857613ec7613bd7565b5b6000613ed684828501613bfd565b91505092915050565b600080600060608486031215613ef857613ef7613bd7565b5b6000613f0686828701613d56565b9350506020613f1786828701613d56565b9250506040613f2886828701613bfd565b9150509250925092565b613f3b81613d2d565b82525050565b6000602082019050613f566000830184613f32565b92915050565b600060ff82169050919050565b613f7281613f5c565b82525050565b6000602082019050613f8d6000830184613f69565b92915050565b60008060408385031215613faa57613fa9613bd7565b5b6000613fb885828601613d56565b9250506020613fc985828601613d56565b9150509250929050565b613fdc81613dab565b8114613fe757600080fd5b50565b600081359050613ff981613fd3565b92915050565b6000806040838503121561401657614015613bd7565b5b600061402485828601613d56565b925050602061403585828601613fea565b9150509250929050565b60006020828403121561405557614054613bd7565b5b600061406384828501613fea565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140a2602083613c5d565b91506140ad8261406c565b602082019050919050565b600060208201905081810360008301526140d181614095565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411282613bdc565b915061411d83613bdc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614152576141516140d8565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141a457607f821691505b602082108114156141b8576141b761415d565b5b50919050565b60006141c982613bdc565b91506141d483613bdc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561420d5761420c6140d8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061425282613bdc565b915061425d83613bdc565b92508261426d5761426c614218565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d4602f83613c5d565b91506142df82614278565b604082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614366602883613c5d565b91506143718261430a565b604082019050919050565b6000602082019050818103600083015261439581614359565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006143d2601a83613c5d565b91506143dd8261439c565b602082019050919050565b60006020820190508181036000830152614401816143c5565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b600061443e601c83613c5d565b915061444982614408565b602082019050919050565b6000602082019050818103600083015261446d81614431565b9050919050565b60008151905061448381613be6565b92915050565b60006020828403121561449f5761449e613bd7565b5b60006144ad84828501614474565b91505092915050565b60006040820190506144cb6000830185613f32565b6144d86020830184613e88565b9392505050565b6000815190506144ee81613fd3565b92915050565b60006020828403121561450a57614509613bd7565b5b6000614518848285016144df565b91505092915050565b7f4275792046656500000000000000000000000000000000000000000000000000600082015250565b6000614557600783613c5d565b915061456282614521565b602082019050919050565b600060208201905081810360008301526145868161454a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006145e9603983613c5d565b91506145f48261458d565b604082019050919050565b60006020820190508181036000830152614618816145dc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061467b602583613c5d565b91506146868261461f565b604082019050919050565b600060208201905081810360008301526146aa8161466e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061470d602483613c5d565b9150614718826146b1565b604082019050919050565b6000602082019050818103600083015261473c81614700565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061479f603583613c5d565b91506147aa82614743565b604082019050919050565b600060208201905081810360008301526147ce81614792565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614831603483613c5d565b915061483c826147d5565b604082019050919050565b6000602082019050818103600083015261486081614824565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148c3602683613c5d565b91506148ce82614867565b604082019050919050565b600060208201905081810360008301526148f2816148b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614955602483613c5d565b9150614960826148f9565b604082019050919050565b6000602082019050818103600083015261498481614948565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e7602283613c5d565b91506149f28261498b565b604082019050919050565b60006020820190508181036000830152614a16816149da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a79602583613c5d565b9150614a8482614a1d565b604082019050919050565b60006020820190508181036000830152614aa881614a6c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0b602383613c5d565b9150614b1682614aaf565b604082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b77601683613c5d565b9150614b8282614b41565b602082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614c2f604e83613c5d565b9150614c3a82614bad565b606082019050919050565b60006020820190508181036000830152614c5e81614c22565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614cc1603583613c5d565b9150614ccc82614c65565b604082019050919050565b60006020820190508181036000830152614cf081614cb4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d2d601383613c5d565b9150614d3882614cf7565b602082019050919050565b60006020820190508181036000830152614d5c81614d20565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614dbf603683613c5d565b9150614dca82614d63565b604082019050919050565b60006020820190508181036000830152614dee81614db2565b9050919050565b6000614e0082613bdc565b9150614e0b83613bdc565b925082821015614e1e57614e1d6140d8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e85602683613c5d565b9150614e9082614e29565b604082019050919050565b60006020820190508181036000830152614eb481614e78565b9050919050565b600081905092915050565b50565b6000614ed6600083614ebb565b9150614ee182614ec6565b600082019050919050565b6000614ef782614ec9565b9150819050919050565b6000606082019050614f166000830186613e88565b614f236020830185613e88565b614f306040830184613e88565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614fa581613d3f565b92915050565b600060208284031215614fc157614fc0613bd7565b5b6000614fcf84828501614f96565b91505092915050565b6000819050919050565b6000614ffd614ff8614ff384614fd8565b613e0e565b613bdc565b9050919050565b61500d81614fe2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61504881613d2d565b82525050565b600061505a838361503f565b60208301905092915050565b6000602082019050919050565b600061507e82615013565b615088818561501e565b93506150938361502f565b8060005b838110156150c45781516150ab888261504e565b97506150b683615066565b925050600181019050615097565b5085935050505092915050565b600060a0820190506150e66000830188613e88565b6150f36020830187615004565b81810360408301526151058186615073565b90506151146060830185613f32565b6151216080830184613e88565b9695505050505050565b600060c0820190506151406000830189613f32565b61514d6020830188613e88565b61515a6040830187615004565b6151676060830186615004565b6151746080830185613f32565b61518160a0830184613e88565b979650505050505050565b6000806000606084860312156151a5576151a4613bd7565b5b60006151b386828701614474565b93505060206151c486828701614474565b92505060406151d586828701614474565b915050925092509256fea2646970667358221220e6f426c4b15c1183fd9155c908d5a7357d98cd0f10bc25f19589fa46ad5e884a64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b806395d89b411461084b5780639a7a23d6146108765780639fccce321461089f576102ef565b80637bce5a041461075f5780638a8c523c1461078a5780638da5cb5b146107a15780638ea5220f146107cc57806392136913146107f7578063924de9b714610822576102ef565b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b806339509351146105285780633aeac4e1146105655780633ccfd60b1461058e57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631816467f116102a15780631816467f146104185780631a8145bb14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613c12565b610bf9565b005b34801561032957600080fd5b50610332610c9d565b60405161033f9190613ceb565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613d6b565b610d2f565b60405161037c9190613dc6565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613de1565b610d4d565b6040516103b99190613dc6565b60405180910390f35b3480156103ce57600080fd5b506103d7610d6d565b6040516103e49190613e6d565b60405180910390f35b3480156103f957600080fd5b50610402610d91565b60405161040f9190613e97565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613de1565b610d9b565b005b34801561044d57600080fd5b50610456610ed7565b6040516104639190613e97565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613eb2565b610edd565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613edf565b610fec565b6040516104c99190613dc6565b60405180910390f35b3480156104de57600080fd5b506104e76110e4565b6040516104f49190613f41565b60405180910390f35b34801561050957600080fd5b506105126110ea565b60405161051f9190613f78565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613d6b565b6110f3565b60405161055c9190613dc6565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613f93565b61119f565b005b34801561059a57600080fd5b506105a361141a565b005b3480156105b157600080fd5b506105ba6115fb565b6040516105c79190613f41565b60405180910390f35b3480156105dc57600080fd5b506105e561161f565b6040516105f29190613dc6565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613de1565b611632565b60405161062f9190613dc6565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613c12565b611688565b005b34801561066d57600080fd5b50610676611772565b6040516106839190613e97565b60405180910390f35b34801561069857600080fd5b506106a1611778565b6040516106ae9190613dc6565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613de1565b61178b565b6040516106eb9190613e97565b60405180910390f35b34801561070057600080fd5b506107096117d3565b005b34801561071757600080fd5b5061072061185b565b60405161072d9190613dc6565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190613fff565b6118fb565b005b34801561076b57600080fd5b506107746119d2565b6040516107819190613e97565b60405180910390f35b34801561079657600080fd5b5061079f6119d8565b005b3480156107ad57600080fd5b506107b6611a8c565b6040516107c39190613f41565b60405180910390f35b3480156107d857600080fd5b506107e1611ab6565b6040516107ee9190613f41565b60405180910390f35b34801561080357600080fd5b5061080c611adc565b6040516108199190613e97565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061403f565b611ae2565b005b34801561085757600080fd5b50610860611b7b565b60405161086d9190613ceb565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190613fff565b611c0d565b005b3480156108ab57600080fd5b506108b4611d26565b6040516108c19190613e97565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613d6b565b611d2c565b6040516108fe9190613dc6565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613d6b565b611e17565b60405161093b9190613dc6565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613de1565b611e35565b6040516109789190613dc6565b60405180910390f35b34801561098d57600080fd5b50610996611e55565b6040516109a39190613dc6565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190613fff565b611e68565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613eb2565b611f8d565b005b348015610a0a57600080fd5b50610a1361209c565b604051610a209190613dc6565b60405180910390f35b348015610a3557600080fd5b50610a3e6120af565b604051610a4b9190613e97565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613eb2565b6120b5565b604051610a889190613dc6565b60405180910390f35b348015610a9d57600080fd5b50610aa661220a565b604051610ab39190613e97565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613f93565b612210565b604051610af09190613e97565b60405180910390f35b348015610b0557600080fd5b50610b0e612297565b604051610b1b9190613e97565b60405180910390f35b348015610b3057600080fd5b50610b3961229d565b604051610b469190613dc6565b60405180910390f35b348015610b5b57600080fd5b50610b6461233d565b604051610b719190613e97565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613de1565b612343565b005b348015610baf57600080fd5b50610bb861243b565b604051610bc59190613e97565b60405180910390f35b348015610bda57600080fd5b50610be3612441565b604051610bf09190613e97565b60405180910390f35b610c01612447565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906140b8565b60405180910390fd5b8160118190555080601281905550601254601154610c939190614107565b6010819055505050565b606060038054610cac9061418c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd89061418c565b8015610d255780601f10610cfa57610100808354040283529160200191610d25565b820191906000526020600020905b815481529060010190602001808311610d0857829003601f168201915b5050505050905090565b6000610d43610d3c612447565b848461244f565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610da3612447565b73ffffffffffffffffffffffffffffffffffffffff16610dc1611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e906140b8565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610ee5612447565b73ffffffffffffffffffffffffffffffffffffffff16610f03611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f50906140b8565b60405180910390fd5b670de0b6b3a76400006103e86001610f6f610d91565b610f7991906141be565b610f839190614247565b610f8d9190614247565b811015610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc6906142ea565b60405180910390fd5b670de0b6b3a764000081610fe391906141be565b60078190555050565b6000610ff984848461261a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611044612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061437c565b60405180910390fd5b6110d8856110d0612447565b85840361244f565b60019150509392505050565b61dead81565b60006012905090565b6000611195611100612447565b84846001600061110e612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111909190614107565b61244f565b6001905092915050565b6111a7612447565b73ffffffffffffffffffffffffffffffffffffffff166111c5611a8c565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611212906140b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611282906143e8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f190614454565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113359190613f41565b60206040518083038186803b15801561134d57600080fd5b505afa158015611361573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113859190614489565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016113c29291906144b6565b602060405180830381600087803b1580156113dc57600080fd5b505af11580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141491906144f4565b50505050565b611422612447565b73ffffffffffffffffffffffffffffffffffffffff16611440611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906140b8565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114d19190613f41565b60206040518083038186803b1580156114e957600080fd5b505afa1580156114fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115219190614489565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161155e9291906144b6565b602060405180830381600087803b15801561157857600080fd5b505af115801561158c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b091906144f4565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156115f7573d6000803e3d6000fd5b5050565b7f000000000000000000000000a28a97492e1421bf962d5a31f28788995e4003ff81565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611690612447565b73ffffffffffffffffffffffffffffffffffffffff166116ae611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906140b8565b60405180910390fd5b81600e8190555080600f81905550600f54600e546117229190614107565b600d81905550600a600d54111561176e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117659061456d565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117db612447565b73ffffffffffffffffffffffffffffffffffffffff166117f9611a8c565b73ffffffffffffffffffffffffffffffffffffffff161461184f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611846906140b8565b60405180910390fd5b611859600061325a565b565b6000611865612447565b73ffffffffffffffffffffffffffffffffffffffff16611883611a8c565b73ffffffffffffffffffffffffffffffffffffffff16146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d0906140b8565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611903612447565b73ffffffffffffffffffffffffffffffffffffffff16611921611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e906140b8565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b6119e0612447565b73ffffffffffffffffffffffffffffffffffffffff166119fe611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b906140b8565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611aea612447565b73ffffffffffffffffffffffffffffffffffffffff16611b08611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b55906140b8565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611b8a9061418c565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb69061418c565b8015611c035780601f10611bd857610100808354040283529160200191611c03565b820191906000526020600020905b815481529060010190602001808311611be657829003601f168201915b5050505050905090565b611c15612447565b73ffffffffffffffffffffffffffffffffffffffff16611c33611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906140b8565b60405180910390fd5b7f000000000000000000000000a28a97492e1421bf962d5a31f28788995e4003ff73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f906145ff565b60405180910390fd5b611d228282613320565b5050565b60145481565b60008060016000611d3b612447565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def90614691565b60405180910390fd5b611e0c611e03612447565b8585840361244f565b600191505092915050565b6000611e2b611e24612447565b848461261a565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611e70612447565b73ffffffffffffffffffffffffffffffffffffffff16611e8e611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906140b8565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f819190613dc6565b60405180910390a25050565b611f95612447565b73ffffffffffffffffffffffffffffffffffffffff16611fb3611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612000906140b8565b60405180910390fd5b670de0b6b3a76400006103e8600561201f610d91565b61202991906141be565b6120339190614247565b61203d9190614247565b81101561207f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207690614723565b60405180910390fd5b670de0b6b3a76400008161209391906141be565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006120bf612447565b73ffffffffffffffffffffffffffffffffffffffff166120dd611a8c565b73ffffffffffffffffffffffffffffffffffffffff1614612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906140b8565b60405180910390fd5b620186a06001612141610d91565b61214b91906141be565b6121559190614247565b821015612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906147b5565b60405180910390fd5b6103e860086121a4610d91565b6121ae91906141be565b6121b89190614247565b8211156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614847565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122a7612447565b73ffffffffffffffffffffffffffffffffffffffff166122c5611a8c565b73ffffffffffffffffffffffffffffffffffffffff161461231b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612312906140b8565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61234b612447565b73ffffffffffffffffffffffffffffffffffffffff16612369611a8c565b73ffffffffffffffffffffffffffffffffffffffff16146123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b6906140b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612426906148d9565b60405180910390fd5b6124388161325a565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b69061496b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612526906149fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161260d9190613e97565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268190614a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f190614b21565b60405180910390fd5b60008114156127145761270f838360006133c1565b613255565b600a60009054906101000a900460ff1615612de357612731611a8c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561279f575061276f611a8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127d85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612812575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282b5750600560149054906101000a900460ff16155b15612de257600a60019054906101000a900460ff1661292557601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291b90614b8d565b60405180910390fd5b5b600c60009054906101000a900460ff1615612af957612942611a8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129c957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2157507f000000000000000000000000a28a97492e1421bf962d5a31f28788995e4003ff73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af857436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a739190614107565b10612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90614c45565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b9c5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c4357600754811115612be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdd90614cd7565b60405180910390fd5b600954612bf28361178b565b82612bfd9190614107565b1115612c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3590614d43565b60405180910390fd5b612de1565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce65750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d3557600754811115612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790614dd5565b60405180910390fd5b612de0565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ddf57600954612d928361178b565b82612d9d9190614107565b1115612dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd590614d43565b60405180910390fd5b5b5b5b5b5b6000612dee3061178b565b905060006008548210159050808015612e135750600a60029054906101000a900460ff165b8015612e2c5750600560149054906101000a900460ff16155b8015612e825750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed85750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f2e5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f72576001600560146101000a81548160ff021916908315150217905550612f56613642565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130285750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561303257600090505b6000811561324557601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309557506000601054115b1561312f576130c260646130b46010548861384f90919063ffffffff16565b61386590919063ffffffff16565b9050601054601154826130d591906141be565b6130df9190614247565b601360008282546130f09190614107565b925050819055506010546012548261310891906141be565b6131129190614247565b601460008282546131239190614107565b92505081905550613221565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561318a57506000600d54115b15613220576131b760646131a9600d548861384f90919063ffffffff16565b61386590919063ffffffff16565b9050600d54600e54826131ca91906141be565b6131d49190614247565b601360008282546131e59190614107565b92505081905550600d54600f54826131fd91906141be565b6132079190614247565b601460008282546132189190614107565b925050819055505b5b6000811115613236576132358730836133c1565b5b80856132429190614df5565b94505b6132508787876133c1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342890614a8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349890614b21565b60405180910390fd5b6134ac83838361387b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352990614e9b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135c59190614107565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136299190613e97565b60405180910390a361363c848484613880565b50505050565b600061364d3061178b565b905060006014546013546136619190614107565b90506000808314806136735750600082145b156136805750505061384d565b601460085461368f91906141be565b8311156136a85760146008546136a591906141be565b92505b6000600283601354866136bb91906141be565b6136c59190614247565b6136cf9190614247565b905060006136e6828661388590919063ffffffff16565b905060004790506136f68261389b565b600061370b824761388590919063ffffffff16565b90506000613736876137286014548561384f90919063ffffffff16565b61386590919063ffffffff16565b9050600081836137469190614df5565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161379e90614eec565b60006040518083038185875af1925050503d80600081146137db576040519150601f19603f3d011682016040523d82523d6000602084013e6137e0565b606091505b5050809750506000861180156137f65750600081115b15613843576138058682613ae7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161383a93929190614f01565b60405180910390a15b5050505050505050505b565b6000818361385d91906141be565b905092915050565b600081836138739190614247565b905092915050565b505050565b505050565b600081836138939190614df5565b905092915050565b6000600267ffffffffffffffff8111156138b8576138b7614f38565b5b6040519080825280602002602001820160405280156138e65781602001602082028036833780820191505090505b50905030816000815181106138fe576138fd614f67565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561399e57600080fd5b505afa1580156139b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d69190614fab565b816001815181106139ea576139e9614f67565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a4f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461244f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ab19594939291906150d1565b600060405180830381600087803b158015613acb57600080fd5b505af1158015613adf573d6000803e3d6000fd5b505050505050565b613b12307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461244f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b5c611a8c565b426040518863ffffffff1660e01b8152600401613b7e9695949392919061512b565b6060604051808303818588803b158015613b9757600080fd5b505af1158015613bab573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613bd0919061518c565b5050505050565b600080fd5b6000819050919050565b613bef81613bdc565b8114613bfa57600080fd5b50565b600081359050613c0c81613be6565b92915050565b60008060408385031215613c2957613c28613bd7565b5b6000613c3785828601613bfd565b9250506020613c4885828601613bfd565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c8c578082015181840152602081019050613c71565b83811115613c9b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613cbd82613c52565b613cc78185613c5d565b9350613cd7818560208601613c6e565b613ce081613ca1565b840191505092915050565b60006020820190508181036000830152613d058184613cb2565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d3882613d0d565b9050919050565b613d4881613d2d565b8114613d5357600080fd5b50565b600081359050613d6581613d3f565b92915050565b60008060408385031215613d8257613d81613bd7565b5b6000613d9085828601613d56565b9250506020613da185828601613bfd565b9150509250929050565b60008115159050919050565b613dc081613dab565b82525050565b6000602082019050613ddb6000830184613db7565b92915050565b600060208284031215613df757613df6613bd7565b5b6000613e0584828501613d56565b91505092915050565b6000819050919050565b6000613e33613e2e613e2984613d0d565b613e0e565b613d0d565b9050919050565b6000613e4582613e18565b9050919050565b6000613e5782613e3a565b9050919050565b613e6781613e4c565b82525050565b6000602082019050613e826000830184613e5e565b92915050565b613e9181613bdc565b82525050565b6000602082019050613eac6000830184613e88565b92915050565b600060208284031215613ec857613ec7613bd7565b5b6000613ed684828501613bfd565b91505092915050565b600080600060608486031215613ef857613ef7613bd7565b5b6000613f0686828701613d56565b9350506020613f1786828701613d56565b9250506040613f2886828701613bfd565b9150509250925092565b613f3b81613d2d565b82525050565b6000602082019050613f566000830184613f32565b92915050565b600060ff82169050919050565b613f7281613f5c565b82525050565b6000602082019050613f8d6000830184613f69565b92915050565b60008060408385031215613faa57613fa9613bd7565b5b6000613fb885828601613d56565b9250506020613fc985828601613d56565b9150509250929050565b613fdc81613dab565b8114613fe757600080fd5b50565b600081359050613ff981613fd3565b92915050565b6000806040838503121561401657614015613bd7565b5b600061402485828601613d56565b925050602061403585828601613fea565b9150509250929050565b60006020828403121561405557614054613bd7565b5b600061406384828501613fea565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140a2602083613c5d565b91506140ad8261406c565b602082019050919050565b600060208201905081810360008301526140d181614095565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411282613bdc565b915061411d83613bdc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614152576141516140d8565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141a457607f821691505b602082108114156141b8576141b761415d565b5b50919050565b60006141c982613bdc565b91506141d483613bdc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561420d5761420c6140d8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061425282613bdc565b915061425d83613bdc565b92508261426d5761426c614218565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d4602f83613c5d565b91506142df82614278565b604082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614366602883613c5d565b91506143718261430a565b604082019050919050565b6000602082019050818103600083015261439581614359565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006143d2601a83613c5d565b91506143dd8261439c565b602082019050919050565b60006020820190508181036000830152614401816143c5565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b600061443e601c83613c5d565b915061444982614408565b602082019050919050565b6000602082019050818103600083015261446d81614431565b9050919050565b60008151905061448381613be6565b92915050565b60006020828403121561449f5761449e613bd7565b5b60006144ad84828501614474565b91505092915050565b60006040820190506144cb6000830185613f32565b6144d86020830184613e88565b9392505050565b6000815190506144ee81613fd3565b92915050565b60006020828403121561450a57614509613bd7565b5b6000614518848285016144df565b91505092915050565b7f4275792046656500000000000000000000000000000000000000000000000000600082015250565b6000614557600783613c5d565b915061456282614521565b602082019050919050565b600060208201905081810360008301526145868161454a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006145e9603983613c5d565b91506145f48261458d565b604082019050919050565b60006020820190508181036000830152614618816145dc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061467b602583613c5d565b91506146868261461f565b604082019050919050565b600060208201905081810360008301526146aa8161466e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061470d602483613c5d565b9150614718826146b1565b604082019050919050565b6000602082019050818103600083015261473c81614700565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061479f603583613c5d565b91506147aa82614743565b604082019050919050565b600060208201905081810360008301526147ce81614792565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614831603483613c5d565b915061483c826147d5565b604082019050919050565b6000602082019050818103600083015261486081614824565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148c3602683613c5d565b91506148ce82614867565b604082019050919050565b600060208201905081810360008301526148f2816148b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614955602483613c5d565b9150614960826148f9565b604082019050919050565b6000602082019050818103600083015261498481614948565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e7602283613c5d565b91506149f28261498b565b604082019050919050565b60006020820190508181036000830152614a16816149da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a79602583613c5d565b9150614a8482614a1d565b604082019050919050565b60006020820190508181036000830152614aa881614a6c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b0b602383613c5d565b9150614b1682614aaf565b604082019050919050565b60006020820190508181036000830152614b3a81614afe565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b77601683613c5d565b9150614b8282614b41565b602082019050919050565b60006020820190508181036000830152614ba681614b6a565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614c2f604e83613c5d565b9150614c3a82614bad565b606082019050919050565b60006020820190508181036000830152614c5e81614c22565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614cc1603583613c5d565b9150614ccc82614c65565b604082019050919050565b60006020820190508181036000830152614cf081614cb4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d2d601383613c5d565b9150614d3882614cf7565b602082019050919050565b60006020820190508181036000830152614d5c81614d20565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614dbf603683613c5d565b9150614dca82614d63565b604082019050919050565b60006020820190508181036000830152614dee81614db2565b9050919050565b6000614e0082613bdc565b9150614e0b83613bdc565b925082821015614e1e57614e1d6140d8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e85602683613c5d565b9150614e9082614e29565b604082019050919050565b60006020820190508181036000830152614eb481614e78565b9050919050565b600081905092915050565b50565b6000614ed6600083614ebb565b9150614ee182614ec6565b600082019050919050565b6000614ef782614ec9565b9150819050919050565b6000606082019050614f166000830186613e88565b614f236020830185613e88565b614f306040830184613e88565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614fa581613d3f565b92915050565b600060208284031215614fc157614fc0613bd7565b5b6000614fcf84828501614f96565b91505092915050565b6000819050919050565b6000614ffd614ff8614ff384614fd8565b613e0e565b613bdc565b9050919050565b61500d81614fe2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61504881613d2d565b82525050565b600061505a838361503f565b60208301905092915050565b6000602082019050919050565b600061507e82615013565b615088818561501e565b93506150938361502f565b8060005b838110156150c45781516150ab888261504e565b97506150b683615066565b925050600181019050615097565b5085935050505092915050565b600060a0820190506150e66000830188613e88565b6150f36020830187615004565b81810360408301526151058186615073565b90506151146060830185613f32565b6151216080830184613e88565b9695505050505050565b600060c0820190506151406000830189613f32565b61514d6020830188613e88565b61515a6040830187615004565b6151676060830186615004565b6151746080830185613f32565b61518160a0830184613e88565b979650505050505050565b6000806000606084860312156151a5576151a4613bd7565b5b60006151b386828701614474565b93505060206151c486828701614474565b92505060406151d586828701614474565b915050925092509256fea2646970667358221220e6f426c4b15c1183fd9155c908d5a7357d98cd0f10bc25f19589fa46ad5e884a64736f6c63430008090033

Deployed Bytecode Sourcemap

29453:15495:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35907:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8557:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10724:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30658:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29529:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9677:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36883:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30442:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34668:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11375:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29632:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9519:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12276:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44585:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44331:246;;;;;;;;;;;;;:::i;:::-;;29587:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29872:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37048:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35586:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30329:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29952:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9848:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:103;;;;;;;;;;;;;:::i;:::-;;33772:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35215:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30290:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33608:112;;;;;;;;;;;;;:::i;:::-;;1423:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29724:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30402:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35478:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8776:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36375:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30482:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12994:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10188:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30879:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29912:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36185:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34951:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30170:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29757:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34163:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30219:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10426:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29799:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33954:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30253:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2332:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30364:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29839:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35907:270;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36051:13:::1;36032:16;:32;;;;36094:13;36075:16;:32;;;;36153:16;;36134;;:35;;;;:::i;:::-;36118:13;:51;;;;35907:270:::0;;:::o;8557:100::-;8611:13;8644:5;8637:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8557:100;:::o;10724:169::-;10807:4;10824:39;10833:12;:10;:12::i;:::-;10847:7;10856:6;10824:8;:39::i;:::-;10881:4;10874:11;;10724:169;;;;:::o;30658:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29529:51::-;;;:::o;9677:108::-;9738:7;9765:12;;9758:19;;9677:108;:::o;36883:157::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36990:9:::1;;;;;;;;;;;36962:38;;36979:9;36962:38;;;;;;;;;;;;37023:9;37011;;:21;;;;;;;;;;;;;;;;;;36883:157:::0;:::o;30442:33::-;;;;:::o;34668:275::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34805:4:::1;34797;34792:1;34776:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34775:26;;;;:::i;:::-;34774:35;;;;:::i;:::-;34764:6;:45;;34742:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34928:6;34918;:17;;;;:::i;:::-;34895:20;:40;;;;34668:275:::0;:::o;11375:492::-;11515:4;11532:36;11542:6;11550:9;11561:6;11532:9;:36::i;:::-;11581:24;11608:11;:19;11620:6;11608:19;;;;;;;;;;;;;;;:33;11628:12;:10;:12::i;:::-;11608:33;;;;;;;;;;;;;;;;11581:60;;11680:6;11660:16;:26;;11652:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11767:57;11776:6;11784:12;:10;:12::i;:::-;11817:6;11798:16;:25;11767:8;:57::i;:::-;11855:4;11848:11;;;11375:492;;;;;:::o;29632:53::-;29678:6;29632:53;:::o;9519:93::-;9577:5;9602:2;9595:9;;9519:93;:::o;12276:215::-;12364:4;12381:80;12390:12;:10;:12::i;:::-;12404:7;12450:10;12413:11;:25;12425:12;:10;:12::i;:::-;12413:25;;;;;;;;;;;;;;;:34;12439:7;12413:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12381:8;:80::i;:::-;12479:4;12472:11;;12276:215;;;;:::o;44585:358::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44693:1:::1;44675:20;;:6;:20;;;;44667:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;44763:4;44745:23;;:6;:23;;;;44737:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44812:24;44846:6;44839:24;;;44872:4;44839:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44812:66;;44896:6;44889:23;;;44913:3;44918:16;44889:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44656:287;44585:358:::0;;:::o;44331:246::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44381:15:::1;44414:4;44399:31;;;44439:4;44399:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44381:64;;44471:4;44456:30;;;44487:10;44499:7;44456:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44526:10;44518:28;;:51;44547:21;44518:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44370:207;44331:246::o:0;29587:38::-;;;:::o;29872:33::-;;;;;;;;;;;;;:::o;37048:126::-;37114:4;37138:19;:28;37158:7;37138:28;;;;;;;;;;;;;;;;;;;;;;;;;37131:35;;37048:126;;;:::o;35586:313::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35728:13:::1;35710:15;:31;;;;35770:13;35752:15;:31;;;;35827:15;;35809;;:33;;;;:::i;:::-;35794:12;:48;;;;35877:2;35861:12;;:18;;35853:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;35586:313:::0;;:::o;30329:28::-;;;;:::o;29952:31::-;;;;;;;;;;;;;:::o;9848:127::-;9922:7;9949:9;:18;9959:7;9949:18;;;;;;;;;;;;;;;;9942:25;;9848:127;;;:::o;2074:103::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2139:30:::1;2166:1;2139:18;:30::i;:::-;2074:103::o:0;33772:121::-;33824:4;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33858:5:::1;33841:14;;:22;;;;;;;;;;;;;;;;;;33881:4;33874:11;;33772:121:::0;:::o;35215:167::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35370:4:::1;35328:31;:39;35360:6;35328:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35215:167:::0;;:::o;30290:30::-;;;;:::o;33608:112::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33679:4:::1;33663:13;;:20;;;;;;;;;;;;;;;;;;33708:4;33694:11;;:18;;;;;;;;;;;;;;;;;;33608:112::o:0;1423:87::-;1469:7;1496:6;;;;;;;;;;;1489:13;;1423:87;:::o;29724:24::-;;;;;;;;;;;;;:::o;30402:31::-;;;;:::o;35478:100::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35563:7:::1;35549:11;;:21;;;;;;;;;;;;;;;;;;35478:100:::0;:::o;8776:104::-;8832:13;8865:7;8858:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8776:104;:::o;36375:304::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36519:13:::1;36511:21;;:4;:21;;;;36489:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;36630:41;36659:4;36665:5;36630:28;:41::i;:::-;36375:304:::0;;:::o;30482:27::-;;;;:::o;12994:413::-;13087:4;13104:24;13131:11;:25;13143:12;:10;:12::i;:::-;13131:25;;;;;;;;;;;;;;;:34;13157:7;13131:34;;;;;;;;;;;;;;;;13104:61;;13204:15;13184:16;:35;;13176:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13297:67;13306:12;:10;:12::i;:::-;13320:7;13348:15;13329:16;:34;13297:8;:67::i;:::-;13395:4;13388:11;;;12994:413;;;;:::o;10188:175::-;10274:4;10291:42;10301:12;:10;:12::i;:::-;10315:9;10326:6;10291:9;:42::i;:::-;10351:4;10344:11;;10188:175;;;;:::o;30879:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29912:33::-;;;;;;;;;;;;;:::o;36185:182::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36301:8:::1;36270:19;:28;36290:7;36270:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36341:7;36325:34;;;36350:8;36325:34;;;;;;:::i;:::-;;;;;;;;36185:182:::0;;:::o;34951:256::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35091:4:::1;35083;35078:1;35062:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35061:26;;;;:::i;:::-;35060:35;;;;:::i;:::-;35050:6;:45;;35028:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;35192:6;35182;:17;;;;:::i;:::-;35170:9;:29;;;;34951:256:::0;:::o;30170:40::-;;;;;;;;;;;;;:::o;29757:35::-;;;;:::o;34163:497::-;34271:4;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34350:6:::1;34345:1;34329:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34328:28;;;;:::i;:::-;34315:9;:41;;34293:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34505:4;34500:1;34484:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34483:26;;;;:::i;:::-;34470:9;:39;;34448:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34621:9;34600:18;:30;;;;34648:4;34641:11;;34163:497:::0;;;:::o;30219:27::-;;;;:::o;10426:151::-;10515:7;10542:11;:18;10554:5;10542:18;;;;;;;;;;;;;;;:27;10561:7;10542:27;;;;;;;;;;;;;;;;10535:34;;10426:151;;;;:::o;29799:33::-;;;;:::o;33954:135::-;34014:4;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34054:5:::1;34031:20;;:28;;;;;;;;;;;;;;;;;;34077:4;34070:11;;33954:135:::0;:::o;30253:30::-;;;;:::o;2332:201::-;1654:12;:10;:12::i;:::-;1643:23;;:7;:5;:7::i;:::-;:23;;;1635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2441:1:::1;2421:22;;:8;:22;;;;2413:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2497:28;2516:8;2497:18;:28::i;:::-;2332:201:::0;:::o;30364:31::-;;;;:::o;29839:24::-;;;;:::o;287:98::-;340:7;367:10;360:17;;287:98;:::o;16678:380::-;16831:1;16814:19;;:5;:19;;;;16806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16912:1;16893:21;;:7;:21;;;;16885:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16996:6;16966:11;:18;16978:5;16966:18;;;;;;;;;;;;;;;:27;16985:7;16966:27;;;;;;;;;;;;;;;:36;;;;17034:7;17018:32;;17027:5;17018:32;;;17043:6;17018:32;;;;;;:::i;:::-;;;;;;;;16678:380;;;:::o;37182:4576::-;37330:1;37314:18;;:4;:18;;;;37306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37407:1;37393:16;;:2;:16;;;;37385:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37476:1;37466:6;:11;37462:93;;;37494:28;37510:4;37516:2;37520:1;37494:15;:28::i;:::-;37537:7;;37462:93;37571:14;;;;;;;;;;;37567:2496;;;37632:7;:5;:7::i;:::-;37624:15;;:4;:15;;;;:49;;;;;37666:7;:5;:7::i;:::-;37660:13;;:2;:13;;;;37624:49;:86;;;;;37708:1;37694:16;;:2;:16;;;;37624:86;:128;;;;;37745:6;37731:21;;:2;:21;;;;37624:128;:158;;;;;37774:8;;;;;;;;;;;37773:9;37624:158;37602:2450;;;37822:13;;;;;;;;;;;37817:223;;37894:19;:25;37914:4;37894:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37923:19;:23;37943:2;37923:23;;;;;;;;;;;;;;;;;;;;;;;;;37894:52;37860:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37817:223;38196:20;;;;;;;;;;;38192:650;;;38277:7;:5;:7::i;:::-;38271:13;;:2;:13;;;;:72;;;;;38327:15;38313:30;;:2;:30;;;;38271:72;:129;;;;;38386:13;38372:28;;:2;:28;;;;38271:129;38241:582;;;38568:12;38531:1;38489:28;:39;38518:9;38489:39;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:91;38451:267;;;;;;;;;;;;:::i;:::-;;;;;;;;;38787:12;38745:28;:39;38774:9;38745:39;;;;;;;;;;;;;;;:54;;;;38241:582;38192:650;38916:25;:31;38942:4;38916:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38973:31;:35;39005:2;38973:35;;;;;;;;;;;;;;;;;;;;;;;;;38972:36;38916:92;38890:1147;;;39095:20;;39085:6;:30;;39051:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39303:9;;39286:13;39296:2;39286:9;:13::i;:::-;39277:6;:22;;;;:::i;:::-;:35;;39243:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38890:1147;;;39481:25;:29;39507:2;39481:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39536:31;:37;39568:4;39536:37;;;;;;;;;;;;;;;;;;;;;;;;;39535:38;39481:92;39455:582;;;39660:20;;39650:6;:30;;39616:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39455:582;;;39817:31;:35;39849:2;39817:35;;;;;;;;;;;;;;;;;;;;;;;;;39812:225;;39937:9;;39920:13;39930:2;39920:9;:13::i;:::-;39911:6;:22;;;;:::i;:::-;:35;;39877:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39812:225;39455:582;38890:1147;37602:2450;37567:2496;40075:28;40106:24;40124:4;40106:9;:24::i;:::-;40075:55;;40143:12;40182:18;;40158:20;:42;;40143:57;;40231:7;:35;;;;;40255:11;;;;;;;;;;;40231:35;:61;;;;;40284:8;;;;;;;;;;;40283:9;40231:61;:110;;;;;40310:25;:31;40336:4;40310:31;;;;;;;;;;;;;;;;;;;;;;;;;40309:32;40231:110;:153;;;;;40359:19;:25;40379:4;40359:25;;;;;;;;;;;;;;;;;;;;;;;;;40358:26;40231:153;:194;;;;;40402:19;:23;40422:2;40402:23;;;;;;;;;;;;;;;;;;;;;;;;;40401:24;40231:194;40213:326;;;40463:4;40452:8;;:15;;;;;;;;;;;;;;;;;;40484:10;:8;:10::i;:::-;40522:5;40511:8;;:16;;;;;;;;;;;;;;;;;;40213:326;40551:12;40567:8;;;;;;;;;;;40566:9;40551:24;;40677:19;:25;40697:4;40677:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40706:19;:23;40726:2;40706:23;;;;;;;;;;;;;;;;;;;;;;;;;40677:52;40673:100;;;40756:5;40746:15;;40673:100;40785:12;40890:7;40886:819;;;40942:25;:29;40968:2;40942:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40991:1;40975:13;;:17;40942:50;40938:618;;;41020:34;41050:3;41020:25;41031:13;;41020:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41013:41;;41123:13;;41103:16;;41096:4;:23;;;;:::i;:::-;41095:41;;;;:::i;:::-;41073:18;;:63;;;;;;;:::i;:::-;;;;;;;;41199:13;;41179:16;;41172:4;:23;;;;:::i;:::-;41171:41;;;;:::i;:::-;41155:12;;:57;;;;;;;:::i;:::-;;;;;;;;40938:618;;;41274:25;:31;41300:4;41274:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41324:1;41309:12;;:16;41274:51;41270:286;;;41353:33;41382:3;41353:24;41364:12;;41353:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41346:40;;41454:12;;41435:15;;41428:4;:22;;;;:::i;:::-;41427:39;;;;:::i;:::-;41405:18;;:61;;;;;;;:::i;:::-;;;;;;;;41528:12;;41509:15;;41502:4;:22;;;;:::i;:::-;41501:39;;;;:::i;:::-;41485:12;;:55;;;;;;;:::i;:::-;;;;;;;;41270:286;40938:618;41583:1;41576:4;:8;41572:91;;;41605:42;41621:4;41635;41642;41605:15;:42::i;:::-;41572:91;41689:4;41679:14;;;;;:::i;:::-;;;40886:819;41717:33;41733:4;41739:2;41743:6;41717:15;:33::i;:::-;37295:4463;;;;37182:4576;;;;:::o;2693:191::-;2767:16;2786:6;;;;;;;;;;;2767:25;;2812:8;2803:6;;:17;;;;;;;;;;;;;;;;;;2867:8;2836:40;;2857:8;2836:40;;;;;;;;;;;;2756:128;2693:191;:::o;36687:188::-;36804:5;36770:25;:31;36796:4;36770:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36861:5;36827:40;;36855:4;36827:40;;;;;;;;;;;;36687:188;;:::o;13897:733::-;14055:1;14037:20;;:6;:20;;;;14029:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14139:1;14118:23;;:9;:23;;;;14110:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14194:47;14215:6;14223:9;14234:6;14194:20;:47::i;:::-;14254:21;14278:9;:17;14288:6;14278:17;;;;;;;;;;;;;;;;14254:41;;14331:6;14314:13;:23;;14306:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14452:6;14436:13;:22;14416:9;:17;14426:6;14416:17;;;;;;;;;;;;;;;:42;;;;14504:6;14480:9;:20;14490:9;14480:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14545:9;14528:35;;14537:6;14528:35;;;14556:6;14528:35;;;;;;:::i;:::-;;;;;;;;14576:46;14596:6;14604:9;14615:6;14576:19;:46::i;:::-;14018:612;13897:733;;;:::o;42884:1439::-;42923:23;42949:24;42967:4;42949:9;:24::i;:::-;42923:50;;42984:25;43046:12;;43012:18;;:46;;;;:::i;:::-;42984:74;;43069:12;43117:1;43098:15;:20;:46;;;;43143:1;43122:17;:22;43098:46;43094:85;;;43161:7;;;;;43094:85;43234:2;43213:18;;:23;;;;:::i;:::-;43195:15;:41;43191:115;;;43292:2;43271:18;;:23;;;;:::i;:::-;43253:41;;43191:115;43367:23;43480:1;43447:17;43412:18;;43394:15;:36;;;;:::i;:::-;43393:71;;;;:::i;:::-;:88;;;;:::i;:::-;43367:114;;43492:26;43521:36;43541:15;43521;:19;;:36;;;;:::i;:::-;43492:65;;43570:25;43598:21;43570:49;;43632:36;43649:18;43632:16;:36::i;:::-;43681:18;43702:44;43728:17;43702:21;:25;;:44;;;;:::i;:::-;43681:65;;43759:17;43779:51;43812:17;43779:28;43794:12;;43779:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43759:71;;43843:23;43882:9;43869:10;:22;;;;:::i;:::-;43843:48;;43925:1;43904:18;:22;;;;43952:1;43937:12;:16;;;;43988:9;;;;;;;;;;;43980:23;;44011:9;43980:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43966:59;;;;;44060:1;44042:15;:19;:42;;;;;44083:1;44065:15;:19;44042:42;44038:278;;;44101:46;44114:15;44131;44101:12;:46::i;:::-;44167:137;44200:18;44237:15;44271:18;;44167:137;;;;;;;;:::i;:::-;;;;;;;;44038:278;42912:1411;;;;;;;;;42884:1439;:::o;21810:98::-;21868:7;21899:1;21895;:5;;;;:::i;:::-;21888:12;;21810:98;;;;:::o;22209:::-;22267:7;22298:1;22294;:5;;;;:::i;:::-;22287:12;;22209:98;;;;:::o;17658:125::-;;;;:::o;18387:124::-;;;;:::o;21453:98::-;21511:7;21542:1;21538;:5;;;;:::i;:::-;21531:12;;21453:98;;;;:::o;41766:589::-;41892:21;41930:1;41916:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41892:40;;41961:4;41943;41948:1;41943:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41987:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41977:4;41982:1;41977:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42022:62;42039:4;42054:15;42072:11;42022:8;:62::i;:::-;42123:15;:66;;;42204:11;42230:1;42274:4;42301;42321:15;42123:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41821:534;41766:589;:::o;42363:513::-;42511:62;42528:4;42543:15;42561:11;42511:8;:62::i;:::-;42616:15;:31;;;42655:9;42688:4;42708:11;42734:1;42777;42820:7;:5;:7::i;:::-;42842:15;42616:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42363:513;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:474::-;7449:6;7457;7506:2;7494:9;7485:7;7481:23;7477:32;7474:119;;;7512:79;;:::i;:::-;7474:119;7632:1;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7603:117;7759:2;7785:53;7830:7;7821:6;7810:9;7806:22;7785:53;:::i;:::-;7775:63;;7730:118;7381:474;;;;;:::o;7861:116::-;7931:21;7946:5;7931:21;:::i;:::-;7924:5;7921:32;7911:60;;7967:1;7964;7957:12;7911:60;7861:116;:::o;7983:133::-;8026:5;8064:6;8051:20;8042:29;;8080:30;8104:5;8080:30;:::i;:::-;7983:133;;;;:::o;8122:468::-;8187:6;8195;8244:2;8232:9;8223:7;8219:23;8215:32;8212:119;;;8250:79;;:::i;:::-;8212:119;8370:1;8395:53;8440:7;8431:6;8420:9;8416:22;8395:53;:::i;:::-;8385:63;;8341:117;8497:2;8523:50;8565:7;8556:6;8545:9;8541:22;8523:50;:::i;:::-;8513:60;;8468:115;8122:468;;;;;:::o;8596:323::-;8652:6;8701:2;8689:9;8680:7;8676:23;8672:32;8669:119;;;8707:79;;:::i;:::-;8669:119;8827:1;8852:50;8894:7;8885:6;8874:9;8870:22;8852:50;:::i;:::-;8842:60;;8798:114;8596:323;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:180::-;10455:77;10452:1;10445:88;10552:4;10549:1;10542:15;10576:4;10573:1;10566:15;10593:320;10637:6;10674:1;10668:4;10664:12;10654:22;;10721:1;10715:4;10711:12;10742:18;10732:81;;10798:4;10790:6;10786:17;10776:27;;10732:81;10860:2;10852:6;10849:14;10829:18;10826:38;10823:84;;;10879:18;;:::i;:::-;10823:84;10644:269;10593:320;;;:::o;10919:348::-;10959:7;10982:20;11000:1;10982:20;:::i;:::-;10977:25;;11016:20;11034:1;11016:20;:::i;:::-;11011:25;;11204:1;11136:66;11132:74;11129:1;11126:81;11121:1;11114:9;11107:17;11103:105;11100:131;;;11211:18;;:::i;:::-;11100:131;11259:1;11256;11252:9;11241:20;;10919:348;;;;:::o;11273:180::-;11321:77;11318:1;11311:88;11418:4;11415:1;11408:15;11442:4;11439:1;11432:15;11459:185;11499:1;11516:20;11534:1;11516:20;:::i;:::-;11511:25;;11550:20;11568:1;11550:20;:::i;:::-;11545:25;;11589:1;11579:35;;11594:18;;:::i;:::-;11579:35;11636:1;11633;11629:9;11624:14;;11459:185;;;;:::o;11650:234::-;11790:34;11786:1;11778:6;11774:14;11767:58;11859:17;11854:2;11846:6;11842:15;11835:42;11650:234;:::o;11890:366::-;12032:3;12053:67;12117:2;12112:3;12053:67;:::i;:::-;12046:74;;12129:93;12218:3;12129:93;:::i;:::-;12247:2;12242:3;12238:12;12231:19;;11890:366;;;:::o;12262:419::-;12428:4;12466:2;12455:9;12451:18;12443:26;;12515:9;12509:4;12505:20;12501:1;12490:9;12486:17;12479:47;12543:131;12669:4;12543:131;:::i;:::-;12535:139;;12262:419;;;:::o;12687:227::-;12827:34;12823:1;12815:6;12811:14;12804:58;12896:10;12891:2;12883:6;12879:15;12872:35;12687:227;:::o;12920:366::-;13062:3;13083:67;13147:2;13142:3;13083:67;:::i;:::-;13076:74;;13159:93;13248:3;13159:93;:::i;:::-;13277:2;13272:3;13268:12;13261:19;;12920:366;;;:::o;13292:419::-;13458:4;13496:2;13485:9;13481:18;13473:26;;13545:9;13539:4;13535:20;13531:1;13520:9;13516:17;13509:47;13573:131;13699:4;13573:131;:::i;:::-;13565:139;;13292:419;;;:::o;13717:176::-;13857:28;13853:1;13845:6;13841:14;13834:52;13717:176;:::o;13899:366::-;14041:3;14062:67;14126:2;14121:3;14062:67;:::i;:::-;14055:74;;14138:93;14227:3;14138:93;:::i;:::-;14256:2;14251:3;14247:12;14240:19;;13899:366;;;:::o;14271:419::-;14437:4;14475:2;14464:9;14460:18;14452:26;;14524:9;14518:4;14514:20;14510:1;14499:9;14495:17;14488:47;14552:131;14678:4;14552:131;:::i;:::-;14544:139;;14271:419;;;:::o;14696:178::-;14836:30;14832:1;14824:6;14820:14;14813:54;14696:178;:::o;14880:366::-;15022:3;15043:67;15107:2;15102:3;15043:67;:::i;:::-;15036:74;;15119:93;15208:3;15119:93;:::i;:::-;15237:2;15232:3;15228:12;15221:19;;14880:366;;;:::o;15252:419::-;15418:4;15456:2;15445:9;15441:18;15433:26;;15505:9;15499:4;15495:20;15491:1;15480:9;15476:17;15469:47;15533:131;15659:4;15533:131;:::i;:::-;15525:139;;15252:419;;;:::o;15677:143::-;15734:5;15765:6;15759:13;15750:22;;15781:33;15808:5;15781:33;:::i;:::-;15677:143;;;;:::o;15826:351::-;15896:6;15945:2;15933:9;15924:7;15920:23;15916:32;15913:119;;;15951:79;;:::i;:::-;15913:119;16071:1;16096:64;16152:7;16143:6;16132:9;16128:22;16096:64;:::i;:::-;16086:74;;16042:128;15826:351;;;;:::o;16183:332::-;16304:4;16342:2;16331:9;16327:18;16319:26;;16355:71;16423:1;16412:9;16408:17;16399:6;16355:71;:::i;:::-;16436:72;16504:2;16493:9;16489:18;16480:6;16436:72;:::i;:::-;16183:332;;;;;:::o;16521:137::-;16575:5;16606:6;16600:13;16591:22;;16622:30;16646:5;16622:30;:::i;:::-;16521:137;;;;:::o;16664:345::-;16731:6;16780:2;16768:9;16759:7;16755:23;16751:32;16748:119;;;16786:79;;:::i;:::-;16748:119;16906:1;16931:61;16984:7;16975:6;16964:9;16960:22;16931:61;:::i;:::-;16921:71;;16877:125;16664:345;;;;:::o;17015:157::-;17155:9;17151:1;17143:6;17139:14;17132:33;17015:157;:::o;17178:365::-;17320:3;17341:66;17405:1;17400:3;17341:66;:::i;:::-;17334:73;;17416:93;17505:3;17416:93;:::i;:::-;17534:2;17529:3;17525:12;17518:19;;17178:365;;;:::o;17549:419::-;17715:4;17753:2;17742:9;17738:18;17730:26;;17802:9;17796:4;17792:20;17788:1;17777:9;17773:17;17766:47;17830:131;17956:4;17830:131;:::i;:::-;17822:139;;17549:419;;;:::o;17974:244::-;18114:34;18110:1;18102:6;18098:14;18091:58;18183:27;18178:2;18170:6;18166:15;18159:52;17974:244;:::o;18224:366::-;18366:3;18387:67;18451:2;18446:3;18387:67;:::i;:::-;18380:74;;18463:93;18552:3;18463:93;:::i;:::-;18581:2;18576:3;18572:12;18565:19;;18224:366;;;:::o;18596:419::-;18762:4;18800:2;18789:9;18785:18;18777:26;;18849:9;18843:4;18839:20;18835:1;18824:9;18820:17;18813:47;18877:131;19003:4;18877:131;:::i;:::-;18869:139;;18596:419;;;:::o;19021:224::-;19161:34;19157:1;19149:6;19145:14;19138:58;19230:7;19225:2;19217:6;19213:15;19206:32;19021:224;:::o;19251:366::-;19393:3;19414:67;19478:2;19473:3;19414:67;:::i;:::-;19407:74;;19490:93;19579:3;19490:93;:::i;:::-;19608:2;19603:3;19599:12;19592:19;;19251:366;;;:::o;19623:419::-;19789:4;19827:2;19816:9;19812:18;19804:26;;19876:9;19870:4;19866:20;19862:1;19851:9;19847:17;19840:47;19904:131;20030:4;19904:131;:::i;:::-;19896:139;;19623:419;;;:::o;20048:223::-;20188:34;20184:1;20176:6;20172:14;20165:58;20257:6;20252:2;20244:6;20240:15;20233:31;20048:223;:::o;20277:366::-;20419:3;20440:67;20504:2;20499:3;20440:67;:::i;:::-;20433:74;;20516:93;20605:3;20516:93;:::i;:::-;20634:2;20629:3;20625:12;20618:19;;20277:366;;;:::o;20649:419::-;20815:4;20853:2;20842:9;20838:18;20830:26;;20902:9;20896:4;20892:20;20888:1;20877:9;20873:17;20866:47;20930:131;21056:4;20930:131;:::i;:::-;20922:139;;20649:419;;;:::o;21074:240::-;21214:34;21210:1;21202:6;21198:14;21191:58;21283:23;21278:2;21270:6;21266:15;21259:48;21074:240;:::o;21320:366::-;21462:3;21483:67;21547:2;21542:3;21483:67;:::i;:::-;21476:74;;21559:93;21648:3;21559:93;:::i;:::-;21677:2;21672:3;21668:12;21661:19;;21320:366;;;:::o;21692:419::-;21858:4;21896:2;21885:9;21881:18;21873:26;;21945:9;21939:4;21935:20;21931:1;21920:9;21916:17;21909:47;21973:131;22099:4;21973:131;:::i;:::-;21965:139;;21692:419;;;:::o;22117:239::-;22257:34;22253:1;22245:6;22241:14;22234:58;22326:22;22321:2;22313:6;22309:15;22302:47;22117:239;:::o;22362:366::-;22504:3;22525:67;22589:2;22584:3;22525:67;:::i;:::-;22518:74;;22601:93;22690:3;22601:93;:::i;:::-;22719:2;22714:3;22710:12;22703:19;;22362:366;;;:::o;22734:419::-;22900:4;22938:2;22927:9;22923:18;22915:26;;22987:9;22981:4;22977:20;22973:1;22962:9;22958:17;22951:47;23015:131;23141:4;23015:131;:::i;:::-;23007:139;;22734:419;;;:::o;23159:225::-;23299:34;23295:1;23287:6;23283:14;23276:58;23368:8;23363:2;23355:6;23351:15;23344:33;23159:225;:::o;23390:366::-;23532:3;23553:67;23617:2;23612:3;23553:67;:::i;:::-;23546:74;;23629:93;23718:3;23629:93;:::i;:::-;23747:2;23742:3;23738:12;23731:19;;23390:366;;;:::o;23762:419::-;23928:4;23966:2;23955:9;23951:18;23943:26;;24015:9;24009:4;24005:20;24001:1;23990:9;23986:17;23979:47;24043:131;24169:4;24043:131;:::i;:::-;24035:139;;23762:419;;;:::o;24187:223::-;24327:34;24323:1;24315:6;24311:14;24304:58;24396:6;24391:2;24383:6;24379:15;24372:31;24187:223;:::o;24416:366::-;24558:3;24579:67;24643:2;24638:3;24579:67;:::i;:::-;24572:74;;24655:93;24744:3;24655:93;:::i;:::-;24773:2;24768:3;24764:12;24757:19;;24416:366;;;:::o;24788:419::-;24954:4;24992:2;24981:9;24977:18;24969:26;;25041:9;25035:4;25031:20;25027:1;25016:9;25012:17;25005:47;25069:131;25195:4;25069:131;:::i;:::-;25061:139;;24788:419;;;:::o;25213:221::-;25353:34;25349:1;25341:6;25337:14;25330:58;25422:4;25417:2;25409:6;25405:15;25398:29;25213:221;:::o;25440:366::-;25582:3;25603:67;25667:2;25662:3;25603:67;:::i;:::-;25596:74;;25679:93;25768:3;25679:93;:::i;:::-;25797:2;25792:3;25788:12;25781:19;;25440:366;;;:::o;25812:419::-;25978:4;26016:2;26005:9;26001:18;25993:26;;26065:9;26059:4;26055:20;26051:1;26040:9;26036:17;26029:47;26093:131;26219:4;26093:131;:::i;:::-;26085:139;;25812:419;;;:::o;26237:224::-;26377:34;26373:1;26365:6;26361:14;26354:58;26446:7;26441:2;26433:6;26429:15;26422:32;26237:224;:::o;26467:366::-;26609:3;26630:67;26694:2;26689:3;26630:67;:::i;:::-;26623:74;;26706:93;26795:3;26706:93;:::i;:::-;26824:2;26819:3;26815:12;26808:19;;26467:366;;;:::o;26839:419::-;27005:4;27043:2;27032:9;27028:18;27020:26;;27092:9;27086:4;27082:20;27078:1;27067:9;27063:17;27056:47;27120:131;27246:4;27120:131;:::i;:::-;27112:139;;26839:419;;;:::o;27264:222::-;27404:34;27400:1;27392:6;27388:14;27381:58;27473:5;27468:2;27460:6;27456:15;27449:30;27264:222;:::o;27492:366::-;27634:3;27655:67;27719:2;27714:3;27655:67;:::i;:::-;27648:74;;27731:93;27820:3;27731:93;:::i;:::-;27849:2;27844:3;27840:12;27833:19;;27492:366;;;:::o;27864:419::-;28030:4;28068:2;28057:9;28053:18;28045:26;;28117:9;28111:4;28107:20;28103:1;28092:9;28088:17;28081:47;28145:131;28271:4;28145:131;:::i;:::-;28137:139;;27864:419;;;:::o;28289:172::-;28429:24;28425:1;28417:6;28413:14;28406:48;28289:172;:::o;28467:366::-;28609:3;28630:67;28694:2;28689:3;28630:67;:::i;:::-;28623:74;;28706:93;28795:3;28706:93;:::i;:::-;28824:2;28819:3;28815:12;28808:19;;28467:366;;;:::o;28839:419::-;29005:4;29043:2;29032:9;29028:18;29020:26;;29092:9;29086:4;29082:20;29078:1;29067:9;29063:17;29056:47;29120:131;29246:4;29120:131;:::i;:::-;29112:139;;28839:419;;;:::o;29264:302::-;29404:34;29400:1;29392:6;29388:14;29381:58;29473:34;29468:2;29460:6;29456:15;29449:59;29542:16;29537:2;29529:6;29525:15;29518:41;29264:302;:::o;29572:366::-;29714:3;29735:67;29799:2;29794:3;29735:67;:::i;:::-;29728:74;;29811:93;29900:3;29811:93;:::i;:::-;29929:2;29924:3;29920:12;29913:19;;29572:366;;;:::o;29944:419::-;30110:4;30148:2;30137:9;30133:18;30125:26;;30197:9;30191:4;30187:20;30183:1;30172:9;30168:17;30161:47;30225:131;30351:4;30225:131;:::i;:::-;30217:139;;29944:419;;;:::o;30369:240::-;30509:34;30505:1;30497:6;30493:14;30486:58;30578:23;30573:2;30565:6;30561:15;30554:48;30369:240;:::o;30615:366::-;30757:3;30778:67;30842:2;30837:3;30778:67;:::i;:::-;30771:74;;30854:93;30943:3;30854:93;:::i;:::-;30972:2;30967:3;30963:12;30956:19;;30615:366;;;:::o;30987:419::-;31153:4;31191:2;31180:9;31176:18;31168:26;;31240:9;31234:4;31230:20;31226:1;31215:9;31211:17;31204:47;31268:131;31394:4;31268:131;:::i;:::-;31260:139;;30987:419;;;:::o;31412:169::-;31552:21;31548:1;31540:6;31536:14;31529:45;31412:169;:::o;31587:366::-;31729:3;31750:67;31814:2;31809:3;31750:67;:::i;:::-;31743:74;;31826:93;31915:3;31826:93;:::i;:::-;31944:2;31939:3;31935:12;31928:19;;31587:366;;;:::o;31959:419::-;32125:4;32163:2;32152:9;32148:18;32140:26;;32212:9;32206:4;32202:20;32198:1;32187:9;32183:17;32176:47;32240:131;32366:4;32240:131;:::i;:::-;32232:139;;31959:419;;;:::o;32384:241::-;32524:34;32520:1;32512:6;32508:14;32501:58;32593:24;32588:2;32580:6;32576:15;32569:49;32384:241;:::o;32631:366::-;32773:3;32794:67;32858:2;32853:3;32794:67;:::i;:::-;32787:74;;32870:93;32959:3;32870:93;:::i;:::-;32988:2;32983:3;32979:12;32972:19;;32631:366;;;:::o;33003:419::-;33169:4;33207:2;33196:9;33192:18;33184:26;;33256:9;33250:4;33246:20;33242:1;33231:9;33227:17;33220:47;33284:131;33410:4;33284:131;:::i;:::-;33276:139;;33003:419;;;:::o;33428:191::-;33468:4;33488:20;33506:1;33488:20;:::i;:::-;33483:25;;33522:20;33540:1;33522:20;:::i;:::-;33517:25;;33561:1;33558;33555:8;33552:34;;;33566:18;;:::i;:::-;33552:34;33611:1;33608;33604:9;33596:17;;33428:191;;;;:::o;33625:225::-;33765:34;33761:1;33753:6;33749:14;33742:58;33834:8;33829:2;33821:6;33817:15;33810:33;33625:225;:::o;33856:366::-;33998:3;34019:67;34083:2;34078:3;34019:67;:::i;:::-;34012:74;;34095:93;34184:3;34095:93;:::i;:::-;34213:2;34208:3;34204:12;34197:19;;33856:366;;;:::o;34228:419::-;34394:4;34432:2;34421:9;34417:18;34409:26;;34481:9;34475:4;34471:20;34467:1;34456:9;34452:17;34445:47;34509:131;34635:4;34509:131;:::i;:::-;34501:139;;34228:419;;;:::o;34653:147::-;34754:11;34791:3;34776:18;;34653:147;;;;:::o;34806:114::-;;:::o;34926:398::-;35085:3;35106:83;35187:1;35182:3;35106:83;:::i;:::-;35099:90;;35198:93;35287:3;35198:93;:::i;:::-;35316:1;35311:3;35307:11;35300:18;;34926:398;;;:::o;35330:379::-;35514:3;35536:147;35679:3;35536:147;:::i;:::-;35529:154;;35700:3;35693:10;;35330:379;;;:::o;35715:442::-;35864:4;35902:2;35891:9;35887:18;35879:26;;35915:71;35983:1;35972:9;35968:17;35959:6;35915:71;:::i;:::-;35996:72;36064:2;36053:9;36049:18;36040:6;35996:72;:::i;:::-;36078;36146:2;36135:9;36131:18;36122:6;36078:72;:::i;:::-;35715:442;;;;;;:::o;36163:180::-;36211:77;36208:1;36201:88;36308:4;36305:1;36298:15;36332:4;36329:1;36322:15;36349:180;36397:77;36394:1;36387:88;36494:4;36491:1;36484:15;36518:4;36515:1;36508:15;36535:143;36592:5;36623:6;36617:13;36608:22;;36639:33;36666:5;36639:33;:::i;:::-;36535:143;;;;:::o;36684:351::-;36754:6;36803:2;36791:9;36782:7;36778:23;36774:32;36771:119;;;36809:79;;:::i;:::-;36771:119;36929:1;36954:64;37010:7;37001:6;36990:9;36986:22;36954:64;:::i;:::-;36944:74;;36900:128;36684:351;;;;:::o;37041:85::-;37086:7;37115:5;37104:16;;37041:85;;;:::o;37132:158::-;37190:9;37223:61;37241:42;37250:32;37276:5;37250:32;:::i;:::-;37241:42;:::i;:::-;37223:61;:::i;:::-;37210:74;;37132:158;;;:::o;37296:147::-;37391:45;37430:5;37391:45;:::i;:::-;37386:3;37379:58;37296:147;;:::o;37449:114::-;37516:6;37550:5;37544:12;37534:22;;37449:114;;;:::o;37569:184::-;37668:11;37702:6;37697:3;37690:19;37742:4;37737:3;37733:14;37718:29;;37569:184;;;;:::o;37759:132::-;37826:4;37849:3;37841:11;;37879:4;37874:3;37870:14;37862:22;;37759:132;;;:::o;37897:108::-;37974:24;37992:5;37974:24;:::i;:::-;37969:3;37962:37;37897:108;;:::o;38011:179::-;38080:10;38101:46;38143:3;38135:6;38101:46;:::i;:::-;38179:4;38174:3;38170:14;38156:28;;38011:179;;;;:::o;38196:113::-;38266:4;38298;38293:3;38289:14;38281:22;;38196:113;;;:::o;38345:732::-;38464:3;38493:54;38541:5;38493:54;:::i;:::-;38563:86;38642:6;38637:3;38563:86;:::i;:::-;38556:93;;38673:56;38723:5;38673:56;:::i;:::-;38752:7;38783:1;38768:284;38793:6;38790:1;38787:13;38768:284;;;38869:6;38863:13;38896:63;38955:3;38940:13;38896:63;:::i;:::-;38889:70;;38982:60;39035:6;38982:60;:::i;:::-;38972:70;;38828:224;38815:1;38812;38808:9;38803:14;;38768:284;;;38772:14;39068:3;39061:10;;38469:608;;;38345:732;;;;:::o;39083:831::-;39346:4;39384:3;39373:9;39369:19;39361:27;;39398:71;39466:1;39455:9;39451:17;39442:6;39398:71;:::i;:::-;39479:80;39555:2;39544:9;39540:18;39531:6;39479:80;:::i;:::-;39606:9;39600:4;39596:20;39591:2;39580:9;39576:18;39569:48;39634:108;39737:4;39728:6;39634:108;:::i;:::-;39626:116;;39752:72;39820:2;39809:9;39805:18;39796:6;39752:72;:::i;:::-;39834:73;39902:3;39891:9;39887:19;39878:6;39834:73;:::i;:::-;39083:831;;;;;;;;:::o;39920:807::-;40169:4;40207:3;40196:9;40192:19;40184:27;;40221:71;40289:1;40278:9;40274:17;40265:6;40221:71;:::i;:::-;40302:72;40370:2;40359:9;40355:18;40346:6;40302:72;:::i;:::-;40384:80;40460:2;40449:9;40445:18;40436:6;40384:80;:::i;:::-;40474;40550:2;40539:9;40535:18;40526:6;40474:80;:::i;:::-;40564:73;40632:3;40621:9;40617:19;40608:6;40564:73;:::i;:::-;40647;40715:3;40704:9;40700:19;40691:6;40647:73;:::i;:::-;39920:807;;;;;;;;;:::o;40733:663::-;40821:6;40829;40837;40886:2;40874:9;40865:7;40861:23;40857:32;40854:119;;;40892:79;;:::i;:::-;40854:119;41012:1;41037:64;41093:7;41084:6;41073:9;41069:22;41037:64;:::i;:::-;41027:74;;40983:128;41150:2;41176:64;41232:7;41223:6;41212:9;41208:22;41176:64;:::i;:::-;41166:74;;41121:129;41289:2;41315:64;41371:7;41362:6;41351:9;41347:22;41315:64;:::i;:::-;41305:74;;41260:129;40733:663;;;;;:::o

Swarm Source

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