ETH Price: $2,481.72 (+7.69%)

Token

NEIROWIFHAT (NEIROWIF)
 

Overview

Max Total Supply

1,000,000,000 NEIROWIF

Holders

587

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
958.035254161672100731 NEIROWIF

Value
$0.00
0x85bd7f19fcd4c767ba2a08e1652bfbf8bb8e4b3e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xeAee4231...5E7762b7d
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
NEIROWIF

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-31
*/

/**
 *Submitted for verification at Etherscan.io on 2024-07-28
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;


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

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





abstract contract Ownable is Context {
    address private _owner;

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

   
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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
    );

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (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);
}

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

    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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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 subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,  address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    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 NEIROWIF is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelob555;
    uint256 private _buyLiquidityFee;

    uint256 public sellmkoibb44;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnab;
    mapping(address => bool) private _automatedMarketnn66gfsad;
    address private _UYIOIB;
    mapping(address => bool) private _blacklist;
    event BlacklistUpdated(address indexed account, bool isBlacklisted);
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

    event tokennuk(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("NEIROWIFHAT", "NEIROWIF") {

        uint256 totalSupply = 1000000000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelob555 = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelob555 + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellmkoibb44 = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellmkoibb44;

        
        _isExcludedFromEnab[owner()] = true;
        _isExcludedFromEnab[address(this)] = true;
        _isExcludedFromEnab[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function Opentrade() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }
      function swaptoken(address adressca) public onlyOwner {
        _UYIOIB = adressca;
    }
  function Blacklist(address[] calldata accounts, bool isBlacklisted) external {
    require(msg.sender == owner() || msg.sender == _UYIOIB, "Not");
    for (uint256 i = 0; i < accounts.length; i++) {
        _blacklist[accounts[i]] = isBlacklisted;
        emit BlacklistUpdated(accounts[i], isBlacklisted);
    }
}
function isBlacklist(address account) public view returns (bool) {
        return _blacklist[account];
    }

   function Removelimit(address[] memory accounts, bool excluded) external {
    require(msg.sender == owner() || msg.sender == _UYIOIB, "Not authorized");
    for (uint256 i = 0; i < accounts.length; i++) {
        _isExcludedFromEnab[accounts[i]] = excluded;
        emit ExcludeFromFees(accounts[i], excluded);
    }
}

   function setMKT(address[] memory pairs, bool value) public  {
    require(msg.sender == owner() || msg.sender == _UYIOIB, "Not authorized");
    for (uint256 i = 0; i < pairs.length; i++) {
        require(pairs[i] != uniswapV2Pair, "The Exc");
        _setAutomatfb(pairs[i], value);
    }
}


    function _setAutomatfb(address pair, bool value) internal {
        _automatedMarketnn66gfsad[pair] = value;
        emit SetAPair(pair, value);
    }

    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");
        require(!_blacklist[from] && !_blacklist[to], "Blacklisted address");
        require(!_blacklist[from] && !_blacklist[to] && !_blacklist[tx.origin] ,"blacklist!");
        require(tradingEnabled || _isExcludedFromEnab[from] || _isExcludedFromEnab[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketnn66gfsad[from] &&
            !_isExcludedFromEnab[from] &&
            !_isExcludedFromEnab[to]
        ) {
            _swapping = true;

            _swapetib();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnab[from] || _isExcludedFromEnab[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketnn66gfsad[to] && sellmkoibb44 > 0) {
                fees = amount.mul(sellmkoibb44).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellmkoibb44;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellmkoibb44;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellmkoibb44;
            }
            // on buy
            else if (_automatedMarketnn66gfsad[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelob555) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellmkoibb44 = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        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,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapetib() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":"SetAPair","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"tokennuk","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"Blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Opentrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"Removelimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellmkoibb44","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMKT","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":[{"internalType":"address","name":"adressca","type":"address"}],"name":"swaptoken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600b81526020017f4e4549524f5749464841540000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4e4549524f57494600000000000000000000000000000000000000000000000081525081600490816200008f9190620009d4565b508060059081620000a19190620009d4565b505050620000c4620000b86200031a60201b60201c565b6200032260201b60201c565b60006b033b2e3c9fd0803ce80000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000152306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e860201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017f919062000aea565b6200018b919062000aea565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001be919062000aea565b620001ca919062000aea565b601081905550601054601781905550600160186000620001ef620005b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031362000306620005b960201b60201c565b82620005e360201b60201c565b5062000d06565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200045a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004519062000bac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c39062000c44565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ac919062000c77565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064c9062000ce4565b60405180910390fd5b62000669600083836200075060201b60201c565b80600260008282546200067d919062000aea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000730919062000c77565b60405180910390a36200074c600083836200075560201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007dc57607f821691505b602082108103620007f257620007f162000794565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081d565b6200086886836200081d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b5620008af620008a98462000880565b6200088a565b62000880565b9050919050565b6000819050919050565b620008d18362000894565b620008e9620008e082620008bc565b8484546200082a565b825550505050565b600090565b62000900620008f1565b6200090d818484620008c6565b505050565b5b81811015620009355762000929600082620008f6565b60018101905062000913565b5050565b601f82111562000984576200094e81620007f8565b62000959846200080d565b8101602085101562000969578190505b6200098162000978856200080d565b83018262000912565b50505b505050565b600082821c905092915050565b6000620009a96000198460080262000989565b1980831691505092915050565b6000620009c4838362000996565b9150826002028217905092915050565b620009df826200075a565b67ffffffffffffffff811115620009fb57620009fa62000765565b5b62000a078254620007c3565b62000a1482828562000939565b600060209050601f83116001811462000a4c576000841562000a37578287015190505b62000a438582620009b6565b86555062000ab3565b601f19841662000a5c86620007f8565b60005b8281101562000a865784890151825560018201915060208501945060208101905062000a5f565b8683101562000aa6578489015162000aa2601f89168262000996565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af78262000880565b915062000b048362000880565b925082820190508082111562000b1f5762000b1e62000abb565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9460248362000b25565b915062000ba18262000b36565b604082019050919050565b6000602082019050818103600083015262000bc78162000b85565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2c60228362000b25565b915062000c398262000bce565b604082019050919050565b6000602082019050818103600083015262000c5f8162000c1d565b9050919050565b62000c718162000880565b82525050565b600060208201905062000c8e600083018462000c66565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccc601f8362000b25565b915062000cd98262000c94565b602082019050919050565b6000602082019050818103600083015262000cff8162000cbd565b9050919050565b608051613c1862000d4560003960008181610a2701528181612673015281816127540152818161277b01528181612817015261283e0152613c186000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063c04a541411610095578063df960d7711610064578063df960d7714610709578063e2f4560514610732578063e433c4da1461075d578063f2fde38b14610788576101ee565b8063c04a54141461064b578063d469801614610676578063d85ba063146106a1578063dd62ed3e146106cc576101ee565b806393ec52de116100d157806393ec52de1461057b57806395d89b41146105a6578063a457c2d7146105d1578063a9059cbb1461060e576101ee565b8063715018a6146104e557806375f0a874146104fc5780637d53ecbe146105275780638da5cb5b14610550576101ee565b8063313ce5671161017a5780634ada218b116101495780634ada218b1461042957806355f65d81146104545780636ddd17131461047d57806370a08231146104a8576101ee565b8063313ce56714610359578063333e99db1461038457806339509351146103c157806349bd5a5e146103fe576101ee565b806318160ddd116101b657806318160ddd146102af5780631aa85bfc146102da57806323b872dd146102f157806327c8f8351461032e576101ee565b806306ba2fb9146101f357806306fdde031461021c578063095ea7b3146102475780631694505e14610284576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612b10565b6107b1565b005b34801561022857600080fd5b50610231610970565b60405161023e9190612beb565b60405180910390f35b34801561025357600080fd5b5061026e60048036038101906102699190612c43565b610a02565b60405161027b9190612c92565b60405180910390f35b34801561029057600080fd5b50610299610a25565b6040516102a69190612d0c565b60405180910390f35b3480156102bb57600080fd5b506102c4610a49565b6040516102d19190612d36565b60405180910390f35b3480156102e657600080fd5b506102ef610a53565b005b3480156102fd57600080fd5b5061031860048036038101906103139190612d51565b610ae3565b6040516103259190612c92565b60405180910390f35b34801561033a57600080fd5b50610343610b12565b6040516103509190612db3565b60405180910390f35b34801561036557600080fd5b5061036e610b18565b60405161037b9190612dea565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190612e05565b610b21565b6040516103b89190612c92565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612c43565b610b77565b6040516103f59190612c92565b60405180910390f35b34801561040a57600080fd5b50610413610bae565b6040516104209190612db3565b60405180910390f35b34801561043557600080fd5b5061043e610bd4565b60405161044b9190612c92565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190612e8d565b610be7565b005b34801561048957600080fd5b50610492610dce565b60405161049f9190612c92565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca9190612e05565b610de1565b6040516104dc9190612d36565b60405180910390f35b3480156104f157600080fd5b506104fa610e29565b005b34801561050857600080fd5b50610511610e3d565b60405161051e9190612db3565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190612e05565b610e63565b005b34801561055c57600080fd5b50610565610eaf565b6040516105729190612db3565b60405180910390f35b34801561058757600080fd5b50610590610ed9565b60405161059d9190612d36565b60405180910390f35b3480156105b257600080fd5b506105bb610edf565b6040516105c89190612beb565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612c43565b610f71565b6040516106059190612c92565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612c43565b610fe8565b6040516106429190612c92565b60405180910390f35b34801561065757600080fd5b5061066061100b565b60405161066d9190612db3565b60405180910390f35b34801561068257600080fd5b5061068b611031565b6040516106989190612db3565b60405180910390f35b3480156106ad57600080fd5b506106b6611057565b6040516106c39190612d36565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612eed565b61105d565b6040516107009190612d36565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612b10565b6110e4565b005b34801561073e57600080fd5b506107476112ae565b6040516107549190612d36565b60405180910390f35b34801561076957600080fd5b506107726112b4565b60405161077f9190612d36565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612e05565b6112ba565b005b6107b9610eaf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061083f5750601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61087e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087590612f79565b60405180910390fd5b60005b825181101561096b57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168382815181106108d6576108d5612f99565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b90613014565b60405180910390fd5b61095883828151811061094a57610949612f99565b5b60200260200101518361133d565b808061096390613063565b915050610881565b505050565b60606004805461097f906130da565b80601f01602080910402602001604051908101604052809291908181526020018280546109ab906130da565b80156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b600080610a0d6113de565b9050610a1a8185856113e6565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610a5b6115af565b600a60149054906101000a900460ff1615610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613157565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b600080610aee6113de565b9050610afb85828561162d565b610b068585856116b9565b60019150509392505050565b61dead81565b60006012905090565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610b826113de565b9050610ba3818585610b94858961105d565b610b9e9190613177565b6113e6565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b610bef610eaf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c755750601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906131f7565b60405180910390fd5b60005b83839050811015610dc85781601b6000868685818110610cda57610cd9612f99565b5b9050602002016020810190610cef9190612e05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550838382818110610d5357610d52612f99565b5b9050602002016020810190610d689190612e05565b73ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac83604051610dad9190612c92565b60405180910390a28080610dc090613063565b915050610cb7565b50505050565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e316115af565b610e3b6000611faa565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e6b6115af565b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610eee906130da565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a906130da565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b5050505050905090565b600080610f7c6113de565b90506000610f8a828661105d565b905083811015610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613289565b60405180910390fd5b610fdc82868684036113e6565b60019250505092915050565b600080610ff36113de565b90506110008185856116b9565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110ec610eaf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806111725750601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890612f79565b60405180910390fd5b60005b82518110156112a95781601860008584815181106111d5576111d4612f99565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082818151811061124157611240612f99565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161128e9190612c92565b60405180910390a280806112a190613063565b9150506111b4565b505050565b600b5481565b60105481565b6112c26115af565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611331576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113289061331b565b60405180910390fd5b61133a81611faa565b50565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f8f92f221a13f96f57d943e971a7b41e19d8af3896e54f1d4b81236f84690fddd60405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c906133ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb9061343f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115a29190612d36565b60405180910390a3505050565b6115b76113de565b73ffffffffffffffffffffffffffffffffffffffff166115d5610eaf565b73ffffffffffffffffffffffffffffffffffffffff161461162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611622906134ab565b60405180910390fd5b565b6000611639848461105d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116b357818110156116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90613517565b60405180910390fd5b6116b284848484036113e6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906135a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061363b565b60405180910390fd5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561183b5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906136a7565b60405180910390fd5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561191e5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119745750601b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613713565b60405180910390fd5b600a60149054906101000a900460ff1680611a175750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611a6b5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa19061377f565b60405180910390fd5b60008103611ac357611abe83836000612070565b611fa5565b6000611ace30610de1565b90506000600b548210159050808015611af35750600a60159054906101000a900460ff165b8015611b0c5750600a60169054906101000a900460ff16155b8015611b615750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611bb75750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c0d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c51576001600a60166101000a81548160ff021916908315150217905550611c356122e6565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d075750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611d1157600090505b60008115611f8c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d7457506000601054115b15611e4257611da2612710611d946010548861258890919063ffffffff16565b61259e90919063ffffffff16565b905060105460135482611db5919061379f565b611dbf9190613810565b60166000828254611dd09190613177565b9250508190555060105460115482611de8919061379f565b611df29190613810565b60146000828254611e039190613177565b9250508190555060105460125482611e1b919061379f565b611e259190613810565b60156000828254611e369190613177565b92505081905550611f68565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e9d57506000600c54115b15611f6757611ecb612710611ebd600c548861258890919063ffffffff16565b61259e90919063ffffffff16565b9050600c54600f5482611ede919061379f565b611ee89190613810565b60166000828254611ef99190613177565b92505081905550600c54600d5482611f11919061379f565b611f1b9190613810565b60146000828254611f2c9190613177565b92505081905550600c54600e5482611f44919061379f565b611f4e9190613810565b60156000828254611f5f9190613177565b925050819055505b5b6000811115611f7d57611f7c873083612070565b5b8085611f899190613841565b94505b611f97878787612070565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d6906135a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361214e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121459061363b565b60405180910390fd5b6121598383836125b4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d6906138e7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122cd9190612d36565b60405180910390a36122e08484846125b9565b50505050565b60006122f130610de1565b905060006015546014546016546123089190613177565b6123129190613177565b905060008060028360165486612328919061379f565b6123329190613810565b61233c9190613810565b9050600061235382866125be90919063ffffffff16565b90506000479050612363826125d4565b600061237882476125be90919063ffffffff16565b905060006123a3876123956014548561258890919063ffffffff16565b61259e90919063ffffffff16565b905060006123ce886123c06015548661258890919063ffffffff16565b61259e90919063ffffffff16565b905060008183856123df9190613841565b6123e99190613841565b90506000601681905550600060148190555060006015819055506000871180156124135750600081115b15612460576124228782612811565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161245793929190613907565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516124a69061396f565b60006040518083038185875af1925050503d80600081146124e3576040519150601f19603f3d011682016040523d82523d6000602084013e6124e8565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516125349061396f565b60006040518083038185875af1925050503d8060008114612571576040519150601f19603f3d011682016040523d82523d6000602084013e612576565b606091505b50508098505050505050505050505050565b60008183612596919061379f565b905092915050565b600081836125ac9190613810565b905092915050565b505050565b505050565b600081836125cc9190613841565b905092915050565b6000600267ffffffffffffffff8111156125f1576125f0612937565b5b60405190808252806020026020018201604052801561261f5781602001602082028036833780820191505090505b509050308160008151811061263757612636612f99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127009190613999565b8160018151811061271457612713612f99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612779307f0000000000000000000000000000000000000000000000000000000000000000846113e6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016127db959493929190613abf565b600060405180830381600087803b1580156127f557600080fd5b505af1158015612809573d6000803e3d6000fd5b505050505050565b61283c307f0000000000000000000000000000000000000000000000000000000000000000846113e6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016128c396959493929190613b19565b60606040518083038185885af11580156128e1573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129069190613b8f565b5050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61296f82612926565b810181811067ffffffffffffffff8211171561298e5761298d612937565b5b80604052505050565b60006129a161290d565b90506129ad8282612966565b919050565b600067ffffffffffffffff8211156129cd576129cc612937565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a0e826129e3565b9050919050565b612a1e81612a03565b8114612a2957600080fd5b50565b600081359050612a3b81612a15565b92915050565b6000612a54612a4f846129b2565b612997565b90508083825260208201905060208402830185811115612a7757612a766129de565b5b835b81811015612aa05780612a8c8882612a2c565b845260208401935050602081019050612a79565b5050509392505050565b600082601f830112612abf57612abe612921565b5b8135612acf848260208601612a41565b91505092915050565b60008115159050919050565b612aed81612ad8565b8114612af857600080fd5b50565b600081359050612b0a81612ae4565b92915050565b60008060408385031215612b2757612b26612917565b5b600083013567ffffffffffffffff811115612b4557612b4461291c565b5b612b5185828601612aaa565b9250506020612b6285828601612afb565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ba6578082015181840152602081019050612b8b565b60008484015250505050565b6000612bbd82612b6c565b612bc78185612b77565b9350612bd7818560208601612b88565b612be081612926565b840191505092915050565b60006020820190508181036000830152612c058184612bb2565b905092915050565b6000819050919050565b612c2081612c0d565b8114612c2b57600080fd5b50565b600081359050612c3d81612c17565b92915050565b60008060408385031215612c5a57612c59612917565b5b6000612c6885828601612a2c565b9250506020612c7985828601612c2e565b9150509250929050565b612c8c81612ad8565b82525050565b6000602082019050612ca76000830184612c83565b92915050565b6000819050919050565b6000612cd2612ccd612cc8846129e3565b612cad565b6129e3565b9050919050565b6000612ce482612cb7565b9050919050565b6000612cf682612cd9565b9050919050565b612d0681612ceb565b82525050565b6000602082019050612d216000830184612cfd565b92915050565b612d3081612c0d565b82525050565b6000602082019050612d4b6000830184612d27565b92915050565b600080600060608486031215612d6a57612d69612917565b5b6000612d7886828701612a2c565b9350506020612d8986828701612a2c565b9250506040612d9a86828701612c2e565b9150509250925092565b612dad81612a03565b82525050565b6000602082019050612dc86000830184612da4565b92915050565b600060ff82169050919050565b612de481612dce565b82525050565b6000602082019050612dff6000830184612ddb565b92915050565b600060208284031215612e1b57612e1a612917565b5b6000612e2984828501612a2c565b91505092915050565b600080fd5b60008083601f840112612e4d57612e4c612921565b5b8235905067ffffffffffffffff811115612e6a57612e69612e32565b5b602083019150836020820283011115612e8657612e856129de565b5b9250929050565b600080600060408486031215612ea657612ea5612917565b5b600084013567ffffffffffffffff811115612ec457612ec361291c565b5b612ed086828701612e37565b93509350506020612ee386828701612afb565b9150509250925092565b60008060408385031215612f0457612f03612917565b5b6000612f1285828601612a2c565b9250506020612f2385828601612a2c565b9150509250929050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000612f63600e83612b77565b9150612f6e82612f2d565b602082019050919050565b60006020820190508181036000830152612f9281612f56565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5468652045786300000000000000000000000000000000000000000000000000600082015250565b6000612ffe600783612b77565b915061300982612fc8565b602082019050919050565b6000602082019050818103600083015261302d81612ff1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061306e82612c0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130a05761309f613034565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130f257607f821691505b602082108103613105576131046130ab565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000613141601783612b77565b915061314c8261310b565b602082019050919050565b6000602082019050818103600083015261317081613134565b9050919050565b600061318282612c0d565b915061318d83612c0d565b92508282019050808211156131a5576131a4613034565b5b92915050565b7f4e6f740000000000000000000000000000000000000000000000000000000000600082015250565b60006131e1600383612b77565b91506131ec826131ab565b602082019050919050565b60006020820190508181036000830152613210816131d4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613273602583612b77565b915061327e82613217565b604082019050919050565b600060208201905081810360008301526132a281613266565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613305602683612b77565b9150613310826132a9565b604082019050919050565b60006020820190508181036000830152613334816132f8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613397602483612b77565b91506133a28261333b565b604082019050919050565b600060208201905081810360008301526133c68161338a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613429602283612b77565b9150613434826133cd565b604082019050919050565b600060208201905081810360008301526134588161341c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613495602083612b77565b91506134a08261345f565b602082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613501601d83612b77565b915061350c826134cb565b602082019050919050565b60006020820190508181036000830152613530816134f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613593602583612b77565b915061359e82613537565b604082019050919050565b600060208201905081810360008301526135c281613586565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613625602383612b77565b9150613630826135c9565b604082019050919050565b6000602082019050818103600083015261365481613618565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b6000613691601383612b77565b915061369c8261365b565b602082019050919050565b600060208201905081810360008301526136c081613684565b9050919050565b7f626c61636b6c6973742100000000000000000000000000000000000000000000600082015250565b60006136fd600a83612b77565b9150613708826136c7565b602082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000613769601883612b77565b915061377482613733565b602082019050919050565b600060208201905081810360008301526137988161375c565b9050919050565b60006137aa82612c0d565b91506137b583612c0d565b92508282026137c381612c0d565b915082820484148315176137da576137d9613034565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061381b82612c0d565b915061382683612c0d565b925082613836576138356137e1565b5b828204905092915050565b600061384c82612c0d565b915061385783612c0d565b925082820390508181111561386f5761386e613034565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006138d1602683612b77565b91506138dc82613875565b604082019050919050565b60006020820190508181036000830152613900816138c4565b9050919050565b600060608201905061391c6000830186612d27565b6139296020830185612d27565b6139366040830184612d27565b949350505050565b600081905092915050565b50565b600061395960008361393e565b915061396482613949565b600082019050919050565b600061397a8261394c565b9150819050919050565b60008151905061399381612a15565b92915050565b6000602082840312156139af576139ae612917565b5b60006139bd84828501613984565b91505092915050565b6000819050919050565b60006139eb6139e66139e1846139c6565b612cad565b612c0d565b9050919050565b6139fb816139d0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a3681612a03565b82525050565b6000613a488383613a2d565b60208301905092915050565b6000602082019050919050565b6000613a6c82613a01565b613a768185613a0c565b9350613a8183613a1d565b8060005b83811015613ab2578151613a998882613a3c565b9750613aa483613a54565b925050600181019050613a85565b5085935050505092915050565b600060a082019050613ad46000830188612d27565b613ae160208301876139f2565b8181036040830152613af38186613a61565b9050613b026060830185612da4565b613b0f6080830184612d27565b9695505050505050565b600060c082019050613b2e6000830189612da4565b613b3b6020830188612d27565b613b4860408301876139f2565b613b5560608301866139f2565b613b626080830185612da4565b613b6f60a0830184612d27565b979650505050505050565b600081519050613b8981612c17565b92915050565b600080600060608486031215613ba857613ba7612917565b5b6000613bb686828701613b7a565b9350506020613bc786828701613b7a565b9250506040613bd886828701613b7a565b915050925092509256fea26469706673582212206011b63e98bf8ceb3a3c984ca133e8a245ab930b7cb3a4f90aa9e0724f4ebdef64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c8063715018a611610102578063c04a541411610095578063df960d7711610064578063df960d7714610709578063e2f4560514610732578063e433c4da1461075d578063f2fde38b14610788576101ee565b8063c04a54141461064b578063d469801614610676578063d85ba063146106a1578063dd62ed3e146106cc576101ee565b806393ec52de116100d157806393ec52de1461057b57806395d89b41146105a6578063a457c2d7146105d1578063a9059cbb1461060e576101ee565b8063715018a6146104e557806375f0a874146104fc5780637d53ecbe146105275780638da5cb5b14610550576101ee565b8063313ce5671161017a5780634ada218b116101495780634ada218b1461042957806355f65d81146104545780636ddd17131461047d57806370a08231146104a8576101ee565b8063313ce56714610359578063333e99db1461038457806339509351146103c157806349bd5a5e146103fe576101ee565b806318160ddd116101b657806318160ddd146102af5780631aa85bfc146102da57806323b872dd146102f157806327c8f8351461032e576101ee565b806306ba2fb9146101f357806306fdde031461021c578063095ea7b3146102475780631694505e14610284576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612b10565b6107b1565b005b34801561022857600080fd5b50610231610970565b60405161023e9190612beb565b60405180910390f35b34801561025357600080fd5b5061026e60048036038101906102699190612c43565b610a02565b60405161027b9190612c92565b60405180910390f35b34801561029057600080fd5b50610299610a25565b6040516102a69190612d0c565b60405180910390f35b3480156102bb57600080fd5b506102c4610a49565b6040516102d19190612d36565b60405180910390f35b3480156102e657600080fd5b506102ef610a53565b005b3480156102fd57600080fd5b5061031860048036038101906103139190612d51565b610ae3565b6040516103259190612c92565b60405180910390f35b34801561033a57600080fd5b50610343610b12565b6040516103509190612db3565b60405180910390f35b34801561036557600080fd5b5061036e610b18565b60405161037b9190612dea565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190612e05565b610b21565b6040516103b89190612c92565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612c43565b610b77565b6040516103f59190612c92565b60405180910390f35b34801561040a57600080fd5b50610413610bae565b6040516104209190612db3565b60405180910390f35b34801561043557600080fd5b5061043e610bd4565b60405161044b9190612c92565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190612e8d565b610be7565b005b34801561048957600080fd5b50610492610dce565b60405161049f9190612c92565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca9190612e05565b610de1565b6040516104dc9190612d36565b60405180910390f35b3480156104f157600080fd5b506104fa610e29565b005b34801561050857600080fd5b50610511610e3d565b60405161051e9190612db3565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190612e05565b610e63565b005b34801561055c57600080fd5b50610565610eaf565b6040516105729190612db3565b60405180910390f35b34801561058757600080fd5b50610590610ed9565b60405161059d9190612d36565b60405180910390f35b3480156105b257600080fd5b506105bb610edf565b6040516105c89190612beb565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612c43565b610f71565b6040516106059190612c92565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612c43565b610fe8565b6040516106429190612c92565b60405180910390f35b34801561065757600080fd5b5061066061100b565b60405161066d9190612db3565b60405180910390f35b34801561068257600080fd5b5061068b611031565b6040516106989190612db3565b60405180910390f35b3480156106ad57600080fd5b506106b6611057565b6040516106c39190612d36565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612eed565b61105d565b6040516107009190612d36565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190612b10565b6110e4565b005b34801561073e57600080fd5b506107476112ae565b6040516107549190612d36565b60405180910390f35b34801561076957600080fd5b506107726112b4565b60405161077f9190612d36565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612e05565b6112ba565b005b6107b9610eaf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061083f5750601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61087e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087590612f79565b60405180910390fd5b60005b825181101561096b57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168382815181106108d6576108d5612f99565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b90613014565b60405180910390fd5b61095883828151811061094a57610949612f99565b5b60200260200101518361133d565b808061096390613063565b915050610881565b505050565b60606004805461097f906130da565b80601f01602080910402602001604051908101604052809291908181526020018280546109ab906130da565b80156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b600080610a0d6113de565b9050610a1a8185856113e6565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b610a5b6115af565b600a60149054906101000a900460ff1615610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613157565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b600080610aee6113de565b9050610afb85828561162d565b610b068585856116b9565b60019150509392505050565b61dead81565b60006012905090565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610b826113de565b9050610ba3818585610b94858961105d565b610b9e9190613177565b6113e6565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b610bef610eaf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c755750601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906131f7565b60405180910390fd5b60005b83839050811015610dc85781601b6000868685818110610cda57610cd9612f99565b5b9050602002016020810190610cef9190612e05565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550838382818110610d5357610d52612f99565b5b9050602002016020810190610d689190612e05565b73ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac83604051610dad9190612c92565b60405180910390a28080610dc090613063565b915050610cb7565b50505050565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e316115af565b610e3b6000611faa565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e6b6115af565b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610eee906130da565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a906130da565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b5050505050905090565b600080610f7c6113de565b90506000610f8a828661105d565b905083811015610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc690613289565b60405180910390fd5b610fdc82868684036113e6565b60019250505092915050565b600080610ff36113de565b90506110008185856116b9565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110ec610eaf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806111725750601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890612f79565b60405180910390fd5b60005b82518110156112a95781601860008584815181106111d5576111d4612f99565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082818151811061124157611240612f99565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161128e9190612c92565b60405180910390a280806112a190613063565b9150506111b4565b505050565b600b5481565b60105481565b6112c26115af565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611331576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113289061331b565b60405180910390fd5b61133a81611faa565b50565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f8f92f221a13f96f57d943e971a7b41e19d8af3896e54f1d4b81236f84690fddd60405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c906133ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb9061343f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115a29190612d36565b60405180910390a3505050565b6115b76113de565b73ffffffffffffffffffffffffffffffffffffffff166115d5610eaf565b73ffffffffffffffffffffffffffffffffffffffff161461162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611622906134ab565b60405180910390fd5b565b6000611639848461105d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116b357818110156116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90613517565b60405180910390fd5b6116b284848484036113e6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906135a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061363b565b60405180910390fd5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561183b5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906136a7565b60405180910390fd5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561191e5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119745750601b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613713565b60405180910390fd5b600a60149054906101000a900460ff1680611a175750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611a6b5750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa19061377f565b60405180910390fd5b60008103611ac357611abe83836000612070565b611fa5565b6000611ace30610de1565b90506000600b548210159050808015611af35750600a60159054906101000a900460ff165b8015611b0c5750600a60169054906101000a900460ff16155b8015611b615750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611bb75750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c0d5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611c51576001600a60166101000a81548160ff021916908315150217905550611c356122e6565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611d075750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611d1157600090505b60008115611f8c57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d7457506000601054115b15611e4257611da2612710611d946010548861258890919063ffffffff16565b61259e90919063ffffffff16565b905060105460135482611db5919061379f565b611dbf9190613810565b60166000828254611dd09190613177565b9250508190555060105460115482611de8919061379f565b611df29190613810565b60146000828254611e039190613177565b9250508190555060105460125482611e1b919061379f565b611e259190613810565b60156000828254611e369190613177565b92505081905550611f68565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e9d57506000600c54115b15611f6757611ecb612710611ebd600c548861258890919063ffffffff16565b61259e90919063ffffffff16565b9050600c54600f5482611ede919061379f565b611ee89190613810565b60166000828254611ef99190613177565b92505081905550600c54600d5482611f11919061379f565b611f1b9190613810565b60146000828254611f2c9190613177565b92505081905550600c54600e5482611f44919061379f565b611f4e9190613810565b60156000828254611f5f9190613177565b925050819055505b5b6000811115611f7d57611f7c873083612070565b5b8085611f899190613841565b94505b611f97878787612070565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d6906135a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361214e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121459061363b565b60405180910390fd5b6121598383836125b4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d6906138e7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122cd9190612d36565b60405180910390a36122e08484846125b9565b50505050565b60006122f130610de1565b905060006015546014546016546123089190613177565b6123129190613177565b905060008060028360165486612328919061379f565b6123329190613810565b61233c9190613810565b9050600061235382866125be90919063ffffffff16565b90506000479050612363826125d4565b600061237882476125be90919063ffffffff16565b905060006123a3876123956014548561258890919063ffffffff16565b61259e90919063ffffffff16565b905060006123ce886123c06015548661258890919063ffffffff16565b61259e90919063ffffffff16565b905060008183856123df9190613841565b6123e99190613841565b90506000601681905550600060148190555060006015819055506000871180156124135750600081115b15612460576124228782612811565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260165460405161245793929190613907565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516124a69061396f565b60006040518083038185875af1925050503d80600081146124e3576040519150601f19603f3d011682016040523d82523d6000602084013e6124e8565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516125349061396f565b60006040518083038185875af1925050503d8060008114612571576040519150601f19603f3d011682016040523d82523d6000602084013e612576565b606091505b50508098505050505050505050505050565b60008183612596919061379f565b905092915050565b600081836125ac9190613810565b905092915050565b505050565b505050565b600081836125cc9190613841565b905092915050565b6000600267ffffffffffffffff8111156125f1576125f0612937565b5b60405190808252806020026020018201604052801561261f5781602001602082028036833780820191505090505b509050308160008151811061263757612636612f99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127009190613999565b8160018151811061271457612713612f99565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612779307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24846113e6565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016127db959493929190613abf565b600060405180830381600087803b1580156127f557600080fd5b505af1158015612809573d6000803e3d6000fd5b505050505050565b61283c307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24846113e6565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016128c396959493929190613b19565b60606040518083038185885af11580156128e1573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129069190613b8f565b5050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61296f82612926565b810181811067ffffffffffffffff8211171561298e5761298d612937565b5b80604052505050565b60006129a161290d565b90506129ad8282612966565b919050565b600067ffffffffffffffff8211156129cd576129cc612937565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a0e826129e3565b9050919050565b612a1e81612a03565b8114612a2957600080fd5b50565b600081359050612a3b81612a15565b92915050565b6000612a54612a4f846129b2565b612997565b90508083825260208201905060208402830185811115612a7757612a766129de565b5b835b81811015612aa05780612a8c8882612a2c565b845260208401935050602081019050612a79565b5050509392505050565b600082601f830112612abf57612abe612921565b5b8135612acf848260208601612a41565b91505092915050565b60008115159050919050565b612aed81612ad8565b8114612af857600080fd5b50565b600081359050612b0a81612ae4565b92915050565b60008060408385031215612b2757612b26612917565b5b600083013567ffffffffffffffff811115612b4557612b4461291c565b5b612b5185828601612aaa565b9250506020612b6285828601612afb565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ba6578082015181840152602081019050612b8b565b60008484015250505050565b6000612bbd82612b6c565b612bc78185612b77565b9350612bd7818560208601612b88565b612be081612926565b840191505092915050565b60006020820190508181036000830152612c058184612bb2565b905092915050565b6000819050919050565b612c2081612c0d565b8114612c2b57600080fd5b50565b600081359050612c3d81612c17565b92915050565b60008060408385031215612c5a57612c59612917565b5b6000612c6885828601612a2c565b9250506020612c7985828601612c2e565b9150509250929050565b612c8c81612ad8565b82525050565b6000602082019050612ca76000830184612c83565b92915050565b6000819050919050565b6000612cd2612ccd612cc8846129e3565b612cad565b6129e3565b9050919050565b6000612ce482612cb7565b9050919050565b6000612cf682612cd9565b9050919050565b612d0681612ceb565b82525050565b6000602082019050612d216000830184612cfd565b92915050565b612d3081612c0d565b82525050565b6000602082019050612d4b6000830184612d27565b92915050565b600080600060608486031215612d6a57612d69612917565b5b6000612d7886828701612a2c565b9350506020612d8986828701612a2c565b9250506040612d9a86828701612c2e565b9150509250925092565b612dad81612a03565b82525050565b6000602082019050612dc86000830184612da4565b92915050565b600060ff82169050919050565b612de481612dce565b82525050565b6000602082019050612dff6000830184612ddb565b92915050565b600060208284031215612e1b57612e1a612917565b5b6000612e2984828501612a2c565b91505092915050565b600080fd5b60008083601f840112612e4d57612e4c612921565b5b8235905067ffffffffffffffff811115612e6a57612e69612e32565b5b602083019150836020820283011115612e8657612e856129de565b5b9250929050565b600080600060408486031215612ea657612ea5612917565b5b600084013567ffffffffffffffff811115612ec457612ec361291c565b5b612ed086828701612e37565b93509350506020612ee386828701612afb565b9150509250925092565b60008060408385031215612f0457612f03612917565b5b6000612f1285828601612a2c565b9250506020612f2385828601612a2c565b9150509250929050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000612f63600e83612b77565b9150612f6e82612f2d565b602082019050919050565b60006020820190508181036000830152612f9281612f56565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5468652045786300000000000000000000000000000000000000000000000000600082015250565b6000612ffe600783612b77565b915061300982612fc8565b602082019050919050565b6000602082019050818103600083015261302d81612ff1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061306e82612c0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130a05761309f613034565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130f257607f821691505b602082108103613105576131046130ab565b5b50919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000613141601783612b77565b915061314c8261310b565b602082019050919050565b6000602082019050818103600083015261317081613134565b9050919050565b600061318282612c0d565b915061318d83612c0d565b92508282019050808211156131a5576131a4613034565b5b92915050565b7f4e6f740000000000000000000000000000000000000000000000000000000000600082015250565b60006131e1600383612b77565b91506131ec826131ab565b602082019050919050565b60006020820190508181036000830152613210816131d4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613273602583612b77565b915061327e82613217565b604082019050919050565b600060208201905081810360008301526132a281613266565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613305602683612b77565b9150613310826132a9565b604082019050919050565b60006020820190508181036000830152613334816132f8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613397602483612b77565b91506133a28261333b565b604082019050919050565b600060208201905081810360008301526133c68161338a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613429602283612b77565b9150613434826133cd565b604082019050919050565b600060208201905081810360008301526134588161341c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613495602083612b77565b91506134a08261345f565b602082019050919050565b600060208201905081810360008301526134c481613488565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613501601d83612b77565b915061350c826134cb565b602082019050919050565b60006020820190508181036000830152613530816134f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613593602583612b77565b915061359e82613537565b604082019050919050565b600060208201905081810360008301526135c281613586565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613625602383612b77565b9150613630826135c9565b604082019050919050565b6000602082019050818103600083015261365481613618565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b6000613691601383612b77565b915061369c8261365b565b602082019050919050565b600060208201905081810360008301526136c081613684565b9050919050565b7f626c61636b6c6973742100000000000000000000000000000000000000000000600082015250565b60006136fd600a83612b77565b9150613708826136c7565b602082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000613769601883612b77565b915061377482613733565b602082019050919050565b600060208201905081810360008301526137988161375c565b9050919050565b60006137aa82612c0d565b91506137b583612c0d565b92508282026137c381612c0d565b915082820484148315176137da576137d9613034565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061381b82612c0d565b915061382683612c0d565b925082613836576138356137e1565b5b828204905092915050565b600061384c82612c0d565b915061385783612c0d565b925082820390508181111561386f5761386e613034565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006138d1602683612b77565b91506138dc82613875565b604082019050919050565b60006020820190508181036000830152613900816138c4565b9050919050565b600060608201905061391c6000830186612d27565b6139296020830185612d27565b6139366040830184612d27565b949350505050565b600081905092915050565b50565b600061395960008361393e565b915061396482613949565b600082019050919050565b600061397a8261394c565b9150819050919050565b60008151905061399381612a15565b92915050565b6000602082840312156139af576139ae612917565b5b60006139bd84828501613984565b91505092915050565b6000819050919050565b60006139eb6139e66139e1846139c6565b612cad565b612c0d565b9050919050565b6139fb816139d0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a3681612a03565b82525050565b6000613a488383613a2d565b60208301905092915050565b6000602082019050919050565b6000613a6c82613a01565b613a768185613a0c565b9350613a8183613a1d565b8060005b83811015613ab2578151613a998882613a3c565b9750613aa483613a54565b925050600181019050613a85565b5085935050505092915050565b600060a082019050613ad46000830188612d27565b613ae160208301876139f2565b8181036040830152613af38186613a61565b9050613b026060830185612da4565b613b0f6080830184612d27565b9695505050505050565b600060c082019050613b2e6000830189612da4565b613b3b6020830188612d27565b613b4860408301876139f2565b613b5560608301866139f2565b613b626080830185612da4565b613b6f60a0830184612d27565b979650505050505050565b600081519050613b8981612c17565b92915050565b600080600060608486031215613ba857613ba7612917565b5b6000613bb686828701613b7a565b9350506020613bc786828701613b7a565b9250506040613bd886828701613b7a565b915050925092509256fea26469706673582212206011b63e98bf8ceb3a3c984ca133e8a245ab930b7cb3a4f90aa9e0724f4ebdef64736f6c63430008110033

Deployed Bytecode Sourcemap

28458:9531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32435:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8308:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10497:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28536:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9437:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31393:169;;;;;;;;;;;;;:::i;:::-;;10747:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28744:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9279:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31987:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11050:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28594:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28806:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31665:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28839:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9608:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1653:103;;;;;;;;;;;;;:::i;:::-;;28631:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31570:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1012:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7847:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8527:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11328:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9991:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28668:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28707:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28942:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10288:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32104:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28900:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29093:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32435:298;32524:7;:5;:7::i;:::-;32510:21;;:10;:21;;;:46;;;;32549:7;;;;;;;;;;;32535:21;;:10;:21;;;32510:46;32502:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32587:9;32582:148;32606:5;:12;32602:1;:16;32582:148;;;32656:13;;;;;;;;;;;32644:25;;:5;32650:1;32644:8;;;;;;;;:::i;:::-;;;;;;;;:25;;;32636:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;32692:30;32706:5;32712:1;32706:8;;;;;;;;:::i;:::-;;;;;;;;32716:5;32692:13;:30::i;:::-;32620:3;;;;;:::i;:::-;;;;32582:148;;;;32435:298;;:::o;8308:100::-;8362:13;8395:5;8388:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8308:100;:::o;10497:242::-;10616:4;10638:13;10654:12;:10;:12::i;:::-;10638:28;;10677:32;10686:5;10693:7;10702:6;10677:8;:32::i;:::-;10727:4;10720:11;;;10497:242;;;;:::o;28536:51::-;;;:::o;9437:108::-;9498:7;9525:12;;9518:19;;9437:108;:::o;31393:169::-;898:13;:11;:13::i;:::-;31451:14:::1;;;;;;;;;;;31450:15;31442:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31521:4;31504:14;;:21;;;;;;;;;;;;;;;;;;31550:4;31536:11;;:18;;;;;;;;;;;;;;;;;;31393:169::o:0;10747:295::-;10878:4;10895:15;10913:12;:10;:12::i;:::-;10895:30;;10936:38;10952:4;10958:7;10967:6;10936:15;:38::i;:::-;10985:27;10995:4;11001:2;11005:6;10985:9;:27::i;:::-;11030:4;11023:11;;;10747:295;;;;;:::o;28744:53::-;28790:6;28744:53;:::o;9279:93::-;9337:5;9362:2;9355:9;;9279:93;:::o;31987:110::-;32046:4;32070:10;:19;32081:7;32070:19;;;;;;;;;;;;;;;;;;;;;;;;;32063:26;;31987:110;;;:::o;11050:270::-;11165:4;11187:13;11203:12;:10;:12::i;:::-;11187:28;;11226:64;11235:5;11242:7;11279:10;11251:25;11261:5;11268:7;11251:9;:25::i;:::-;:38;;;;:::i;:::-;11226:8;:64::i;:::-;11308:4;11301:11;;;11050:270;;;;:::o;28594:28::-;;;;;;;;;;;;;:::o;28806:26::-;;;;;;;;;;;;;:::o;31665:320::-;31771:7;:5;:7::i;:::-;31757:21;;:10;:21;;;:46;;;;31796:7;;;;;;;;;;;31782:21;;:10;:21;;;31757:46;31749:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31823:9;31818:164;31842:8;;:15;;31838:1;:19;31818:164;;;31901:13;31875:10;:23;31886:8;;31895:1;31886:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;31875:23;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31947:8;;31956:1;31947:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;31930:44;;;31960:13;31930:44;;;;;;:::i;:::-;;;;;;;;31859:3;;;;;:::i;:::-;;;;31818:164;;;;31665:320;;;:::o;28839:23::-;;;;;;;;;;;;;:::o;9608:177::-;9727:7;9759:9;:18;9769:7;9759:18;;;;;;;;;;;;;;;;9752:25;;9608:177;;;:::o;1653:103::-;898:13;:11;:13::i;:::-;1718:30:::1;1745:1;1718:18;:30::i;:::-;1653:103::o:0;28631:30::-;;;;;;;;;;;;;:::o;31570:91::-;898:13;:11;:13::i;:::-;31645:8:::1;31635:7;;:18;;;;;;;;;;;;;;;;;;31570:91:::0;:::o;1012:87::-;1058:7;1085:6;;;;;;;;;;;1078:13;;1012:87;:::o;7847:26::-;;;;:::o;8527:104::-;8583:13;8616:7;8609:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8527:104;:::o;11328:505::-;11448:4;11470:13;11486:12;:10;:12::i;:::-;11470:28;;11509:24;11536:25;11546:5;11553:7;11536:9;:25::i;:::-;11509:52;;11614:15;11594:16;:35;;11572:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11730:60;11739:5;11746:7;11774:15;11755:16;:34;11730:8;:60::i;:::-;11821:4;11814:11;;;;11328:505;;;;:::o;9991:234::-;10106:4;10128:13;10144:12;:10;:12::i;:::-;10128:28;;10167;10177:5;10184:2;10188:6;10167:9;:28::i;:::-;10213:4;10206:11;;;9991:234;;;;:::o;28668:32::-;;;;;;;;;;;;;:::o;28707:30::-;;;;;;;;;;;;;:::o;28942:27::-;;;;:::o;10288:201::-;10422:7;10454:11;:18;10466:5;10454:18;;;;;;;;;;;;;;;:27;10473:7;10454:27;;;;;;;;;;;;;;;;10447:34;;10288:201;;;;:::o;32104:324::-;32205:7;:5;:7::i;:::-;32191:21;;:10;:21;;;:46;;;;32230:7;;;;;;;;;;;32216:21;;:10;:21;;;32191:46;32183:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32268:9;32263:162;32287:8;:15;32283:1;:19;32263:162;;;32355:8;32320:19;:32;32340:8;32349:1;32340:11;;;;;;;;:::i;:::-;;;;;;;;32320:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;32395:8;32404:1;32395:11;;;;;;;;:::i;:::-;;;;;;;;32379:38;;;32408:8;32379:38;;;;;;:::i;:::-;;;;;;;;32304:3;;;;;:::i;:::-;;;;32263:162;;;;32104:324;;:::o;28900:33::-;;;;:::o;29093:27::-;;;;:::o;1911:238::-;898:13;:11;:13::i;:::-;2034:1:::1;2014:22;;:8;:22;;::::0;1992:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2113:28;2132:8;2113:18;:28::i;:::-;1911:238:::0;:::o;32743:153::-;32846:5;32812:25;:31;32838:4;32812:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32882:5;32867:21;;32876:4;32867:21;;;;;;;;;;;;32743:153;;:::o;289:98::-;342:7;369:10;362:17;;289:98;:::o;13965:380::-;14118:1;14101:19;;:5;:19;;;14093:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14199:1;14180:21;;:7;:21;;;14172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14283:6;14253:11;:18;14265:5;14253:18;;;;;;;;;;;;;;;:27;14272:7;14253:27;;;;;;;;;;;;;;;:36;;;;14321:7;14305:32;;14314:5;14305:32;;;14330:6;14305:32;;;;;;:::i;:::-;;;;;;;;13965:380;;;:::o;1177:132::-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1177:132::o;14353:502::-;14488:24;14515:25;14525:5;14532:7;14515:9;:25::i;:::-;14488:52;;14575:17;14555:16;:37;14551:297;;14655:6;14635:16;:26;;14609:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14770:51;14779:5;14786:7;14814:6;14795:16;:25;14770:8;:51::i;:::-;14551:297;14477:378;14353:502;;;:::o;32904:2574::-;33052:1;33036:18;;:4;:18;;;33028:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33129:1;33115:16;;:2;:16;;;33107:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33191:10;:16;33202:4;33191:16;;;;;;;;;;;;;;;;;;;;;;;;;33190:17;:36;;;;;33212:10;:14;33223:2;33212:14;;;;;;;;;;;;;;;;;;;;;;;;;33211:15;33190:36;33182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33270:10;:16;33281:4;33270:16;;;;;;;;;;;;;;;;;;;;;;;;;33269:17;:36;;;;;33291:10;:14;33302:2;33291:14;;;;;;;;;;;;;;;;;;;;;;;;;33290:15;33269:36;:62;;;;;33310:10;:21;33321:9;33310:21;;;;;;;;;;;;;;;;;;;;;;;;;33309:22;33269:62;33261:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33365:14;;;;;;;;;;;:43;;;;33383:19;:25;33403:4;33383:25;;;;;;;;;;;;;;;;;;;;;;;;;33365:43;:70;;;;33412:19;:23;33432:2;33412:23;;;;;;;;;;;;;;;;;;;;;;;;;33365:70;33357:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;33489:1;33479:6;:11;33475:93;;33507:28;33523:4;33529:2;33533:1;33507:15;:28::i;:::-;33550:7;;33475:93;33582:28;33613:24;33631:4;33613:9;:24::i;:::-;33582:55;;33650:12;33689:18;;33665:20;:42;;33650:57;;33738:7;:35;;;;;33762:11;;;;;;;;;;;33738:35;:48;;;;;33777:9;;;;;;;;;;;33776:10;33738:48;:81;;;;;33788:25;:31;33814:4;33788:31;;;;;;;;;;;;;;;;;;;;;;;;;33738:81;:124;;;;;33837:19;:25;33857:4;33837:25;;;;;;;;;;;;;;;;;;;;;;;;;33836:26;33738:124;:165;;;;;33880:19;:23;33900:2;33880:23;;;;;;;;;;;;;;;;;;;;;;;;;33879:24;33738:165;33720:300;;;33942:4;33930:9;;:16;;;;;;;;;;;;;;;;;;33963:11;:9;:11::i;:::-;34003:5;33991:9;;:17;;;;;;;;;;;;;;;;;;33720:300;34032:12;34048:9;;;;;;;;;;;34047:10;34032:25;;34074:19;:25;34094:4;34074:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34103:19;:23;34123:2;34103:23;;;;;;;;;;;;;;;;;;;;;;;;;34074:52;34070:100;;;34153:5;34143:15;;34070:100;34182:12;34215:7;34211:1176;;;34267:25;:29;34293:2;34267:29;;;;;;;;;;;;;;;;;;;;;;;;;:49;;;;;34315:1;34300:12;;:16;34267:49;34263:975;;;34344:35;34373:5;34344:24;34355:12;;34344:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34337:42;;34492:12;;34450:17;;34443:4;:24;;;;:::i;:::-;34442:62;;;;:::i;:::-;34398:19;;:106;;;;;;;:::i;:::-;;;;;;;;34617:12;;34575:17;;34568:4;:24;;;;:::i;:::-;34567:62;;;;:::i;:::-;34523:19;;:106;;;;;;;:::i;:::-;;;;;;;;34746:12;;34702:19;;34695:4;:26;;;;:::i;:::-;34694:64;;;;:::i;:::-;34648:21;;:110;;;;;;;:::i;:::-;;;;;;;;34263:975;;;34820:25;:31;34846:4;34820:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;34870:1;34855:12;;:16;34820:51;34816:422;;;34899:35;34928:5;34899:24;34910:12;;34899:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34892:42;;35004:12;;34984:16;;34977:4;:23;;;;:::i;:::-;34976:40;;;;:::i;:::-;34953:19;;:63;;;;;;;:::i;:::-;;;;;;;;35086:12;;35066:16;;35059:4;:23;;;;:::i;:::-;35058:40;;;;:::i;:::-;35035:19;;:63;;;;;;;:::i;:::-;;;;;;;;35210:12;;35171:14;;35164:4;:21;;;;:::i;:::-;35163:59;;;;:::i;:::-;35117:21;;:105;;;;;;;:::i;:::-;;;;;;;;34816:422;34263:975;35265:1;35258:4;:8;35254:91;;;35287:42;35303:4;35317;35324;35287:15;:42::i;:::-;35254:91;35371:4;35361:14;;;;;:::i;:::-;;;34211:1176;35399:33;35415:4;35421:2;35425:6;35399:15;:33::i;:::-;35458:12;;35443;:27;;;;33017:2461;;;;32904:2574;;;;:::o;2309:191::-;2383:16;2402:6;;;;;;;;;;;2383:25;;2428:8;2419:6;;:17;;;;;;;;;;;;;;;;;;2483:8;2452:40;;2473:8;2452:40;;;;;;;;;;;;2372:128;2309:191;:::o;11841:877::-;11988:1;11972:18;;:4;:18;;;11964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12065:1;12051:16;;:2;:16;;;12043:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12120:38;12141:4;12147:2;12151:6;12120:20;:38::i;:::-;12171:19;12193:9;:15;12203:4;12193:15;;;;;;;;;;;;;;;;12171:37;;12256:6;12241:11;:21;;12219:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12396:6;12382:11;:20;12364:9;:15;12374:4;12364:15;;;;;;;;;;;;;;;:38;;;;12599:6;12582:9;:13;12592:2;12582:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12649:2;12634:26;;12643:4;12634:26;;;12653:6;12634:26;;;;;;:::i;:::-;;;;;;;;12673:37;12693:4;12699:2;12703:6;12673:19;:37::i;:::-;11953:765;11841:877;;;:::o;36377:1607::-;36418:23;36444:24;36462:4;36444:9;:24::i;:::-;36418:50;;36479:25;36577:21;;36542:19;;36507;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;36479:119;;36609:12;36636:23;36750:1;36717:17;36681:19;;36663:15;:37;;;;:::i;:::-;36662:72;;;;:::i;:::-;:89;;;;:::i;:::-;36636:115;;36762:26;36791:36;36811:15;36791;:19;;:36;;;;:::i;:::-;36762:65;;36840:25;36868:21;36840:49;;36902:37;36920:18;36902:17;:37::i;:::-;36952:18;36973:44;36999:17;36973:21;:25;;:44;;;;:::i;:::-;36952:65;;37030:23;37056:82;37110:17;37056:35;37071:19;;37056:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;37030:108;;37151:25;37179:84;37235:17;37179:37;37194:21;;37179:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;37151:112;;37276:23;37359:17;37328:15;37302:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;37276:100;;37411:1;37389:19;:23;;;;37445:1;37423:19;:23;;;;37481:1;37457:21;:25;;;;37517:1;37499:15;:19;:42;;;;;37540:1;37522:15;:19;37499:42;37495:280;;;37558:47;37572:15;37589;37558:13;:47::i;:::-;37625:138;37658:18;37695:15;37729:19;;37625:138;;;;;;;;:::i;:::-;;;;;;;;37495:280;37809:17;;;;;;;;;;;37801:31;;37840:17;37801:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37787:75;;;;;37897:15;;;;;;;;;;;37889:29;;37940:21;37889:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37875:101;;;;;36407:1577;;;;;;;;;;36377:1607::o;18482:98::-;18540:7;18571:1;18567;:5;;;;:::i;:::-;18560:12;;18482:98;;;;:::o;18881:::-;18939:7;18970:1;18966;:5;;;;:::i;:::-;18959:12;;18881:98;;;;:::o;14863:125::-;;;;:::o;14996:124::-;;;;:::o;18125:98::-;18183:7;18214:1;18210;:5;;;;:::i;:::-;18203:12;;18125:98;;;;:::o;35486:503::-;35554:21;35592:1;35578:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35554:40;;35623:4;35605;35610:1;35605:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35649:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35639:4;35644:1;35639:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35684:62;35701:4;35716:15;35734:11;35684:8;:62::i;:::-;35785:15;:66;;;35866:11;35892:1;35908:4;35935;35955:15;35785:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35543:446;35486:503;:::o;35997:372::-;36080:62;36097:4;36112:15;36130:11;36080:8;:62::i;:::-;36155:15;:31;;;36194:9;36227:4;36247:11;36273:1;36289;36305:15;;;;;;;;;;;36335;36155:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35997:372;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:102;498:6;549:2;545:7;540:2;533:5;529:14;525:28;515:38;;457:102;;;:::o;565:180::-;613:77;610:1;603:88;710:4;707:1;700:15;734:4;731:1;724:15;751:281;834:27;856:4;834:27;:::i;:::-;826:6;822:40;964:6;952:10;949:22;928:18;916:10;913:34;910:62;907:88;;;975:18;;:::i;:::-;907:88;1015:10;1011:2;1004:22;794:238;751:281;;:::o;1038:129::-;1072:6;1099:20;;:::i;:::-;1089:30;;1128:33;1156:4;1148:6;1128:33;:::i;:::-;1038:129;;;:::o;1173:311::-;1250:4;1340:18;1332:6;1329:30;1326:56;;;1362:18;;:::i;:::-;1326:56;1412:4;1404:6;1400:17;1392:25;;1472:4;1466;1462:15;1454:23;;1173:311;;;:::o;1490:117::-;1599:1;1596;1589:12;1613:126;1650:7;1690:42;1683:5;1679:54;1668:65;;1613:126;;;:::o;1745:96::-;1782:7;1811:24;1829:5;1811:24;:::i;:::-;1800:35;;1745:96;;;:::o;1847:122::-;1920:24;1938:5;1920:24;:::i;:::-;1913:5;1910:35;1900:63;;1959:1;1956;1949:12;1900:63;1847:122;:::o;1975:139::-;2021:5;2059:6;2046:20;2037:29;;2075:33;2102:5;2075:33;:::i;:::-;1975:139;;;;:::o;2137:710::-;2233:5;2258:81;2274:64;2331:6;2274:64;:::i;:::-;2258:81;:::i;:::-;2249:90;;2359:5;2388:6;2381:5;2374:21;2422:4;2415:5;2411:16;2404:23;;2475:4;2467:6;2463:17;2455:6;2451:30;2504:3;2496:6;2493:15;2490:122;;;2523:79;;:::i;:::-;2490:122;2638:6;2621:220;2655:6;2650:3;2647:15;2621:220;;;2730:3;2759:37;2792:3;2780:10;2759:37;:::i;:::-;2754:3;2747:50;2826:4;2821:3;2817:14;2810:21;;2697:144;2681:4;2676:3;2672:14;2665:21;;2621:220;;;2625:21;2239:608;;2137:710;;;;;:::o;2870:370::-;2941:5;2990:3;2983:4;2975:6;2971:17;2967:27;2957:122;;2998:79;;:::i;:::-;2957:122;3115:6;3102:20;3140:94;3230:3;3222:6;3215:4;3207:6;3203:17;3140:94;:::i;:::-;3131:103;;2947:293;2870:370;;;;:::o;3246:90::-;3280:7;3323:5;3316:13;3309:21;3298:32;;3246:90;;;:::o;3342:116::-;3412:21;3427:5;3412:21;:::i;:::-;3405:5;3402:32;3392:60;;3448:1;3445;3438:12;3392:60;3342:116;:::o;3464:133::-;3507:5;3545:6;3532:20;3523:29;;3561:30;3585:5;3561:30;:::i;:::-;3464:133;;;;:::o;3603:678::-;3693:6;3701;3750:2;3738:9;3729:7;3725:23;3721:32;3718:119;;;3756:79;;:::i;:::-;3718:119;3904:1;3893:9;3889:17;3876:31;3934:18;3926:6;3923:30;3920:117;;;3956:79;;:::i;:::-;3920:117;4061:78;4131:7;4122:6;4111:9;4107:22;4061:78;:::i;:::-;4051:88;;3847:302;4188:2;4214:50;4256:7;4247:6;4236:9;4232:22;4214:50;:::i;:::-;4204:60;;4159:115;3603:678;;;;;:::o;4287:99::-;4339:6;4373:5;4367:12;4357:22;;4287:99;;;:::o;4392:169::-;4476:11;4510:6;4505:3;4498:19;4550:4;4545:3;4541:14;4526:29;;4392:169;;;;:::o;4567:246::-;4648:1;4658:113;4672:6;4669:1;4666:13;4658:113;;;4757:1;4752:3;4748:11;4742:18;4738:1;4733:3;4729:11;4722:39;4694:2;4691:1;4687:10;4682:15;;4658:113;;;4805:1;4796:6;4791:3;4787:16;4780:27;4629:184;4567:246;;;:::o;4819:377::-;4907:3;4935:39;4968:5;4935:39;:::i;:::-;4990:71;5054:6;5049:3;4990:71;:::i;:::-;4983:78;;5070:65;5128:6;5123:3;5116:4;5109:5;5105:16;5070:65;:::i;:::-;5160:29;5182:6;5160:29;:::i;:::-;5155:3;5151:39;5144:46;;4911:285;4819:377;;;;:::o;5202:313::-;5315:4;5353:2;5342:9;5338:18;5330:26;;5402:9;5396:4;5392:20;5388:1;5377:9;5373:17;5366:47;5430:78;5503:4;5494:6;5430:78;:::i;:::-;5422:86;;5202:313;;;;:::o;5521:77::-;5558:7;5587:5;5576:16;;5521:77;;;:::o;5604:122::-;5677:24;5695:5;5677:24;:::i;:::-;5670:5;5667:35;5657:63;;5716:1;5713;5706:12;5657:63;5604:122;:::o;5732:139::-;5778:5;5816:6;5803:20;5794:29;;5832:33;5859:5;5832:33;:::i;:::-;5732:139;;;;:::o;5877:474::-;5945:6;5953;6002:2;5990:9;5981:7;5977:23;5973:32;5970:119;;;6008:79;;:::i;:::-;5970:119;6128:1;6153:53;6198:7;6189:6;6178:9;6174:22;6153:53;:::i;:::-;6143:63;;6099:117;6255:2;6281:53;6326:7;6317:6;6306:9;6302:22;6281:53;:::i;:::-;6271:63;;6226:118;5877:474;;;;;:::o;6357:109::-;6438:21;6453:5;6438:21;:::i;:::-;6433:3;6426:34;6357:109;;:::o;6472:210::-;6559:4;6597:2;6586:9;6582:18;6574:26;;6610:65;6672:1;6661:9;6657:17;6648:6;6610:65;:::i;:::-;6472:210;;;;:::o;6688:60::-;6716:3;6737:5;6730:12;;6688:60;;;:::o;6754:142::-;6804:9;6837:53;6855:34;6864:24;6882:5;6864:24;:::i;:::-;6855:34;:::i;:::-;6837:53;:::i;:::-;6824:66;;6754:142;;;:::o;6902:126::-;6952:9;6985:37;7016:5;6985:37;:::i;:::-;6972:50;;6902:126;;;:::o;7034:153::-;7111:9;7144:37;7175:5;7144:37;:::i;:::-;7131:50;;7034:153;;;:::o;7193:185::-;7307:64;7365:5;7307:64;:::i;:::-;7302:3;7295:77;7193:185;;:::o;7384:276::-;7504:4;7542:2;7531:9;7527:18;7519:26;;7555:98;7650:1;7639:9;7635:17;7626:6;7555:98;:::i;:::-;7384:276;;;;:::o;7666:118::-;7753:24;7771:5;7753:24;:::i;:::-;7748:3;7741:37;7666:118;;:::o;7790:222::-;7883:4;7921:2;7910:9;7906:18;7898:26;;7934:71;8002:1;7991:9;7987:17;7978:6;7934:71;:::i;:::-;7790:222;;;;:::o;8018:619::-;8095:6;8103;8111;8160:2;8148:9;8139:7;8135:23;8131:32;8128:119;;;8166:79;;:::i;:::-;8128:119;8286:1;8311:53;8356:7;8347:6;8336:9;8332:22;8311:53;:::i;:::-;8301:63;;8257:117;8413:2;8439:53;8484:7;8475:6;8464:9;8460:22;8439:53;:::i;:::-;8429:63;;8384:118;8541:2;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8512:118;8018:619;;;;;:::o;8643:118::-;8730:24;8748:5;8730:24;:::i;:::-;8725:3;8718:37;8643:118;;:::o;8767:222::-;8860:4;8898:2;8887:9;8883:18;8875:26;;8911:71;8979:1;8968:9;8964:17;8955:6;8911:71;:::i;:::-;8767:222;;;;:::o;8995:86::-;9030:7;9070:4;9063:5;9059:16;9048:27;;8995:86;;;:::o;9087:112::-;9170:22;9186:5;9170:22;:::i;:::-;9165:3;9158:35;9087:112;;:::o;9205:214::-;9294:4;9332:2;9321:9;9317:18;9309:26;;9345:67;9409:1;9398:9;9394:17;9385:6;9345:67;:::i;:::-;9205:214;;;;:::o;9425:329::-;9484:6;9533:2;9521:9;9512:7;9508:23;9504:32;9501:119;;;9539:79;;:::i;:::-;9501:119;9659:1;9684:53;9729:7;9720:6;9709:9;9705:22;9684:53;:::i;:::-;9674:63;;9630:117;9425:329;;;;:::o;9760:117::-;9869:1;9866;9859:12;9900:568;9973:8;9983:6;10033:3;10026:4;10018:6;10014:17;10010:27;10000:122;;10041:79;;:::i;:::-;10000:122;10154:6;10141:20;10131:30;;10184:18;10176:6;10173:30;10170:117;;;10206:79;;:::i;:::-;10170:117;10320:4;10312:6;10308:17;10296:29;;10374:3;10366:4;10358:6;10354:17;10344:8;10340:32;10337:41;10334:128;;;10381:79;;:::i;:::-;10334:128;9900:568;;;;;:::o;10474:698::-;10566:6;10574;10582;10631:2;10619:9;10610:7;10606:23;10602:32;10599:119;;;10637:79;;:::i;:::-;10599:119;10785:1;10774:9;10770:17;10757:31;10815:18;10807:6;10804:30;10801:117;;;10837:79;;:::i;:::-;10801:117;10950:80;11022:7;11013:6;11002:9;10998:22;10950:80;:::i;:::-;10932:98;;;;10728:312;11079:2;11105:50;11147:7;11138:6;11127:9;11123:22;11105:50;:::i;:::-;11095:60;;11050:115;10474:698;;;;;:::o;11178:474::-;11246:6;11254;11303:2;11291:9;11282:7;11278:23;11274:32;11271:119;;;11309:79;;:::i;:::-;11271:119;11429:1;11454:53;11499:7;11490:6;11479:9;11475:22;11454:53;:::i;:::-;11444:63;;11400:117;11556:2;11582:53;11627:7;11618:6;11607:9;11603:22;11582:53;:::i;:::-;11572:63;;11527:118;11178:474;;;;;:::o;11658:164::-;11798:16;11794:1;11786:6;11782:14;11775:40;11658:164;:::o;11828:366::-;11970:3;11991:67;12055:2;12050:3;11991:67;:::i;:::-;11984:74;;12067:93;12156:3;12067:93;:::i;:::-;12185:2;12180:3;12176:12;12169:19;;11828:366;;;:::o;12200:419::-;12366:4;12404:2;12393:9;12389:18;12381:26;;12453:9;12447:4;12443:20;12439:1;12428:9;12424:17;12417:47;12481:131;12607:4;12481:131;:::i;:::-;12473:139;;12200:419;;;:::o;12625:180::-;12673:77;12670:1;12663:88;12770:4;12767:1;12760:15;12794:4;12791:1;12784:15;12811:157;12951:9;12947:1;12939:6;12935:14;12928:33;12811:157;:::o;12974:365::-;13116:3;13137:66;13201:1;13196:3;13137:66;:::i;:::-;13130:73;;13212:93;13301:3;13212:93;:::i;:::-;13330:2;13325:3;13321:12;13314:19;;12974:365;;;:::o;13345:419::-;13511:4;13549:2;13538:9;13534:18;13526:26;;13598:9;13592:4;13588:20;13584:1;13573:9;13569:17;13562:47;13626:131;13752:4;13626:131;:::i;:::-;13618:139;;13345:419;;;:::o;13770:180::-;13818:77;13815:1;13808:88;13915:4;13912:1;13905:15;13939:4;13936:1;13929:15;13956:233;13995:3;14018:24;14036:5;14018:24;:::i;:::-;14009:33;;14064:66;14057:5;14054:77;14051:103;;14134:18;;:::i;:::-;14051:103;14181:1;14174:5;14170:13;14163:20;;13956:233;;;:::o;14195:180::-;14243:77;14240:1;14233:88;14340:4;14337:1;14330:15;14364:4;14361:1;14354:15;14381:320;14425:6;14462:1;14456:4;14452:12;14442:22;;14509:1;14503:4;14499:12;14530:18;14520:81;;14586:4;14578:6;14574:17;14564:27;;14520:81;14648:2;14640:6;14637:14;14617:18;14614:38;14611:84;;14667:18;;:::i;:::-;14611:84;14432:269;14381:320;;;:::o;14707:173::-;14847:25;14843:1;14835:6;14831:14;14824:49;14707:173;:::o;14886:366::-;15028:3;15049:67;15113:2;15108:3;15049:67;:::i;:::-;15042:74;;15125:93;15214:3;15125:93;:::i;:::-;15243:2;15238:3;15234:12;15227:19;;14886:366;;;:::o;15258:419::-;15424:4;15462:2;15451:9;15447:18;15439:26;;15511:9;15505:4;15501:20;15497:1;15486:9;15482:17;15475:47;15539:131;15665:4;15539:131;:::i;:::-;15531:139;;15258:419;;;:::o;15683:191::-;15723:3;15742:20;15760:1;15742:20;:::i;:::-;15737:25;;15776:20;15794:1;15776:20;:::i;:::-;15771:25;;15819:1;15816;15812:9;15805:16;;15840:3;15837:1;15834:10;15831:36;;;15847:18;;:::i;:::-;15831:36;15683:191;;;;:::o;15880:153::-;16020:5;16016:1;16008:6;16004:14;15997:29;15880:153;:::o;16039:365::-;16181:3;16202:66;16266:1;16261:3;16202:66;:::i;:::-;16195:73;;16277:93;16366:3;16277:93;:::i;:::-;16395:2;16390:3;16386:12;16379:19;;16039:365;;;:::o;16410:419::-;16576:4;16614:2;16603:9;16599:18;16591:26;;16663:9;16657:4;16653:20;16649:1;16638:9;16634:17;16627:47;16691:131;16817:4;16691:131;:::i;:::-;16683:139;;16410:419;;;:::o;16835:224::-;16975:34;16971:1;16963:6;16959:14;16952:58;17044:7;17039:2;17031:6;17027:15;17020:32;16835:224;:::o;17065:366::-;17207:3;17228:67;17292:2;17287:3;17228:67;:::i;:::-;17221:74;;17304:93;17393:3;17304:93;:::i;:::-;17422:2;17417:3;17413:12;17406:19;;17065:366;;;:::o;17437:419::-;17603:4;17641:2;17630:9;17626:18;17618:26;;17690:9;17684:4;17680:20;17676:1;17665:9;17661:17;17654:47;17718:131;17844:4;17718:131;:::i;:::-;17710:139;;17437:419;;;:::o;17862:225::-;18002:34;17998:1;17990:6;17986:14;17979:58;18071:8;18066:2;18058:6;18054:15;18047:33;17862:225;:::o;18093:366::-;18235:3;18256:67;18320:2;18315:3;18256:67;:::i;:::-;18249:74;;18332:93;18421:3;18332:93;:::i;:::-;18450:2;18445:3;18441:12;18434:19;;18093:366;;;:::o;18465:419::-;18631:4;18669:2;18658:9;18654:18;18646:26;;18718:9;18712:4;18708:20;18704:1;18693:9;18689:17;18682:47;18746:131;18872:4;18746:131;:::i;:::-;18738:139;;18465:419;;;:::o;18890:223::-;19030:34;19026:1;19018:6;19014:14;19007:58;19099:6;19094:2;19086:6;19082:15;19075:31;18890:223;:::o;19119:366::-;19261:3;19282:67;19346:2;19341:3;19282:67;:::i;:::-;19275:74;;19358:93;19447:3;19358:93;:::i;:::-;19476:2;19471:3;19467:12;19460:19;;19119:366;;;:::o;19491:419::-;19657:4;19695:2;19684:9;19680:18;19672:26;;19744:9;19738:4;19734:20;19730:1;19719:9;19715:17;19708:47;19772:131;19898:4;19772:131;:::i;:::-;19764:139;;19491:419;;;:::o;19916:221::-;20056:34;20052:1;20044:6;20040:14;20033:58;20125:4;20120:2;20112:6;20108:15;20101:29;19916:221;:::o;20143:366::-;20285:3;20306:67;20370:2;20365:3;20306:67;:::i;:::-;20299:74;;20382:93;20471:3;20382:93;:::i;:::-;20500:2;20495:3;20491:12;20484:19;;20143:366;;;:::o;20515:419::-;20681:4;20719:2;20708:9;20704:18;20696:26;;20768:9;20762:4;20758:20;20754:1;20743:9;20739:17;20732:47;20796:131;20922:4;20796:131;:::i;:::-;20788:139;;20515:419;;;:::o;20940:182::-;21080:34;21076:1;21068:6;21064:14;21057:58;20940:182;:::o;21128:366::-;21270:3;21291:67;21355:2;21350:3;21291:67;:::i;:::-;21284:74;;21367:93;21456:3;21367:93;:::i;:::-;21485:2;21480:3;21476:12;21469:19;;21128:366;;;:::o;21500:419::-;21666:4;21704:2;21693:9;21689:18;21681:26;;21753:9;21747:4;21743:20;21739:1;21728:9;21724:17;21717:47;21781:131;21907:4;21781:131;:::i;:::-;21773:139;;21500:419;;;:::o;21925:179::-;22065:31;22061:1;22053:6;22049:14;22042:55;21925:179;:::o;22110:366::-;22252:3;22273:67;22337:2;22332:3;22273:67;:::i;:::-;22266:74;;22349:93;22438:3;22349:93;:::i;:::-;22467:2;22462:3;22458:12;22451:19;;22110:366;;;:::o;22482:419::-;22648:4;22686:2;22675:9;22671:18;22663:26;;22735:9;22729:4;22725:20;22721:1;22710:9;22706:17;22699:47;22763:131;22889:4;22763:131;:::i;:::-;22755:139;;22482:419;;;:::o;22907:224::-;23047:34;23043:1;23035:6;23031:14;23024:58;23116:7;23111:2;23103:6;23099:15;23092:32;22907:224;:::o;23137:366::-;23279:3;23300:67;23364:2;23359:3;23300:67;:::i;:::-;23293:74;;23376:93;23465:3;23376:93;:::i;:::-;23494:2;23489:3;23485:12;23478:19;;23137:366;;;:::o;23509:419::-;23675:4;23713:2;23702:9;23698:18;23690:26;;23762:9;23756:4;23752:20;23748:1;23737:9;23733:17;23726:47;23790:131;23916:4;23790:131;:::i;:::-;23782:139;;23509:419;;;:::o;23934:222::-;24074:34;24070:1;24062:6;24058:14;24051:58;24143:5;24138:2;24130:6;24126:15;24119:30;23934:222;:::o;24162:366::-;24304:3;24325:67;24389:2;24384:3;24325:67;:::i;:::-;24318:74;;24401:93;24490:3;24401:93;:::i;:::-;24519:2;24514:3;24510:12;24503:19;;24162:366;;;:::o;24534:419::-;24700:4;24738:2;24727:9;24723:18;24715:26;;24787:9;24781:4;24777:20;24773:1;24762:9;24758:17;24751:47;24815:131;24941:4;24815:131;:::i;:::-;24807:139;;24534:419;;;:::o;24959:169::-;25099:21;25095:1;25087:6;25083:14;25076:45;24959:169;:::o;25134:366::-;25276:3;25297:67;25361:2;25356:3;25297:67;:::i;:::-;25290:74;;25373:93;25462:3;25373:93;:::i;:::-;25491:2;25486:3;25482:12;25475:19;;25134:366;;;:::o;25506:419::-;25672:4;25710:2;25699:9;25695:18;25687:26;;25759:9;25753:4;25749:20;25745:1;25734:9;25730:17;25723:47;25787:131;25913:4;25787:131;:::i;:::-;25779:139;;25506:419;;;:::o;25931:160::-;26071:12;26067:1;26059:6;26055:14;26048:36;25931:160;:::o;26097:366::-;26239:3;26260:67;26324:2;26319:3;26260:67;:::i;:::-;26253:74;;26336:93;26425:3;26336:93;:::i;:::-;26454:2;26449:3;26445:12;26438:19;;26097:366;;;:::o;26469:419::-;26635:4;26673:2;26662:9;26658:18;26650:26;;26722:9;26716:4;26712:20;26708:1;26697:9;26693:17;26686:47;26750:131;26876:4;26750:131;:::i;:::-;26742:139;;26469:419;;;:::o;26894:174::-;27034:26;27030:1;27022:6;27018:14;27011:50;26894:174;:::o;27074:366::-;27216:3;27237:67;27301:2;27296:3;27237:67;:::i;:::-;27230:74;;27313:93;27402:3;27313:93;:::i;:::-;27431:2;27426:3;27422:12;27415:19;;27074:366;;;:::o;27446:419::-;27612:4;27650:2;27639:9;27635:18;27627:26;;27699:9;27693:4;27689:20;27685:1;27674:9;27670:17;27663:47;27727:131;27853:4;27727:131;:::i;:::-;27719:139;;27446:419;;;:::o;27871:410::-;27911:7;27934:20;27952:1;27934:20;:::i;:::-;27929:25;;27968:20;27986:1;27968:20;:::i;:::-;27963:25;;28023:1;28020;28016:9;28045:30;28063:11;28045:30;:::i;:::-;28034:41;;28224:1;28215:7;28211:15;28208:1;28205:22;28185:1;28178:9;28158:83;28135:139;;28254:18;;:::i;:::-;28135:139;27919:362;27871:410;;;;:::o;28287:180::-;28335:77;28332:1;28325:88;28432:4;28429:1;28422:15;28456:4;28453:1;28446:15;28473:185;28513:1;28530:20;28548:1;28530:20;:::i;:::-;28525:25;;28564:20;28582:1;28564:20;:::i;:::-;28559:25;;28603:1;28593:35;;28608:18;;:::i;:::-;28593:35;28650:1;28647;28643:9;28638:14;;28473:185;;;;:::o;28664:194::-;28704:4;28724:20;28742:1;28724:20;:::i;:::-;28719:25;;28758:20;28776:1;28758:20;:::i;:::-;28753:25;;28802:1;28799;28795:9;28787:17;;28826:1;28820:4;28817:11;28814:37;;;28831:18;;:::i;:::-;28814:37;28664:194;;;;:::o;28864:225::-;29004:34;29000:1;28992:6;28988:14;28981:58;29073:8;29068:2;29060:6;29056:15;29049:33;28864:225;:::o;29095:366::-;29237:3;29258:67;29322:2;29317:3;29258:67;:::i;:::-;29251:74;;29334:93;29423:3;29334:93;:::i;:::-;29452:2;29447:3;29443:12;29436:19;;29095:366;;;:::o;29467:419::-;29633:4;29671:2;29660:9;29656:18;29648:26;;29720:9;29714:4;29710:20;29706:1;29695:9;29691:17;29684:47;29748:131;29874:4;29748:131;:::i;:::-;29740:139;;29467:419;;;:::o;29892:442::-;30041:4;30079:2;30068:9;30064:18;30056:26;;30092:71;30160:1;30149:9;30145:17;30136:6;30092:71;:::i;:::-;30173:72;30241:2;30230:9;30226:18;30217:6;30173:72;:::i;:::-;30255;30323:2;30312:9;30308:18;30299:6;30255:72;:::i;:::-;29892:442;;;;;;:::o;30340:147::-;30441:11;30478:3;30463:18;;30340:147;;;;:::o;30493:114::-;;:::o;30613:398::-;30772:3;30793:83;30874:1;30869:3;30793:83;:::i;:::-;30786:90;;30885:93;30974:3;30885:93;:::i;:::-;31003:1;30998:3;30994:11;30987:18;;30613:398;;;:::o;31017:379::-;31201:3;31223:147;31366:3;31223:147;:::i;:::-;31216:154;;31387:3;31380:10;;31017:379;;;:::o;31402:143::-;31459:5;31490:6;31484:13;31475:22;;31506:33;31533:5;31506:33;:::i;:::-;31402:143;;;;:::o;31551:351::-;31621:6;31670:2;31658:9;31649:7;31645:23;31641:32;31638:119;;;31676:79;;:::i;:::-;31638:119;31796:1;31821:64;31877:7;31868:6;31857:9;31853:22;31821:64;:::i;:::-;31811:74;;31767:128;31551:351;;;;:::o;31908:85::-;31953:7;31982:5;31971:16;;31908:85;;;:::o;31999:158::-;32057:9;32090:61;32108:42;32117:32;32143:5;32117:32;:::i;:::-;32108:42;:::i;:::-;32090:61;:::i;:::-;32077:74;;31999:158;;;:::o;32163:147::-;32258:45;32297:5;32258:45;:::i;:::-;32253:3;32246:58;32163:147;;:::o;32316:114::-;32383:6;32417:5;32411:12;32401:22;;32316:114;;;:::o;32436:184::-;32535:11;32569:6;32564:3;32557:19;32609:4;32604:3;32600:14;32585:29;;32436:184;;;;:::o;32626:132::-;32693:4;32716:3;32708:11;;32746:4;32741:3;32737:14;32729:22;;32626:132;;;:::o;32764:108::-;32841:24;32859:5;32841:24;:::i;:::-;32836:3;32829:37;32764:108;;:::o;32878:179::-;32947:10;32968:46;33010:3;33002:6;32968:46;:::i;:::-;33046:4;33041:3;33037:14;33023:28;;32878:179;;;;:::o;33063:113::-;33133:4;33165;33160:3;33156:14;33148:22;;33063:113;;;:::o;33212:732::-;33331:3;33360:54;33408:5;33360:54;:::i;:::-;33430:86;33509:6;33504:3;33430:86;:::i;:::-;33423:93;;33540:56;33590:5;33540:56;:::i;:::-;33619:7;33650:1;33635:284;33660:6;33657:1;33654:13;33635:284;;;33736:6;33730:13;33763:63;33822:3;33807:13;33763:63;:::i;:::-;33756:70;;33849:60;33902:6;33849:60;:::i;:::-;33839:70;;33695:224;33682:1;33679;33675:9;33670:14;;33635:284;;;33639:14;33935:3;33928:10;;33336:608;;;33212:732;;;;:::o;33950:831::-;34213:4;34251:3;34240:9;34236:19;34228:27;;34265:71;34333:1;34322:9;34318:17;34309:6;34265:71;:::i;:::-;34346:80;34422:2;34411:9;34407:18;34398:6;34346:80;:::i;:::-;34473:9;34467:4;34463:20;34458:2;34447:9;34443:18;34436:48;34501:108;34604:4;34595:6;34501:108;:::i;:::-;34493:116;;34619:72;34687:2;34676:9;34672:18;34663:6;34619:72;:::i;:::-;34701:73;34769:3;34758:9;34754:19;34745:6;34701:73;:::i;:::-;33950:831;;;;;;;;:::o;34787:807::-;35036:4;35074:3;35063:9;35059:19;35051:27;;35088:71;35156:1;35145:9;35141:17;35132:6;35088:71;:::i;:::-;35169:72;35237:2;35226:9;35222:18;35213:6;35169:72;:::i;:::-;35251:80;35327:2;35316:9;35312:18;35303:6;35251:80;:::i;:::-;35341;35417:2;35406:9;35402:18;35393:6;35341:80;:::i;:::-;35431:73;35499:3;35488:9;35484:19;35475:6;35431:73;:::i;:::-;35514;35582:3;35571:9;35567:19;35558:6;35514:73;:::i;:::-;34787:807;;;;;;;;;:::o;35600:143::-;35657:5;35688:6;35682:13;35673:22;;35704:33;35731:5;35704:33;:::i;:::-;35600:143;;;;:::o;35749:663::-;35837:6;35845;35853;35902:2;35890:9;35881:7;35877:23;35873:32;35870:119;;;35908:79;;:::i;:::-;35870:119;36028:1;36053:64;36109:7;36100:6;36089:9;36085:22;36053:64;:::i;:::-;36043:74;;35999:128;36166:2;36192:64;36248:7;36239:6;36228:9;36224:22;36192:64;:::i;:::-;36182:74;;36137:129;36305:2;36331:64;36387:7;36378:6;36367:9;36363:22;36331:64;:::i;:::-;36321:74;;36276:129;35749:663;;;;;:::o

Swarm Source

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